/* =========================================================
   Mitra IT — simple, professional site
   Fonts: Inter (body) + Plus Jakarta Sans (headings)
   Palette: burgundy primary on a clean white/cream base
   ========================================================= */

:root {
    --burgundy: #7e1b2e;
    --burgundy-dark: #5c1322;
    --burgundy-soft: #faeff1;
    --gold: #c99868;
    --cream: #f8f5f0;
    --ink: #0f1115;
    --ink-2: #2a2d33;
    --muted: #6b6f76;
    --muted-light: rgba(255, 255, 255, 0.72);
    --border-soft: rgba(15, 17, 21, 0.08);
    --border-strong: rgba(15, 17, 21, 0.14);
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        sans-serif;
    color: var(--ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-title {
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1.2;
}

.text-muted-2 {
    color: var(--muted);
}
.text-muted-light {
    color: var(--muted-light);
}
.tracking {
    letter-spacing: 0.18em;
}

/* ---------- Buttons ---------- */
.btn-mitra-primary {
    background: var(--burgundy);
    color: #fff;
    border: 1px solid var(--burgundy);
    border-radius: 999px;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    transition: all 0.2s ease;
}
.btn-mitra-primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    color: #fff;
    transform: translateY(-1px);
}
.btn-mitra-outline {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
}
.btn-mitra-outline:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.btn-mitra-light {
    background: #fff;
    color: var(--burgundy);
    border: 1px solid #fff;
    border-radius: 999px;
    font-weight: 600;
    padding: 0.7rem 1.4rem;
}
.btn-mitra-light:hover {
    background: var(--cream);
    color: var(--burgundy-dark);
}

/* ---------- Eyebrow ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--burgundy);
    text-transform: uppercase;
}
.eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--burgundy);
    box-shadow: 0 0 0 4px rgba(126, 27, 46, 0.15);
}
.eyebrow--light {
    color: #fff;
}
.eyebrow--light .dot {
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

/* ---------- Top utility bar ---------- */
.top-bar {
    background: var(--cream);
    color: var(--ink-2);
    padding: 0.55rem 0;
    font-size: 0.83rem;
    border-bottom: 1px solid var(--border-soft);
}
.top-bar i {
    color: var(--burgundy);
}
.top-bar a {
    color: var(--ink-2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: all 0.2s ease;
}
.top-bar a:hover {
    background: var(--burgundy);
    color: #fff;
}
.top-bar a:hover i {
    color: #fff;
}
.top-bar-divider {
    width: 1px;
    height: 18px;
    background: var(--border-strong);
    display: inline-block;
}

/* ---------- Navigation ---------- */
.mitra-nav {
    background: #fff;
    border-bottom: 1px solid rgba(15, 17, 21, 0.06);
    padding: 0;
    transition:
        box-shadow 0.3s ease,
        background 0.3s ease;
}
.mitra-nav.is-scrolled {
    background: #fff;
    box-shadow: 0 18px 42px -34px rgba(15, 17, 21, 0.45);
}
.mitra-nav-shell {
    width: 100%;
    min-height: 88px;
    display: flex;
    align-items: center;
    background: #fff;
}
.mitra-brand {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    width: 260px;
    margin: 0;
    padding: 0 1.7rem;
    text-decoration: none;
    flex-shrink: 0;
}
.mitra-brand-logo {
    width: auto;
    height: 62px;
    max-width: 180px;
    object-fit: contain;
}
.mitra-nav-collapse {
    align-items: center;
    align-self: stretch;
    display: flex;
    justify-content: space-between;
}
.mitra-nav-links {
    align-self: stretch;
    align-items: center;
    gap: 0;
    height: 100%;
    margin: 0;
}
.mitra-nav .nav-link {
    min-width: 128px;
    height: 88px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #20232a;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0;
    padding: 0 1.5rem !important;
    border-radius: 0;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}
.mitra-nav .nav-link:hover,
.mitra-nav .nav-link.active {
    color: var(--burgundy);
    background: #f6f7fa;
    box-shadow: none;
}

.mitra-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.mitra-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-right: 1.25rem;
    padding: 0 1.35rem;
    border: 0;
    border-radius: 8px;
    background: var(--burgundy);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    white-space: nowrap;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}
.mitra-nav-cta:hover {
    background: var(--burgundy-dark);
    color: #fff;
    transform: translateY(-1px);
}
.mitra-toggler {
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    box-shadow: none !important;
    margin-left: auto;
}

/* ---------- HERO (dark) ---------- */
.hero-dark {
    position: relative;
    background:
        linear-gradient(90deg, rgba(5, 9, 17, 0.92) 0%, rgba(8, 12, 21, 0.78) 42%, rgba(8, 12, 21, 0.38) 100%),
        url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=2200&q=85");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    padding: 7rem 0 6.5rem;
    overflow: hidden;
}
.hero-dark-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 9, 17, 0.12), rgba(5, 9, 17, 0.32)),
        radial-gradient(
            800px 520px at 18% 42%,
            rgba(126, 27, 46, 0.34),
            transparent 60%
        ),
        radial-gradient(
            680px 420px at 96% 18%,
            rgba(201, 152, 104, 0.14),
            transparent 60%
        );
    pointer-events: none;
}
.hero-dark-content {
    max-width: 760px;
    padding: 1rem 0;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.84rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    text-transform: uppercase;
}
.hero-eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--gold);
}
.hero-dark-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #fff;
    font-size: clamp(3rem, 6vw, 5.75rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
    max-width: 720px;
}
.underline-accent {
    position: relative;
    white-space: nowrap;
    display: inline-block;
}
.underline-accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.05em;
    height: 2px;
    background: #fff;
    opacity: 0.85;
}
.hero-dark-sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.14rem;
    line-height: 1.75;
    max-width: 620px;
}
.hero-cta-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}
.btn-hero-light {
    background: #fff;
    color: var(--ink);
    border: 1px solid #fff;
    border-radius: 8px;
    font-weight: 800;
    padding: 0.95rem 1.55rem;
    transition: all 0.2s ease;
}
.btn-hero-light:hover {
    background: var(--burgundy);
    color: #fff;
    border-color: var(--burgundy);
    transform: translateY(-1px);
}
.btn-hero-outline {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 8px;
    font-weight: 800;
    padding: 0.95rem 1.55rem;
    transition: all 0.2s ease;
}
.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    transform: translateY(-1px);
}
.hero-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 3.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    max-width: 760px;
}
.hero-proof-item {
    width: 33.333%;
    min-width: 190px;
    padding: 1.2rem 1.35rem 1.2rem 0;
    color: rgba(255, 255, 255, 0.72);
}
.hero-proof-item + .hero-proof-item {
    padding-left: 1.35rem;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.hero-proof-item strong {
    display: block;
    color: #fff;
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    font-size: 1.35rem;
    line-height: 1.1;
    margin-bottom: 0.4rem;
}
.hero-proof-item span {
    display: block;
    font-size: 0.9rem;
    line-height: 1.45;
}

/* ---------- Trusted by ---------- */
.trusted-section {
    background: var(--cream);
    padding: 3rem 0;
}
.logo-marquee {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(
        90deg,
        transparent,
        #000 12%,
        #000 88%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent,
        #000 12%,
        #000 88%,
        transparent
    );
}
.logo-marquee-track {
    display: flex;
    align-items: center;
    gap: 4.5rem;
    animation: marquee 38s linear infinite;
    width: max-content;
}
.logo-marquee-track img {
    height: 30px;
    width: auto;
    opacity: 0.55;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}
.logo-marquee-track img:hover {
    opacity: 1;
}
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ---------- Sections ---------- */
.section {
    padding: 6rem 0;
}
.section--cream {
    background: var(--cream);
}
.section-title {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    line-height: 1.2;
    font-weight: 700;
}

/* ---------- Service cards ---------- */
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid var(--border-soft);
    height: 100%;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}
.service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(126, 27, 46, 0.25);
    box-shadow: 0 18px 40px -22px rgba(15, 17, 21, 0.18);
}
.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--burgundy-soft);
    color: var(--burgundy);
    font-size: 1.4rem;
}

/* ---------- Process ---------- */
.process-grid {
    margin-top: 0.5rem;
}
.process-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}
.process-card:hover {
    border-color: rgba(126, 27, 46, 0.25);
    box-shadow: 0 22px 48px -28px rgba(15, 17, 21, 0.22);
    transform: translateY(-3px);
}
.process-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--burgundy);
    border-radius: 12px;
    font-size: 1.35rem;
    margin-bottom: 1.4rem;
    box-shadow: 0 16px 34px -18px rgba(126, 27, 46, 0.75);
}
.process-card h3 {
    color: #11141a;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.8rem;
}
.process-card p {
    color: #6f7680;
    line-height: 1.65;
    margin-bottom: 1.35rem;
}
.process-card span {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #fbf1f3;
    color: var(--burgundy);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.45rem 0.75rem;
}

/* ---------- Stack tiles ---------- */
.stack-grid {
    row-gap: 1.5rem !important;
}
.stack-tile {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 1.25rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    height: 100%;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.stack-tile img {
    height: 34px;
    width: auto;
    transition: transform 0.2s ease;
}
.stack-tile span {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--ink-2);
}
.stack-tile:hover {
    transform: translateY(-3px);
    border-color: rgba(126, 27, 46, 0.25);
    box-shadow: 0 12px 24px -16px rgba(15, 17, 21, 0.18);
}
.stack-tile:hover img {
    transform: scale(1.08);
}

/* ---------- Why us ---------- */
.why-section {
    padding: 5.25rem 0 2.25rem;
    background: #fff;
}
.why-heading {
    margin-bottom: 4.1rem;
}
.why-heading .eyebrow {
    justify-content: center;
}
.why-heading .eyebrow {
    margin-bottom: 1.35rem;
}
.why-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--burgundy);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.35rem;
}
.why-eyebrow span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--burgundy);
}
.why-heading h2 {
    color: #080b10;
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    font-size: clamp(2.35rem, 4.2vw, 3.75rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
    font-weight: 800;
    margin: 0;
}
.why-grid {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
}
.why-card {
    background: #fff;
    border: 1px solid rgba(15, 17, 21, 0.09);
    border-radius: 16px;
    padding: 2.65rem 2.35rem;
    text-align: left;
    height: 100%;
    min-height: 220px;
    transition:
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.why-card:hover {
    border-color: rgba(126, 27, 46, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 24px 50px -38px rgba(15, 17, 21, 0.32);
}
.why-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fff1f3;
    margin-bottom: 1.45rem;
}
.why-icon i {
    font-size: 1.55rem;
    color: var(--burgundy);
}
.why-card h3 {
    color: #11141a;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin: 0 0 0.65rem;
}
.why-card p {
    color: #727781;
    font-size: 0.98rem;
    line-height: 1.55;
    margin: 0;
}

/* ---------- Contact ---------- */
.contact-section {
    padding-top: 4.75rem;
}
.contact-modern {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.contact-modern-copy h3 {
    color: #0d1017;
    font-size: clamp(2.2rem, 4.3vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
    font-weight: 800;
    max-width: 760px;
    margin: 0 0 1.25rem;
}
.contact-modern-copy p {
    color: #6d737d;
    font-size: clamp(1.02rem, 1.45vw, 1.2rem);
    line-height: 1.7;
    max-width: 650px;
    margin: 0;
}
.contact-modern-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}
.contact-modern-primary,
.contact-modern-secondary {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0 1.3rem;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}
.contact-modern-primary {
    color: #fff;
    background: var(--burgundy);
    border: 1px solid var(--burgundy);
}
.contact-modern-secondary {
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(15, 17, 21, 0.14);
}
.contact-modern-primary:hover,
.contact-modern-secondary:hover {
    transform: translateY(-2px);
}
.contact-modern-primary:hover {
    color: #fff;
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
}
.contact-modern-secondary:hover {
    color: var(--burgundy);
    border-color: rgba(126, 27, 46, 0.28);
}
.contact-modern-card {
    padding: 2rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(15, 17, 21, 0.08);
    box-shadow: 0 22px 54px -42px rgba(15, 17, 21, 0.35);
}
.contact-modern-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--burgundy);
    background: var(--burgundy-soft);
    font-size: 1.55rem;
    margin-bottom: 1.4rem;
}
.contact-modern-card h3 {
    color: #11141a;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    margin-bottom: 1.25rem;
}
.contact-modern-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.85rem;
}
.contact-modern-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: #5f6670;
    line-height: 1.45;
}
.contact-modern-card li i {
    color: var(--burgundy);
    font-size: 1.1rem;
    margin-top: 0.1rem;
}

/* ---------- FAQ ---------- */
.faq-section {
    padding: 4.75rem 0 6rem;
    background: #fbf8f4;
}
.faq-heading {
    margin-bottom: 3rem;
}
.faq-heading .eyebrow {
    justify-content: center;
    margin-bottom: 1.2rem;
}
.faq-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--burgundy);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.faq-kicker::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--burgundy);
}
.faq-title {
    color: #0d1017;
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 1.07;
    letter-spacing: -0.045em;
    font-weight: 800;
    margin-bottom: 1rem;
}
.faq-sub {
    color: #6d737d;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 460px;
    margin: 0;
}
.faq-accordion {
    display: grid;
    gap: 0.85rem;
}
.faq-item {
    overflow: hidden;
    border: 1px solid rgba(15, 17, 21, 0.08);
    border-radius: 16px !important;
    background: #fff;
}
.faq-item .accordion-button {
    background: #fff;
    color: #11141a;
    box-shadow: none;
    font-size: 1.03rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    padding: 1.2rem 1.35rem;
}
.faq-item .accordion-button:not(.collapsed) {
    color: var(--burgundy);
}
.faq-item .accordion-button:focus {
    box-shadow: none;
}
.faq-item .accordion-button::after {
    filter: grayscale(1);
}
.faq-item .accordion-body {
    color: #6d737d;
    line-height: 1.7;
    padding: 0 1.35rem 1.25rem;
}
.contact-meta {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.5rem;
}
.contact-meta li {
    color: rgba(255, 255, 255, 0.85);
}
.contact-meta i {
    color: #fff;
    margin-right: 0.6rem;
    opacity: 0.7;
}

.contact-cta-panel {
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}
.contact-cta-panel h3 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    line-height: 1.12;
    margin-bottom: 1rem;
}
.contact-cta-panel p {
    color: var(--muted-light);
    font-size: 1.08rem;
    margin-bottom: 1.75rem;
}

.contact-form .form-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
}
.contact-form .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    border-radius: 10px;
    padding: 0.7rem 0.9rem;
}
.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.45);
}
.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.form-success {
    display: none;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 10px;
}
.form-success.show {
    display: block;
}

/* ---------- About page ---------- */
.about-hero {
    position: relative;
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    padding: 6.5rem 0;
    background:
        linear-gradient(90deg, rgba(7, 10, 18, 0.94), rgba(18, 12, 18, 0.76)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=2200&q=85");
    background-position: center;
    background-size: cover;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(760px 460px at 14% 45%, rgba(126, 27, 46, 0.4), transparent 62%),
        radial-gradient(620px 420px at 92% 16%, rgba(201, 152, 104, 0.18), transparent 62%);
    pointer-events: none;
}
.about-hero-title {
    color: #fff;
    font-size: clamp(3rem, 6vw, 5.7rem);
    line-height: 1;
    letter-spacing: -0.055em;
    font-weight: 800;
    max-width: 900px;
}
.about-hero-sub {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.14rem;
    line-height: 1.75;
    max-width: 660px;
}
.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}
.about-breadcrumb-section {
    background: #fbf8f4;
    border-bottom: 1px solid var(--border-soft);
    padding: 1.5rem 0;
}
.about-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    background: #fff;
    color: var(--muted);
    padding: 0.55rem 0.8rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.about-breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}
.about-breadcrumb a:hover {
    color: var(--burgundy);
}
.about-breadcrumb i {
    color: var(--burgundy);
    font-size: 0.72rem;
}
.about-breadcrumb span {
    color: var(--burgundy);
}
.about-hero-panel {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    padding: 2rem;
    box-shadow: 0 30px 80px -50px rgba(0, 0, 0, 0.8);
}
.about-hero-panel > span {
    color: #f2b6c4;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.about-hero-panel h2 {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    line-height: 1.15;
    letter-spacing: -0.045em;
    margin: 1rem 0 1.6rem;
}
.about-hero-metrics {
    display: grid;
    gap: 0.85rem;
}
.about-hero-metrics div {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem;
}
.about-hero-metrics strong {
    display: block;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.2;
}
.about-hero-metrics small {
    color: rgba(255, 255, 255, 0.66);
}
.about-story-section {
    padding: 6rem 0;
    background:
        linear-gradient(180deg, #fff 0%, #fff 54%, #fbf8f4 54%, #fbf8f4 100%);
}
.about-story-shell {
    overflow: hidden;
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 30px 80px -58px rgba(15, 17, 21, 0.45);
}
.about-story-media {
    position: relative;
    height: 100%;
    min-height: 540px;
    background: var(--cream);
}
.about-story-media img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
    display: block;
}
.about-story-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 17, 21, 0.55));
}
.about-story-label {
    position: absolute;
    left: 1.35rem;
    right: 1.35rem;
    bottom: 1.35rem;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--burgundy);
    font-weight: 800;
    padding: 1rem;
}
.about-story-label i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    border-radius: 11px;
    background: var(--burgundy-soft);
}
.about-story-copy {
    height: 100%;
    padding: clamp(2rem, 5vw, 4.5rem);
}
.about-story-copy h2 {
    color: #11141a;
    font-size: clamp(2.25rem, 4.4vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
    font-weight: 800;
    margin: 1.15rem 0 1.3rem;
}
.about-story-copy p {
    color: #656b74;
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}
.about-story-points {
    display: grid;
    gap: 0.75rem;
    margin: 2rem 0;
}
.about-story-points div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #24272d;
    font-weight: 700;
}
.about-story-points i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    border-radius: 10px;
    color: var(--burgundy);
    background: var(--burgundy-soft);
}
.about-story-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--burgundy);
    font-weight: 800;
    text-decoration: none;
}
.about-story-link:hover {
    color: var(--burgundy-dark);
}
.about-story-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 440px;
    background: var(--cream);
    box-shadow: 0 30px 80px -52px rgba(15, 17, 21, 0.5);
}
.about-story-image {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    display: block;
}
.about-story-badge {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--burgundy);
    font-weight: 800;
    padding: 0.75rem 1rem;
    box-shadow: 0 18px 36px -28px rgba(15, 17, 21, 0.45);
}
.about-value-card {
    height: 100%;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    background: #fff;
    padding: 2rem;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}
.about-value-card:hover {
    border-color: rgba(126, 27, 46, 0.24);
    box-shadow: 0 22px 48px -28px rgba(15, 17, 21, 0.18);
    transform: translateY(-3px);
}
.about-value-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--burgundy-soft);
    color: var(--burgundy);
    font-size: 1.45rem;
    margin-bottom: 1.4rem;
}
.about-value-card h3 {
    color: #11141a;
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}
.about-value-card p {
    color: #6f7680;
    line-height: 1.65;
    margin: 0;
}
.about-values-section {
    padding: 6rem 0;
    background:
        radial-gradient(700px 300px at 8% 0%, rgba(126, 27, 46, 0.08), transparent 62%),
        var(--cream);
}
.about-values-intro {
    position: sticky;
    top: 110px;
}
.about-values-intro h2 {
    color: #11141a;
    font-size: clamp(2.25rem, 4.5vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
    font-weight: 800;
    margin: 1.15rem 0 1.2rem;
}
.about-values-intro p {
    color: #6f7680;
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 430px;
}
.about-values-list {
    border-top: 1px solid rgba(15, 17, 21, 0.1);
}
.about-value-row {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 1.2rem;
    padding: 1.55rem 0;
    border-bottom: 1px solid rgba(15, 17, 21, 0.1);
}
.about-value-row-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    background: var(--burgundy);
    font-size: 1.25rem;
    box-shadow: 0 16px 32px -22px rgba(126, 27, 46, 0.9);
}
.about-value-row h3 {
    color: #11141a;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.45rem;
}
.about-value-row p {
    color: #6f7680;
    line-height: 1.7;
    margin: 0;
}
.about-team-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    background: #fff;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}
.about-team-card:hover {
    border-color: rgba(126, 27, 46, 0.24);
    box-shadow: 0 22px 48px -28px rgba(15, 17, 21, 0.18);
    transform: translateY(-3px);
}
.about-team-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    background: var(--cream);
}
.about-team-body {
    padding: 1.35rem;
}
.about-team-body h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}
.about-team-role {
    color: var(--burgundy);
    font-size: 0.86rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}
.about-team-bio {
    color: #6f7680;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.about-team-socials {
    display: flex;
    gap: 0.5rem;
}
.about-team-socials a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--burgundy-soft);
    color: var(--burgundy);
    text-decoration: none;
    transition: all 0.2s ease;
}
.about-team-socials a:hover {
    background: var(--burgundy);
    color: #fff;
}
.about-empty {
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    background: #fff;
    color: var(--muted);
    padding: 2rem;
    text-align: center;
}
.about-cta {
    padding: 0 0 6rem;
    background: #fff;
}
.about-cta-inner {
    overflow: hidden;
    position: relative;
    border-radius: 24px;
    background:
        radial-gradient(760px 420px at 90% 100%, rgba(201, 152, 104, 0.15), transparent 64%),
        linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: #fff;
    padding: clamp(2.5rem, 6vw, 5rem);
}
.about-cta-inner h2 {
    color: #fff;
    font-size: clamp(2.3rem, 5vw, 4.7rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
    max-width: 980px;
    margin: 1.2rem 0 1.8rem;
}
.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

/* ---------- Services pages ---------- */
.services-page-hero {
    padding: 5.5rem 0 4.5rem;
    background:
        radial-gradient(780px 360px at 88% 10%, rgba(126, 27, 46, 0.08), transparent 62%),
        #fff;
}
.services-page-hero h1 {
    color: #101218;
    font-size: clamp(2.8rem, 6vw, 5.7rem);
    line-height: 1;
    letter-spacing: -0.06em;
    font-weight: 800;
    max-width: 980px;
    margin: 1.15rem 0 0;
}
.services-page-hero p {
    color: #6f7680;
    font-size: 1.08rem;
    line-height: 1.75;
    margin: 0;
}
.services-page-list {
    padding: 0 0 6rem;
    background: #fff;
}
.service-page-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    background:
        linear-gradient(180deg, #fff, #fff),
        var(--cream);
    padding: 2rem;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}
.service-page-card:hover {
    border-color: rgba(126, 27, 46, 0.24);
    box-shadow: 0 24px 54px -32px rgba(15, 17, 21, 0.22);
    transform: translateY(-3px);
}
.service-page-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--burgundy);
    background: var(--burgundy-soft);
    font-size: 1.45rem;
    margin-bottom: 1.5rem;
}
.service-page-card h2 {
    color: #11141a;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    margin-bottom: 0.85rem;
}
.service-page-card p {
    color: #6f7680;
    line-height: 1.7;
    margin-bottom: 1.35rem;
}
.service-page-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.service-page-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #fbf1f3;
    color: var(--burgundy);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.4rem 0.65rem;
}
.service-page-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--burgundy);
    font-weight: 800;
    text-decoration: none;
    margin-top: auto;
}
.service-page-link:hover {
    color: var(--burgundy-dark);
}
.services-method-section {
    padding: 6rem 0;
    background: #fbf8f4;
}
.services-method-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    background: #fff;
    padding: clamp(2rem, 5vw, 4rem);
}
.services-method-shell h2 {
    color: #11141a;
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.055em;
    font-weight: 800;
    margin: 1.15rem 0 1rem;
}
.services-method-shell > div:first-child p {
    color: #6f7680;
    line-height: 1.75;
    max-width: 430px;
}
.services-method-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.services-method-item {
    border-radius: 18px;
    background: #fbf8f4;
    padding: 1.35rem;
}
.services-method-item i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    background: var(--burgundy);
    font-size: 1.15rem;
    margin-bottom: 1rem;
}
.services-method-item h3 {
    color: #11141a;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.45rem;
}
.services-method-item p {
    color: #6f7680;
    line-height: 1.65;
    margin: 0;
}
.service-detail-hero {
    padding: 5.5rem 0;
    background:
        radial-gradient(780px 360px at 90% 10%, rgba(126, 27, 46, 0.08), transparent 62%),
        #fff;
}
.service-detail-hero h1 {
    color: #101218;
    font-size: clamp(2.75rem, 6vw, 5.7rem);
    line-height: 1;
    letter-spacing: -0.06em;
    font-weight: 800;
    margin: 1.15rem 0 1.2rem;
}
.service-detail-hero p {
    color: #6f7680;
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 680px;
}
.service-detail-tags {
    margin-top: 1.5rem;
}
.service-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}
.service-detail-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 430px;
    background: var(--cream);
    box-shadow: 0 30px 80px -55px rgba(15, 17, 21, 0.45);
}
.service-detail-image-card img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    display: block;
}
.service-detail-icon {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #fff;
    background: var(--burgundy);
    font-size: 1.65rem;
    box-shadow: 0 18px 36px -24px rgba(15, 17, 21, 0.55);
}
.service-detail-overview {
    padding: 6rem 0;
    background: #fbf8f4;
}
.service-detail-copy {
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    background: #fff;
    padding: clamp(2rem, 5vw, 4rem);
}
.service-detail-copy h2 {
    color: #11141a;
    font-size: clamp(2.1rem, 4.4vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.055em;
    font-weight: 800;
    margin: 1.15rem 0 1.3rem;
}
.service-detail-richtext {
    color: #606771;
    line-height: 1.8;
}
.service-detail-richtext :last-child {
    margin-bottom: 0;
}
.service-detail-sidebar {
    position: sticky;
    top: 110px;
    border-radius: 24px;
    background: #101218;
    color: #fff;
    padding: 2rem;
}
.service-detail-sidebar h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    margin-bottom: 1.35rem;
}
.service-detail-benefits {
    display: grid;
    gap: 0.95rem;
}
.service-detail-benefits > div {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem;
}
.service-detail-benefits i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    border-radius: 12px;
    color: #f2b6c4;
    background: rgba(255, 255, 255, 0.08);
}
.service-detail-benefits strong {
    display: block;
    color: #fff;
    font-size: 0.98rem;
    line-height: 1.25;
    margin-bottom: 0.25rem;
}
.service-detail-benefits small {
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.55;
}
.services-related-section {
    padding-top: 6rem;
    background: #fff;
}

/* ---------- Careers page ---------- */
.careers-page-hero {
    padding: 5.5rem 0 4.5rem;
    background:
        radial-gradient(780px 360px at 88% 10%, rgba(126, 27, 46, 0.08), transparent 62%),
        #fff;
}
.careers-page-hero h1 {
    color: #101218;
    font-size: clamp(2.8rem, 6vw, 5.7rem);
    line-height: 1;
    letter-spacing: -0.06em;
    font-weight: 800;
    max-width: 980px;
    margin: 1.15rem 0 0;
}
.careers-page-hero p {
    color: #6f7680;
    font-size: 1.08rem;
    line-height: 1.75;
    margin: 0;
}
.careers-culture-section {
    padding: 0 0 5rem;
    background: #fff;
}
.careers-culture-card {
    height: 100%;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    background: #fff;
    padding: 1.75rem;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}
.careers-culture-card:hover {
    border-color: rgba(126, 27, 46, 0.24);
    box-shadow: 0 22px 48px -30px rgba(15, 17, 21, 0.2);
    transform: translateY(-3px);
}
.careers-culture-card i {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--burgundy);
    background: var(--burgundy-soft);
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}
.careers-culture-card h2 {
    color: #11141a;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.65rem;
}
.careers-culture-card p {
    color: #6f7680;
    line-height: 1.65;
    margin: 0;
}
.careers-openings-section {
    padding: 6rem 0;
    background: #fbf8f4;
}
.careers-openings-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 2rem;
}
.careers-openings-heading h2 {
    color: #11141a;
    font-size: clamp(2.2rem, 4.4vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
    font-weight: 800;
    margin: 1.15rem 0 0;
}
.careers-openings-heading p {
    color: #6f7680;
    line-height: 1.75;
    max-width: 420px;
    margin: 0;
}
.careers-list {
    display: grid;
    gap: 1rem;
}
.career-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    background: #fff;
    padding: 1.35rem;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}
.career-row:hover {
    border-color: rgba(126, 27, 46, 0.24);
    box-shadow: 0 22px 48px -32px rgba(15, 17, 21, 0.2);
    transform: translateY(-2px);
}
.career-row-main {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 1.15rem;
    min-width: 0;
}
.career-row-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #fff;
    background: var(--burgundy);
    font-size: 1.25rem;
}
.career-row-topline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
.career-row h3 {
    color: #11141a;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    margin: 0;
}
.career-status {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.6rem;
}
.career-status.is-open {
    color: var(--burgundy);
    background: var(--burgundy-soft);
}
.career-status.is-closed {
    color: #6f7680;
    background: #f1f1f1;
}
.career-row p {
    color: #6f7680;
    line-height: 1.65;
    margin: 0 0 0.9rem;
}
.career-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    color: #676e78;
    font-size: 0.9rem;
}
.career-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.career-meta i {
    color: var(--burgundy);
}
.career-row-link {
    min-width: max-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 10px;
    background: var(--burgundy);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    padding: 0.85rem 1rem;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}
.career-row-link:hover {
    background: var(--burgundy-dark);
    color: #fff;
    transform: translateY(-1px);
}
.careers-empty {
    border: 1px solid var(--border-soft);
    border-radius: 22px;
    background: #fff;
    text-align: center;
    padding: clamp(2rem, 5vw, 4rem);
}
.careers-empty-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: var(--burgundy);
    background: var(--burgundy-soft);
    font-size: 1.65rem;
    margin-bottom: 1.25rem;
}
.careers-empty h3 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    margin-bottom: 0.5rem;
}
.careers-empty p {
    color: #6f7680;
    max-width: 520px;
    margin: 0 auto 1.5rem;
}
.career-detail-hero {
    padding: 5.5rem 0 4.5rem;
    background:
        radial-gradient(780px 360px at 88% 10%, rgba(126, 27, 46, 0.08), transparent 62%),
        #fff;
}
.career-detail-hero h1 {
    color: #101218;
    font-size: clamp(2.75rem, 6vw, 5.7rem);
    line-height: 1;
    letter-spacing: -0.06em;
    font-weight: 800;
    margin: 1.15rem 0 1.15rem;
}
.career-detail-hero p {
    color: #6f7680;
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 760px;
    margin: 0;
}
.career-detail-summary-card {
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 24px 54px -38px rgba(15, 17, 21, 0.22);
}
.career-detail-summary-meta {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.25rem;
}
.career-detail-summary-meta div {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #454b54;
    font-weight: 700;
}
.career-detail-summary-meta i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--burgundy);
    background: var(--burgundy-soft);
}
.career-detail-section {
    padding: 6rem 0;
    background: #fbf8f4;
}
.career-detail-content {
    display: grid;
    gap: 1rem;
}
.career-detail-block {
    border: 1px solid var(--border-soft);
    border-radius: 22px;
    background: #fff;
    padding: clamp(1.75rem, 4vw, 3rem);
}
.career-detail-block h2 {
    color: #11141a;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
    font-weight: 800;
    margin-bottom: 1rem;
}
.career-detail-richtext {
    color: #606771;
    line-height: 1.8;
}
.career-detail-richtext :last-child {
    margin-bottom: 0;
}
.career-detail-richtext ul,
.career-detail-richtext ol {
    padding-left: 1.2rem;
    margin-bottom: 0;
}
.career-detail-richtext li + li {
    margin-top: 0.45rem;
}
.career-apply-card {
    position: sticky;
    top: 110px;
    border-radius: 24px;
    background: #101218;
    color: #fff;
    padding: 2rem;
}
.career-apply-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #f2b6c4;
    background: rgba(255, 255, 255, 0.08);
    font-size: 1.45rem;
    margin-bottom: 1.35rem;
}
.career-apply-card h2 {
    color: #fff;
    font-size: 1.65rem;
    line-height: 1.15;
    letter-spacing: -0.04em;
    font-weight: 800;
    margin-bottom: 0.85rem;
}
.career-apply-card p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.career-apply-meta {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.career-apply-meta div {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.9rem 1rem;
}
.career-apply-meta span {
    display: block;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
.career-apply-meta strong {
    color: #fff;
    font-size: 0.98rem;
}
.career-apply-actions {
    display: grid;
    gap: 0.7rem;
}
.career-apply-actions .btn-mitra-outline {
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}
.career-apply-actions .btn-mitra-outline:hover {
    background: #fff;
    border-color: #fff;
    color: var(--ink);
}
.career-apply-section {
    padding: 6rem 0;
    background: #fbf8f4;
}
.career-form-card {
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    background: #fff;
    padding: clamp(1.75rem, 4vw, 3rem);
}
.career-form-heading {
    margin-bottom: 1.75rem;
}
.career-form-heading h2 {
    color: #11141a;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.055em;
    font-weight: 800;
    margin: 1.15rem 0 0.65rem;
}
.career-form-heading p {
    color: #6f7680;
    margin: 0;
}
.site-form-label {
    color: #20242b;
    font-size: 0.86rem;
    font-weight: 800;
    margin-bottom: 0.45rem;
}
.site-form-control {
    width: 100%;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    background: #fff;
    color: #101218;
    padding: 0.85rem 0.95rem;
    outline: 0;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.site-form-control::placeholder {
    color: #a0a5ad;
}
.site-form-control:focus {
    border-color: rgba(126, 27, 46, 0.45);
    box-shadow: 0 0 0 4px rgba(126, 27, 46, 0.08);
}
.site-form-control.is-invalid {
    border-color: #dc3545;
}
textarea.site-form-control {
    resize: vertical;
}
.career-form-submit {
    width: 100%;
    justify-content: center;
    min-height: 54px;
    border-radius: 10px;
}
.contact-page-hero {
    padding: 5.5rem 0 4.5rem;
    background:
        radial-gradient(780px 360px at 88% 10%, rgba(126, 27, 46, 0.08), transparent 62%),
        #fff;
}
.contact-page-hero h1 {
    color: #101218;
    font-size: clamp(2.8rem, 6vw, 5.7rem);
    line-height: 1;
    letter-spacing: -0.06em;
    font-weight: 800;
    max-width: 980px;
    margin: 1.15rem 0 0;
}
.contact-page-hero p {
    color: #6f7680;
    font-size: 1.08rem;
    line-height: 1.75;
    margin: 0;
}
.contact-page-section {
    padding: 0 0 6rem;
    background: #fff;
}
.contact-form-card {
    box-shadow: 0 24px 54px -40px rgba(15, 17, 21, 0.18);
}
.contact-form-help {
    display: block;
    color: #7a8089;
    font-size: 0.85rem;
    margin-top: 0.45rem;
}
.contact-info-card {
    position: sticky;
    top: 110px;
    border-radius: 24px;
    background: #101218;
    color: #fff;
    padding: 2rem;
}
.contact-info-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #f2b6c4;
    background: rgba(255, 255, 255, 0.08);
    font-size: 1.45rem;
    margin-bottom: 1.35rem;
}
.contact-info-card h2 {
    color: #fff;
    font-size: 1.65rem;
    line-height: 1.15;
    letter-spacing: -0.04em;
    font-weight: 800;
    margin-bottom: 0.85rem;
}
.contact-info-card p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.contact-info-list {
    display: grid;
    gap: 0.75rem;
}
.contact-info-list a,
.contact-info-list div {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 0.95rem;
    text-decoration: none;
}
.contact-info-list i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    border-radius: 11px;
    color: #f2b6c4;
    background: rgba(255, 255, 255, 0.08);
}
.contact-info-list small {
    display: block;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.15rem;
}
.contact-info-list strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.45;
    word-break: break-word;
}
.contact-faq-section {
    padding: 6rem 0;
    background: #fbf8f4;
}
.contact-faq-list {
    display: grid;
    gap: 0.85rem;
    max-width: 820px;
    margin: 0 auto;
}
.contact-faq-item {
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    background: #fff;
    padding: 0;
    overflow: hidden;
}
.contact-faq-item summary {
    cursor: pointer;
    color: #11141a;
    font-weight: 800;
    list-style: none;
    padding: 1.2rem 1.35rem;
}
.contact-faq-item summary::-webkit-details-marker {
    display: none;
}
.contact-faq-item summary::after {
    content: "+";
    float: right;
    color: var(--burgundy);
    font-size: 1.2rem;
    line-height: 1;
}
.contact-faq-item[open] summary {
    color: var(--burgundy);
}
.contact-faq-item[open] summary::after {
    content: "-";
}
.contact-faq-item p {
    color: #6f7680;
    line-height: 1.7;
    margin: 0;
    padding: 0 1.35rem 1.25rem;
}

/* ---------- Footer ---------- */
.site-footer {
    background:
        radial-gradient(800px 360px at 8% 0%, rgba(126, 27, 46, 0.24), transparent 62%),
        linear-gradient(180deg, #101218 0%, #090b10 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 4.5rem 0 2rem;
}
.footer-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #f2b6c4;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.footer-kicker::before {
    content: "";
    width: 30px;
    height: 2px;
    background: #f2b6c4;
}
.footer-top h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.55rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
    max-width: 850px;
    margin: 0;
}
.footer-cta {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0 1.25rem;
    border-radius: 999px;
    background: #fff;
    color: var(--burgundy);
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}
.footer-cta:hover {
    color: var(--burgundy-dark);
    background: #fff5f7;
    transform: translateY(-2px);
}
.footer-main {
    padding: 3rem 0;
}
.footer-logo {
    width: auto;
    height: 68px;
    max-width: 190px;
    object-fit: contain;
}
.footer-desc {
    color: rgba(255, 255, 255, 0.62);
    max-width: 360px;
    line-height: 1.7;
    margin: 1.1rem 0 0;
}
.footer-title {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.64);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.footer-links a:hover {
    color: #fff;
}
.footer-links li {
    font-size: 0.95rem;
}
.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.35rem;
}
.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}
.social-icon:hover {
    background: var(--burgundy);
    color: #fff;
    transform: translateY(-2px);
}
.footer-contact-list {
    display: grid;
    gap: 0.75rem;
}
.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    line-height: 1.5;
}
.footer-contact-row i {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #f2b6c4;
    background: rgba(255, 255, 255, 0.08);
}
.footer-contact-row:hover {
    color: #fff;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.9rem;
}
.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}
.site-footer a {
    color: inherit;
    text-decoration: none;
}
.site-footer a:hover {
    color: #fff;
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}
@keyframes pulseDot {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(126, 27, 46, 0.45);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(126, 27, 46, 0);
    }
}
@keyframes underlineGrow {
    from {
        transform: scaleX(0);
        transform-origin: left;
    }
    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}
@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}
.reveal[data-delay="1"] {
    transition-delay: 0.08s;
}
.reveal[data-delay="2"] {
    transition-delay: 0.16s;
}
.reveal[data-delay="3"] {
    transition-delay: 0.24s;
}
.reveal[data-delay="4"] {
    transition-delay: 0.32s;
}
.reveal[data-delay="5"] {
    transition-delay: 0.4s;
}
.reveal[data-delay="6"] {
    transition-delay: 0.48s;
}

/* Hero entrance */
.hero-eyebrow,
.hero-dark-title,
.hero-dark-sub,
.hero-cta-wrap,
.hero-proof-row {
    animation: fadeUp 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero-dark-title {
    animation-delay: 0.12s;
}
.hero-dark-sub {
    animation-delay: 0.24s;
}
.hero-cta-wrap {
    animation-delay: 0.36s;
}
.hero-proof-row {
    animation-delay: 0.48s;
}

/* Animated underline accent */
.underline-accent::after {
    transform-origin: left;
    animation: underlineGrow 1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.5s both;
}

/* Pulsing eyebrow dot */
.eyebrow .dot {
    animation: pulseDot 2s infinite;
}

/* Marquee pause on hover */
.logo-marquee:hover .logo-marquee-track {
    animation-play-state: paused;
}

/* Service / process / why card hover micro-interaction */
.service-card,
.process-card,
.why-card,
.stack-tile {
    position: relative;
    overflow: hidden;
}
.service-card::before,
.process-card::before,
.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(126, 27, 46, 0.06),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.service-card:hover::before,
.process-card:hover::before,
.why-card:hover::before {
    opacity: 1;
}
.service-icon,
.process-icon,
.why-icon i {
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}
.service-card:hover .service-icon,
.process-card:hover .process-icon,
.why-card:hover .why-icon i {
    transform: scale(1.08) rotate(-4deg);
    color: #fff;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .mitra-nav {
        padding: 0;
    }
    .mitra-nav-shell {
        min-height: 76px;
        flex-wrap: wrap;
    }
    .mitra-brand {
        width: auto;
        min-width: 0;
        padding: 0 1rem;
    }
    .mitra-brand-logo {
        height: 54px;
        max-width: 155px;
    }
    .mitra-nav .navbar-collapse {
        flex-basis: 100%;
        padding: 0;
        border-top: 1px solid var(--border-soft);
    }
    .mitra-nav-links {
        align-items: stretch;
        width: 100%;
        background: #fff;
    }
    .mitra-nav .nav-link {
        width: 100%;
        min-width: 0;
        height: 52px;
        justify-content: flex-start;
        padding: 0 1.25rem !important;
    }
    .mitra-nav-actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin: 0;
    }
    .mitra-nav-cta {
        width: 100%;
        min-height: 56px;
        margin: 0;
    }
    .hero {
        padding: 3.5rem 0 3rem;
    }
    .hero-dark {
        min-height: calc(100vh - 76px);
        padding: 4rem 0 4.5rem;
    }
    .about-hero {
        min-height: calc(100vh - 76px);
        padding: 4rem 0 4.5rem;
    }
    .hero-dark-title {
        font-size: clamp(2.35rem, 10vw, 3.25rem);
    }
    .about-hero-title {
        font-size: clamp(2.35rem, 10vw, 3.4rem);
    }
    .about-hero-panel {
        padding: 1.5rem;
    }
    .about-breadcrumb {
        font-size: 0.72rem;
        letter-spacing: 0.06em;
    }
    .about-hero-actions,
    .about-cta-actions {
        display: grid;
    }
    .about-story-section,
    .about-values-section {
        padding: 4rem 0;
    }
    .about-story-shell {
        border-radius: 18px;
    }
    .about-story-media,
    .about-story-media img {
        min-height: 320px;
    }
    .about-story-copy {
        padding: 1.75rem;
    }
    .about-story-points {
        margin: 1.5rem 0;
    }
    .about-values-intro {
        position: static;
    }
    .about-value-row {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
    .about-story-image-wrap,
    .about-story-image {
        min-height: 320px;
    }
    .about-cta {
        padding-bottom: 4rem;
    }
    .about-cta-inner {
        border-radius: 18px;
    }
    .services-page-hero,
    .service-detail-hero,
    .careers-page-hero {
        padding: 4rem 0 3.5rem;
    }
    .services-page-hero h1,
    .service-detail-hero h1,
    .careers-page-hero h1,
    .career-detail-hero h1 {
        font-size: clamp(2.35rem, 10vw, 3.4rem);
    }
    .services-page-list,
    .services-method-section,
    .service-detail-overview,
    .services-related-section,
    .careers-openings-section {
        padding: 4rem 0;
    }
    .career-detail-hero,
    .career-detail-section,
    .career-apply-section,
    .contact-page-hero,
    .contact-faq-section {
        padding: 4rem 0;
    }
    .contact-page-section {
        padding-bottom: 4rem;
    }
    .contact-page-hero h1 {
        font-size: clamp(2.35rem, 10vw, 3.4rem);
    }
    .careers-culture-section {
        padding-bottom: 4rem;
    }
    .careers-openings-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }
    .career-row {
        align-items: stretch;
        flex-direction: column;
    }
    .career-row-main {
        grid-template-columns: 1fr;
    }
    .career-row-link {
        width: 100%;
    }
    .career-detail-summary-card,
    .career-detail-block,
    .career-apply-card,
    .career-form-card,
    .contact-info-card {
        border-radius: 18px;
        padding: 1.5rem;
    }
    .career-apply-card,
    .contact-info-card {
        position: static;
    }
    .services-method-shell {
        grid-template-columns: 1fr;
        border-radius: 18px;
        padding: 1.5rem;
    }
    .services-method-grid {
        grid-template-columns: 1fr;
    }
    .service-detail-actions {
        display: grid;
    }
    .service-detail-image-card,
    .service-detail-image-card img {
        min-height: 320px;
    }
    .service-detail-copy,
    .service-detail-sidebar {
        border-radius: 18px;
        padding: 1.5rem;
    }
    .service-detail-sidebar {
        position: static;
    }
    .hero-proof-row {
        display: grid;
        margin-top: 2.25rem;
    }
    .hero-proof-item {
        width: 100%;
        padding: 1rem 0;
        border-left: 0;
    }
    .hero-proof-item + .hero-proof-item {
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }
    .hero-features {
        margin-top: 2.5rem !important;
        padding-top: 2rem;
    }
    .section {
        padding: 4.5rem 0;
    }
    .why-section {
        padding: 4rem 0 1.75rem;
    }
    .why-heading {
        margin-bottom: 2.5rem;
    }
    .why-card {
        min-height: auto;
        padding: 2rem;
    }
    .contact-section {
        padding-top: 3.5rem;
    }
    .contact-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .contact-modern-copy h3 {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    .contact-modern-primary,
    .contact-modern-secondary {
        width: 100%;
    }
    .contact-modern-card {
        padding: 1.5rem;
    }
    .faq-section {
        padding: 3.5rem 0 4rem;
    }
    .site-footer {
        padding: 3.5rem 0 1.75rem;
    }
    .footer-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.5rem;
        padding-bottom: 2.25rem;
    }
    .footer-top h2 {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    .footer-cta {
        width: 100%;
        max-width: 260px;
    }
    .footer-main {
        padding: 2.25rem 0;
    }
    .footer-logo {
        height: 58px;
    }
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
    .footer-bottom-links {
        gap: 1rem;
    }
}
