/* ==========================================================================
   Nexa Theme — Main Stylesheet
   ==========================================================================
   All colors, fonts, radii, and shadows are exposed as CSS variables.
   To rebrand: edit the values in :root and the whole site updates.
   ========================================================================== */

:root {
    /* Brand colors — overridable via WordPress Customizer / ACF */
    --c-primary: #0F4C5C;
    --c-primary-dark: #0A3540;
    --c-accent: #E36F4C;
    --c-accent-dark: #C8552F;
    --c-sage: #94A89A;
    --c-bg: #FBF8F3;
    --c-bg-alt: #F4EFE6;
    --c-bg-card: #FFFFFF;
    --c-text: #1A1F2E;
    --c-text-muted: #5C6473;
    --c-border: #E8E1D4;
    --c-success: #2F8F6E;

    /* Typography */
    --f-display: 'Fraunces', Georgia, serif;
    --f-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout */
    --container: 1200px;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-soft: 0 1px 2px rgba(15, 76, 92, 0.04), 0 8px 24px rgba(15, 76, 92, 0.06);
    --shadow-card: 0 1px 3px rgba(15, 76, 92, 0.06), 0 12px 40px rgba(15, 76, 92, 0.08);
}

/* ==========================================================================
   Base
   ========================================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--f-body);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 24px; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(251, 248, 243, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--c-border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
    width: 32px; height: 32px; border-radius: 9px;
    background: var(--c-primary);
    display: grid; place-items: center;
    color: white; font-family: var(--f-display); font-weight: 600; font-size: 18px;
    position: relative; overflow: hidden;
}
.logo-mark::after {
    content: ''; position: absolute; bottom: 0; right: 0;
    width: 12px; height: 12px; background: var(--c-accent);
    border-top-left-radius: 6px;
}
.logo-img { height: 32px; width: auto; display: block; }
.logo-text { font-family: var(--f-display); font-weight: 600; font-size: 22px; color: var(--c-text); letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 36px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--c-text); text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active, .nav-links .current-menu-item a { color: var(--c-primary); }
.nav-cta { display: flex; align-items: center; gap: 14px; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    font-family: var(--f-body); font-weight: 600; font-size: 15px;
    cursor: pointer; border: none;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    border-radius: 10px;
}
.btn-primary { background: var(--c-primary); color: #fff; padding: 11px 22px; }
.btn-primary:hover { background: var(--c-primary-dark); transform: translateY(-1px); }
.btn-accent { background: var(--c-accent); color: #fff; padding: 14px 26px; font-size: 16px; }
.btn-accent:hover { background: var(--c-accent-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(227, 111, 76, 0.3); }
.btn-ghost { color: var(--c-text); padding: 11px 18px; background: transparent; }
.btn-ghost:hover { background: var(--c-bg-alt); }
.btn-outline { border: 1.5px solid var(--c-border); background: transparent; color: var(--c-text); padding: 12px 22px; }
.btn-outline:hover { border-color: var(--c-primary); color: var(--c-primary); }
.btn-arrow::after { content: '→'; transition: transform 0.25s; }
.btn-arrow:hover::after { transform: translateX(3px); }
.btn-block { width: 100%; justify-content: center; padding: 16px 24px; font-size: 16px; }

/* ==========================================================================
   Common section styles
   ========================================================================== */
section { padding: 100px 0; position: relative; }
.section-eyebrow { font-size: 13px; font-weight: 600; color: var(--c-accent-dark); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.section-title { font-family: var(--f-display); font-size: clamp(34px, 4vw, 50px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 20px; max-width: 700px; }
.section-title em { font-style: italic; color: var(--c-primary); }
.section-lede { font-size: 18px; color: var(--c-text-muted); max-width: 600px; margin-bottom: 60px; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--c-primary); letter-spacing: 0.04em; text-transform: uppercase;
    background: rgba(15, 76, 92, 0.08); padding: 7px 14px; border-radius: 100px;
    margin-bottom: 24px;
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--c-accent); }

/* ==========================================================================
   HOMEPAGE — Hero
   ========================================================================== */
.hero { position: relative; padding: 80px 0 100px; overflow: hidden; }
.hero-bg-deco {
    position: absolute; top: -100px; right: -100px; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(148, 168, 154, 0.18) 0%, transparent 60%);
    pointer-events: none; z-index: 0;
}
.hero-bg-deco-2 {
    position: absolute; bottom: -200px; left: -150px; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(227, 111, 76, 0.10) 0%, transparent 60%);
    pointer-events: none; z-index: 0;
}
.hero-bg-deco-3 {
    position: absolute; top: 60px; right: -40px; width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(227, 111, 76, 0.16) 0%, transparent 65%);
    pointer-events: none; z-index: 0;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }

.hero h1 {
    font-family: var(--f-display);
    font-size: clamp(48px, 7vw, 86px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.032em;
    color: var(--c-text);
    margin-bottom: 26px;
    font-variation-settings: 'opsz' 144;
}
.hero h1 em {
    font-style: italic;
    font-weight: 400;
    font-variation-settings: 'opsz' 144, 'SOFT' 100;
    color: var(--c-primary);
}
.hero p.lede {
    font-size: 19px; color: var(--c-text-muted); max-width: 480px; margin-bottom: 36px; line-height: 1.55;
}
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.hero-meta { display: flex; gap: 48px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--c-border); }
.hero-meta-item { font-size: 14px; }
.hero-meta-item .num {
    font-family: var(--f-display); font-size: 42px; font-weight: 500;
    color: var(--c-primary); display: block; line-height: 1;
    margin-bottom: 6px; letter-spacing: -0.025em;
    font-variation-settings: 'opsz' 144;
}
.hero-meta-item .label { color: var(--c-text-muted); }

.live-chip {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--c-bg-card); border: 1px solid var(--c-border);
    padding: 9px 18px 9px 14px; border-radius: 100px;
    margin-top: 28px; font-size: 13.5px; color: var(--c-text-muted);
    box-shadow: 0 1px 2px rgba(15, 76, 92, 0.04);
}
.live-chip strong { color: var(--c-text); font-weight: 600; }
.live-chip .sep { color: var(--c-border); margin: 0 2px; }
.live-dot {
    width: 8px; height: 8px; background: var(--c-success); border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(47, 143, 110, 0.5);
    animation: live-pulse 2s infinite;
}
@keyframes live-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(47, 143, 110, 0.6); }
    50% { box-shadow: 0 0 0 7px rgba(47, 143, 110, 0); }
}

.hero-deco-stack {
    margin-top: 56px;
    display: flex; align-items: flex-end;
    pointer-events: none; user-select: none;
}
.hero-deco-pkg {
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(15, 76, 92, 0.10);
    position: relative;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-deco-pkg::after {
    content: ''; position: absolute;
    top: 32%; left: 0; right: 0; height: 7px;
    background: rgba(255, 255, 255, 0.18);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.hero-deco-pkg.p1 {
    width: 96px; height: 116px;
    background: linear-gradient(140deg, #C4D2C8, #94A89A);
    transform: rotate(-7deg);
    margin-right: -14px;
    z-index: 1;
}
.hero-deco-pkg.p2 {
    width: 84px; height: 100px;
    background: var(--c-bg-alt);
    border: 1px solid var(--c-border);
    transform: rotate(3deg) translateY(-10px);
    margin-right: -12px;
    z-index: 2;
}
.hero-deco-pkg.p2::after { background: rgba(15, 76, 92, 0.06); border-color: rgba(15, 76, 92, 0.04); }
.hero-deco-pkg.p3 {
    width: 76px; height: 88px;
    background: linear-gradient(140deg, #ED8767, var(--c-accent));
    transform: rotate(-3deg) translateY(2px);
    z-index: 3;
}
.hero:hover .hero-deco-pkg.p1 { transform: rotate(-9deg) translateY(-2px); }
.hero:hover .hero-deco-pkg.p2 { transform: rotate(4deg) translateY(-14px); }
.hero:hover .hero-deco-pkg.p3 { transform: rotate(-4deg) translateY(-2px); }

/* Homepage hero — order card visual */
.order-card {
    background: var(--c-bg-card);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-card);
    position: relative;
    border: 1px solid var(--c-border);
}
.order-card::before {
    content: ''; position: absolute; top: -16px; right: 28px;
    width: 64px; height: 64px;
    background: var(--c-accent); border-radius: 18px;
    transform: rotate(15deg);
    z-index: -1;
    opacity: 0.9;
}
.order-header { display: flex; justify-content: space-between; align-items: start; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px dashed var(--c-border); }
.order-id { font-size: 12px; color: var(--c-text-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.order-name { font-family: var(--f-display); font-weight: 600; font-size: 20px; margin-top: 4px; }
.order-tag { background: rgba(47, 143, 110, 0.12); color: var(--c-success); font-size: 12px; font-weight: 600; padding: 5px 10px; border-radius: 6px; }
.order-steps { display: flex; flex-direction: column; gap: 18px; }
.order-step { display: flex; gap: 14px; align-items: flex-start; position: relative; }
.order-step:not(:last-child)::after {
    content: ''; position: absolute; left: 13px; top: 28px; bottom: -16px; width: 2px;
    background: linear-gradient(to bottom, var(--c-border) 50%, transparent);
}
.order-step.done:not(:last-child)::after { background: var(--c-primary); }
.order-step-dot {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--c-bg-alt); border: 2px solid var(--c-border);
    display: grid; place-items: center; font-size: 11px; flex-shrink: 0;
    position: relative; z-index: 1;
}
.order-step.done .order-step-dot { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }
.order-step.active .order-step-dot { background: #fff; border-color: var(--c-accent); border-width: 2.5px; }
.order-step.active .order-step-dot::after { content: ''; width: 10px; height: 10px; background: var(--c-accent); border-radius: 50%; animation: live-pulse 2s infinite; }
.order-step-content { flex: 1; padding-bottom: 4px; }
.order-step-title { font-size: 14px; font-weight: 600; }
.order-step-time { font-size: 12px; color: var(--c-text-muted); margin-top: 2px; }
.order-step.active .order-step-title { color: var(--c-accent-dark); }
.order-footer { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--c-border); display: flex; justify-content: space-between; align-items: center; }
.order-footer-label { font-size: 12px; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.order-footer-value { font-family: var(--f-display); font-weight: 600; font-size: 18px; }

/* ==========================================================================
   HOMEPAGE — Trust bar
   ========================================================================== */
.trust { padding: 50px 0; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.trust-label { text-align: center; font-size: 13px; color: var(--c-text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 28px; }
.trust-logos { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 40px; opacity: 0.7; }
.trust-logo { font-family: var(--f-display); font-weight: 600; font-size: 22px; color: var(--c-text-muted); letter-spacing: -0.02em; }

/* ==========================================================================
   HOMEPAGE — How it works
   ========================================================================== */
.how { background: var(--c-bg-alt); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
    background: var(--c-bg-card);
    border-radius: var(--radius);
    padding: 36px 28px 32px;
    border: 1px solid var(--c-border);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.step-num {
    font-family: var(--f-display); font-style: italic; font-weight: 500;
    font-size: 64px; color: var(--c-accent); line-height: 1; opacity: 0.85;
    margin-bottom: 24px; letter-spacing: -0.04em;
}
.step-card h3 { font-family: var(--f-display); font-size: 24px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 12px; }
.step-card p { color: var(--c-text-muted); font-size: 15px; line-height: 1.6; }

/* ==========================================================================
   HOMEPAGE — Services
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
    background: var(--c-bg-card);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--c-border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.service-card:hover { border-color: var(--c-primary); }
.service-card:hover .service-icon { background: var(--c-primary); color: #fff; }
.service-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(15, 76, 92, 0.08); color: var(--c-primary);
    display: grid; place-items: center; margin-bottom: 22px;
    transition: all 0.3s;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-family: var(--f-display); font-size: 22px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
.service-card p { color: var(--c-text-muted); font-size: 14.5px; line-height: 1.6; }
.service-card.featured { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.service-card.featured h3 { color: #fff; }
.service-card.featured p { color: rgba(255,255,255,0.78); }
.service-card.featured .service-icon { background: rgba(255,255,255,0.12); color: var(--c-accent); }
.service-card.featured:hover .service-icon { background: var(--c-accent); color: #fff; }

/* ==========================================================================
   HOMEPAGE — Why us
   ========================================================================== */
.why { background: var(--c-bg-alt); }
.why-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.why-list { list-style: none; padding: 0; margin: 0; }
.why-list li {
    padding: 24px 0; border-bottom: 1px solid var(--c-border);
    display: grid; grid-template-columns: 44px 1fr; gap: 20px; align-items: start;
}
.why-list li:last-child { border-bottom: none; }
.why-check {
    width: 32px; height: 32px; border-radius: 9px; background: var(--c-primary); color: #fff;
    display: grid; place-items: center;
    margin-top: 2px;
}
.why-check svg { width: 16px; height: 16px; }
.why-list h4 { font-family: var(--f-display); font-size: 21px; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.01em; }
.why-list p { color: var(--c-text-muted); font-size: 15px; }
.why-visual {
    background: var(--c-bg-card); border-radius: var(--radius); padding: 40px;
    box-shadow: var(--shadow-soft); border: 1px solid var(--c-border);
    position: relative;
}
.why-visual-row { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px dashed var(--c-border); align-items: center; }
.why-visual-row:last-child { border-bottom: none; }
.why-visual-label { font-size: 14px; color: var(--c-text-muted); }
.why-visual-them { font-size: 15px; text-decoration: line-through; color: var(--c-text-muted); opacity: 0.6; }
.why-visual-us { font-size: 16px; font-weight: 600; color: var(--c-primary); }
.why-visual-title {
    font-family: var(--f-display); font-size: 20px; font-weight: 600;
    margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid var(--c-text);
    display: flex; justify-content: space-between; align-items: end;
}
.why-visual-title span:last-child { font-size: 13px; color: var(--c-accent-dark); font-family: var(--f-body); font-weight: 600; }
.why-visual-note { margin-top: 24px; padding: 16px; background: rgba(227, 111, 76, 0.08); border-radius: 10px; font-size: 13px; color: var(--c-text-muted); }

/* ==========================================================================
   HOMEPAGE — Testimonial
   ========================================================================== */
.testimonial-section { padding: 120px 0; }
.testimonial-card {
    max-width: 880px; margin: 0 auto;
    background: var(--c-primary); color: #fff;
    border-radius: 24px; padding: 64px 56px;
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '"'; position: absolute; top: -40px; left: 36px;
    font-family: var(--f-display); font-style: italic;
    font-size: 240px; color: var(--c-accent); line-height: 1; opacity: 0.6;
}
.testimonial-card::after {
    content: ''; position: absolute; bottom: -100px; right: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(227, 111, 76, 0.3) 0%, transparent 70%);
}
.testimonial-card blockquote {
    font-family: var(--f-display); font-size: 28px; line-height: 1.35; font-weight: 400; letter-spacing: -0.01em;
    margin-bottom: 32px; position: relative; z-index: 1;
}
.testimonial-card blockquote em { font-style: italic; color: var(--c-accent); }
.testimonial-author { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
.testimonial-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--c-accent); display: grid; place-items: center;
    font-family: var(--f-display); font-weight: 600; font-size: 18px;
}
.testimonial-author-info { font-size: 14px; }
.testimonial-author-info strong { display: block; font-size: 16px; font-weight: 600; }
.testimonial-author-info span { color: rgba(255,255,255,0.7); }

/* ==========================================================================
   HOMEPAGE — CTA
   ========================================================================== */
.cta-section { padding: 100px 0 120px; }
.cta-card {
    background: var(--c-bg-card); border: 1px solid var(--c-border);
    border-radius: 24px; padding: 72px 56px; text-align: center;
    position: relative; overflow: hidden;
}
.cta-card::before, .cta-card::after {
    content: ''; position: absolute;
    width: 320px; height: 320px; border-radius: 50%; opacity: 0.3;
    pointer-events: none;
}
.cta-card::before { top: -160px; left: -100px; background: radial-gradient(circle, var(--c-sage) 0%, transparent 70%); }
.cta-card::after { bottom: -160px; right: -100px; background: radial-gradient(circle, var(--c-accent) 0%, transparent 70%); }
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { font-family: var(--f-display); font-size: clamp(32px, 4vw, 48px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 18px; }
.cta-card h2 em { font-style: italic; color: var(--c-primary); }
.cta-card p { font-size: 18px; color: var(--c-text-muted); margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   CAREERS — page-specific
   ========================================================================== */
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--c-text-muted); margin-bottom: 28px; }
.breadcrumb a { color: var(--c-text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--c-primary); }
.breadcrumb .sep { color: var(--c-border); }
.breadcrumb .current { color: var(--c-text); }

.role-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--c-success); letter-spacing: 0.04em; text-transform: uppercase;
    background: rgba(47, 143, 110, 0.1); padding: 7px 14px; border-radius: 100px;
    margin-bottom: 24px;
}
.role-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--c-success); animation: live-pulse 2s infinite; }

.role-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 36px; margin-bottom: 36px; padding: 24px 0; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.role-fact { display: flex; align-items: start; gap: 12px; }
.role-fact-icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(15, 76, 92, 0.08); color: var(--c-primary); display: grid; place-items: center; flex-shrink: 0; }
.role-fact-icon svg { width: 18px; height: 18px; }
.role-fact-label { font-size: 12px; color: var(--c-text-muted); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 2px; }
.role-fact-value { font-family: var(--f-body); font-size: 15.5px; font-weight: 600; color: var(--c-text); }

/* Trust strip on careers hero */
.hero-trust-strip {
    display: inline-flex; align-items: center; gap: 14px;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: 100px;
    padding: 8px 20px 8px 10px;
    margin-bottom: 18px;
    box-shadow: 0 1px 2px rgba(15, 76, 92, 0.04), 0 6px 18px rgba(15, 76, 92, 0.04);
}
.avatar-stack { display: flex; align-items: center; }
.avatar-stack .av {
    width: 32px; height: 32px; border-radius: 50%;
    border: 2px solid var(--c-bg-card);
    margin-left: -10px;
    display: grid; place-items: center;
    font-family: var(--f-display); font-weight: 600;
    font-size: 12px; color: white;
    flex-shrink: 0;
}
.avatar-stack .av:first-child { margin-left: 0; }
.av.av1 { background: var(--c-primary); }
.av.av2 { background: var(--c-accent); }
.av.av3 { background: var(--c-sage); }
.av.av4 { background: var(--c-primary-dark); }
.hero-trust-text { font-size: 13.5px; color: var(--c-text-muted); line-height: 1.3; }
.hero-trust-text strong { color: var(--c-text); font-weight: 600; }

/* Earnings calculator */
.calc {
    background: var(--c-bg-card);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--c-border);
    position: relative;
}
.calc::before { content: ''; position: absolute; top: -16px; right: 28px; width: 64px; height: 64px; background: var(--c-accent); border-radius: 18px; transform: rotate(15deg); z-index: -1; opacity: 0.9; }
.calc-header { margin-bottom: 28px; }
.calc-eyebrow { font-size: 12px; color: var(--c-accent-dark); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.calc-title { font-family: var(--f-display); font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
.calc-output {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
    color: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}
.calc-output::before {
    content: ''; position: absolute; bottom: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(227, 111, 76, 0.4) 0%, transparent 70%);
}
.calc-output-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 6px; letter-spacing: 0.04em; text-transform: uppercase; position: relative; z-index: 1; }
.calc-output-value { font-family: var(--f-display); font-size: 52px; font-weight: 500; letter-spacing: -0.03em; line-height: 1; font-variation-settings: 'opsz' 144; position: relative; z-index: 1; transition: opacity 0.2s; }
.calc-output-value sup { font-size: 26px; font-weight: 500; vertical-align: super; opacity: 0.85; margin-right: 2px; }
.calc-output-suffix { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 6px; position: relative; z-index: 1; }
.calc-slider-wrap { margin-bottom: 18px; }
.calc-slider-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.calc-slider-label { font-size: 13px; color: var(--c-text-muted); }
.calc-slider-value { font-family: var(--f-display); font-weight: 600; font-size: 18px; color: var(--c-text); }
.calc-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; background: var(--c-bg-alt); border-radius: 3px; outline: none; cursor: pointer; }
.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 22px; height: 22px; background: var(--c-accent); border-radius: 50%; cursor: grab;
    border: 3px solid #fff; box-shadow: 0 2px 8px rgba(227, 111, 76, 0.4);
    transition: transform 0.15s;
}
.calc-slider::-webkit-slider-thumb:active { transform: scale(1.15); cursor: grabbing; }
.calc-slider::-moz-range-thumb { width: 22px; height: 22px; background: var(--c-accent); border-radius: 50%; cursor: grab; border: 3px solid #fff; box-shadow: 0 2px 8px rgba(227, 111, 76, 0.4); }
.calc-slider-bounds { display: flex; justify-content: space-between; font-size: 12px; color: var(--c-text-muted); margin-top: 6px; }
.calc-breakdown { padding-top: 20px; border-top: 1px dashed var(--c-border); }
.calc-breakdown-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.calc-breakdown-row .label { color: var(--c-text-muted); }
.calc-breakdown-row .value { font-weight: 600; color: var(--c-text); }
.calc-note { font-size: 12px; color: var(--c-text-muted); margin-top: 14px; padding: 12px 14px; background: var(--c-bg-alt); border-radius: 8px; line-height: 1.5; }

/* Duties cards */
.duties-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.duty-card { background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 28px; transition: all 0.3s; }
.duty-card:hover { border-color: var(--c-primary); transform: translateY(-2px); }
.duty-icon { width: 44px; height: 44px; border-radius: 11px; background: rgba(15, 76, 92, 0.08); color: var(--c-primary); display: grid; place-items: center; margin-bottom: 18px; }
.duty-icon svg { width: 20px; height: 20px; }
.duty-card h3 { font-family: var(--f-display); font-size: 21px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.duty-card p { font-size: 15px; color: var(--c-text-muted); line-height: 1.6; }

/* Day in life */
.day { background: var(--c-bg-alt); }
.day-timeline { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 920px; margin: 0 auto; }
.day-block { background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 24px 26px; display: flex; gap: 18px; align-items: start; }
.day-time { font-family: var(--f-display); font-size: 24px; font-weight: 600; color: var(--c-accent); flex-shrink: 0; min-width: 70px; line-height: 1.1; }
.day-text { font-size: 15px; color: var(--c-text); line-height: 1.55; }
.day-text strong { color: var(--c-primary); font-weight: 600; }
.day-footnote { text-align: center; max-width: 600px; margin: 40px auto 0; font-size: 14px; color: var(--c-text-muted); font-style: italic; }

/* Hiring funnel */
.funnel-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.funnel-card { background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 26px 22px; position: relative; }
.funnel-step { display: inline-block; font-family: var(--f-display); font-style: italic; font-weight: 500; font-size: 36px; color: var(--c-accent); line-height: 1; margin-bottom: 14px; letter-spacing: -0.04em; }
.funnel-card h4 { font-family: var(--f-display); font-size: 17px; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.01em; }
.funnel-card p { font-size: 13.5px; color: var(--c-text-muted); line-height: 1.5; }
.funnel-time { font-size: 12px; color: var(--c-accent-dark); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 4px; display: block; }

/* Leadership */
.team { background: var(--c-bg-alt); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--c-bg-card); border-radius: var(--radius); padding: 32px 28px; border: 1px solid var(--c-border); transition: all 0.3s; }
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.team-avatar {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--c-primary);
    display: grid; place-items: center;
    font-family: var(--f-display); font-weight: 600; font-size: 24px; color: #fff;
    margin-bottom: 18px;
    object-fit: cover;
    overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-avatar.c2 { background: var(--c-accent); }
.team-avatar.c3 { background: var(--c-sage); }
.team-name { font-family: var(--f-display); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
.team-role { font-size: 13px; color: var(--c-accent-dark); font-weight: 600; margin-bottom: 12px; }
.team-quote { font-size: 14px; color: var(--c-text-muted); line-height: 1.55; font-style: italic; padding-top: 12px; border-top: 1px dashed var(--c-border); }
.team-meta { font-size: 12px; color: var(--c-text-muted); margin-top: 10px; }

/* ==========================================================================
   FORM
   ========================================================================== */
.form-section { padding: 100px 0; background: var(--c-bg); }
.form-wrapper { max-width: 720px; margin: 0 auto; }
.form-intro { text-align: center; margin-bottom: 48px; }
.form-intro .section-title { margin-left: auto; margin-right: auto; }
.form-intro .section-lede { margin-left: auto; margin-right: auto; }
.form-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: 20px;
    padding: 0;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}
.form-progress {
    padding: 22px 36px;
    border-bottom: 1px solid var(--c-border);
    background: var(--c-bg-alt);
}
.progress-bar {
    height: 6px; background: rgba(15, 76, 92, 0.08); border-radius: 3px;
    overflow: hidden; margin-bottom: 12px;
}
.progress-fill {
    height: 100%; background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
    width: 20%;
    transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border-radius: 3px;
}
.progress-meta { display: flex; justify-content: space-between; font-size: 13px; color: var(--c-text-muted); }
.step-counter { font-weight: 600; color: var(--c-text); }

.form-body { padding: 40px 36px; min-height: 400px; }
.form-step { display: none; animation: stepIn 0.4s ease-out; }
.form-step.active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.step-eyebrow { font-size: 12px; color: var(--c-accent-dark); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.step-title { font-family: var(--f-display); font-size: 30px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 8px; }
.step-subtitle { font-size: 15px; color: var(--c-text-muted); margin-bottom: 32px; line-height: 1.5; }

.field-group { margin-bottom: 22px; }
.field-group label { display: block; font-size: 14px; font-weight: 600; color: var(--c-text); margin-bottom: 8px; }
.field-group .hint { font-size: 13px; color: var(--c-text-muted); margin-top: 6px; line-height: 1.4; }
.field-group input[type="text"],
.field-group input[type="email"],
.field-group input[type="tel"],
.field-group select,
.field-group textarea {
    width: 100%; padding: 12px 14px;
    border: 1.5px solid var(--c-border); border-radius: 10px;
    font-family: var(--f-body); font-size: 15px;
    color: var(--c-text); background: var(--c-bg);
    transition: all 0.2s;
}
.field-group input:focus, .field-group select:focus, .field-group textarea:focus {
    outline: none; border-color: var(--c-primary); background: var(--c-bg-card);
    box-shadow: 0 0 0 3px rgba(15, 76, 92, 0.08);
}
.field-group textarea { resize: vertical; min-height: 100px; }
.field-group input[type="file"] {
    padding: 12px 14px; font-family: var(--f-body); font-size: 14px;
    border: 1.5px dashed var(--c-border); border-radius: 10px;
    width: 100%; background: var(--c-bg); cursor: pointer;
}
.field-group.has-error input,
.field-group.has-error select,
.field-group.has-error textarea { border-color: #C8552F; background: rgba(227, 111, 76, 0.04); }
.field-error { color: #C8552F; font-size: 13px; margin-top: 6px; font-weight: 500; display: none; }
.field-group.has-error .field-error { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.choice-grid { display: grid; gap: 10px; }
.choice-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.choice-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.choice {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px;
    border: 1.5px solid var(--c-border); border-radius: 12px;
    background: var(--c-bg); cursor: pointer;
    transition: all 0.2s;
    font-size: 15px; font-weight: 500;
    user-select: none;
}
.choice:hover { border-color: var(--c-primary); background: var(--c-bg-card); }
.choice input { display: none; }
.choice .choice-mark {
    width: 20px; height: 20px;
    border: 1.5px solid var(--c-border); border-radius: 6px;
    flex-shrink: 0;
    display: grid; place-items: center;
    transition: all 0.2s;
}
.choice.radio .choice-mark { border-radius: 50%; }
.choice input:checked ~ .choice-mark { background: var(--c-primary); border-color: var(--c-primary); }
.choice input:checked ~ .choice-mark::after { content: ''; width: 8px; height: 8px; background: #fff; border-radius: 50%; }
.choice.checkbox input:checked ~ .choice-mark::after { content: '✓'; color: #fff; font-size: 13px; font-weight: bold; background: transparent; width: auto; height: auto; }
.choice:has(input:checked) { border-color: var(--c-primary); background: rgba(15, 76, 92, 0.04); }

.form-actions {
    padding: 24px 36px;
    border-top: 1px solid var(--c-border); background: var(--c-bg-alt);
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.form-actions .privacy { font-size: 12.5px; color: var(--c-text-muted); display: flex; align-items: center; gap: 6px; }
.form-actions .privacy svg { width: 14px; height: 14px; }
.btn-back { background: transparent; border: 1.5px solid var(--c-border); color: var(--c-text-muted); padding: 11px 20px; border-radius: 10px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: var(--f-body); }
.btn-back:hover { border-color: var(--c-text-muted); color: var(--c-text); }
.btn-back:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-next:disabled { opacity: 0.6; cursor: not-allowed; }

.form-success { display: none; text-align: center; padding: 60px 36px; }
.form-success.active { display: block; }
.success-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(47, 143, 110, 0.1); color: var(--c-success);
    display: grid; place-items: center; margin: 0 auto 24px;
}
.success-icon svg { width: 32px; height: 32px; }
.form-success h3 { font-family: var(--f-display); font-size: 32px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 12px; }
.form-success h3 em { font-style: italic; color: var(--c-primary); }
.form-success p { color: var(--c-text-muted); font-size: 16px; margin-bottom: 8px; }
.form-success .next-steps { margin-top: 32px; padding: 24px; background: var(--c-bg-alt); border-radius: 12px; text-align: left; }
.form-success .next-steps h4 { font-size: 14px; font-weight: 600; color: var(--c-accent-dark); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 12px; }
.form-success .next-steps ol { padding-left: 18px; color: var(--c-text); font-size: 14.5px; }
.form-success .next-steps li { margin-bottom: 6px; }

.form-error-message {
    margin: 0 36px 16px;
    padding: 14px 18px;
    background: rgba(227, 111, 76, 0.08);
    border: 1px solid rgba(227, 111, 76, 0.3);
    border-radius: 10px;
    color: var(--c-accent-dark);
    font-size: 14px;
    display: none;
}
.form-error-message.active { display: block; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding: 90px 0 100px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--c-border); padding: 22px 0; }
.faq-question {
    width: 100%; background: none; border: none;
    text-align: left; cursor: pointer;
    font-family: var(--f-display);
    font-size: 19px; font-weight: 600; letter-spacing: -0.01em;
    color: var(--c-text);
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    padding: 0;
}
.faq-question:hover { color: var(--c-primary); }
.faq-toggle {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--c-bg-alt); display: grid; place-items: center;
    font-family: var(--f-body); font-weight: 600; color: var(--c-primary);
    flex-shrink: 0; transition: transform 0.3s; font-size: 18px;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--c-primary); color: #fff; }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--c-text-muted); font-size: 15px; line-height: 1.6;
}
.faq-item.open .faq-answer { max-height: 400px; padding-top: 14px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--c-primary); color: rgba(255,255,255,0.85); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 60px; margin-bottom: 60px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.6; margin-top: 18px; max-width: 280px; }
.footer-col h5 { font-family: var(--f-body); font-size: 13px; font-weight: 600; color: var(--c-accent); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; padding: 0; margin: 0; }
.footer-col a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 14.5px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
    font-size: 13px; color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.7); text-decoration: none; margin-left: 24px; }
.footer-bottom a:hover { color: #fff; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 920px) {
    .hero-grid, .why-grid, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { gap: 32px; }
    .steps-grid, .services-grid, .duties-grid, .day-timeline, .team-grid, .role-facts, .field-row { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .funnel-grid { grid-template-columns: 1fr 1fr; }
    .choice-grid.cols-3, .choice-grid.cols-2 { grid-template-columns: 1fr; }
    section { padding: 64px 0; }
    .testimonial-card { padding: 48px 32px; }
    .testimonial-card blockquote { font-size: 22px; }
    .cta-card { padding: 48px 24px; }
    .form-body, .form-progress, .form-actions { padding-left: 22px; padding-right: 22px; }
    .step-title { font-size: 26px; }
}
