/* ── HEADER / NAV ── */
.site-header { background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px var(--pad-x); gap: 32px; }
.site-nav { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.site-nav a { font-size: 14px; font-weight: 400; color: var(--ink-mid); letter-spacing: 0.1px; transition: color 0.15s; }
.site-nav a:hover { color: var(--ink); }
.btn-solutions { background: var(--slate); color: var(--white); font-size: 11.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 12px 20px; border-radius: var(--radius-sm); flex-shrink: 0; transition: background 0.15s; white-space: nowrap; text-decoration: none; display: inline-block; }
.btn-solutions:hover { background: var(--ink); opacity: 1; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-nav { display: none; flex-direction: column; background: var(--cream); border-top: 1px solid rgba(0,0,0,0.07); padding: 8px var(--pad-x) 24px; }
.mobile-nav.is-open { display: flex; }
.mobile-nav a { display: block; font-size: 17px; color: var(--ink); padding: 13px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.btn-solutions--mobile { display: inline-block; margin-top: 18px; text-align: center; border-radius: var(--radius-sm); }
@media (max-width: 900px) { .site-nav, .btn-solutions:not(.btn-solutions--mobile) { display: none; } .mobile-toggle { display: flex; } }

/* ── SEGMENT SUB-NAV ── */
.segment-subnav { background: var(--cream-card); border-bottom: 1px solid rgba(0,0,0,0.07); padding: 10px var(--pad-x); overflow-x: auto; }
.segment-subnav-inner { display: flex; gap: 4px; }
.seg-link { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-muted); padding: 8px 14px; border-radius: var(--radius-sm); white-space: nowrap; transition: color 0.15s, background 0.15s; }
.seg-link:hover { color: var(--ink); background: rgba(0,0,0,0.04); }
.seg-link.active { color: var(--slate); background: rgba(56,75,95,0.08); }

/* ── HERO ── */
.segment-hero { background: var(--ink); padding: 88px var(--pad-x) 80px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-headline { color: var(--white); margin-bottom: 20px; }
.hero-headline em { font-style: italic; color: rgba(255,255,255,0.65); }
.hero-subhead { font-size: 17px; color: rgba(255,255,255,0.60); margin-bottom: 36px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 24px; margin-top: 36px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.10); flex-wrap: wrap; }
.trust-item { font-size: 13px; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 8px; }
.trust-item::before { content: '✓'; color: var(--teal); font-weight: 700; }
.hero-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 40px 36px; }
.hero-card-title { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.30); margin-bottom: 24px; }
.scenario-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.scenario-list li { font-size: 15px; color: rgba(255,255,255,0.60); line-height: 1.5; padding-left: 20px; position: relative; }
.scenario-list li::before { content: '→'; position: absolute; left: 0; color: var(--teal); }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } .hero-card { display: none; } }
@media (max-width: 768px) { .segment-hero { padding: 64px var(--pad-x); } }

/* ── HOW IT WORKS ── */
.how-section { padding: 88px var(--pad-x); background: var(--cream); }
.section-headline { margin-bottom: 16px; }
.section-subhead { font-size: 17px; color: var(--ink-muted); max-width: 600px; margin-bottom: 56px; line-height: 1.65; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step-card { background: var(--cream-card); border-radius: var(--radius-lg); padding: 40px 36px; }
.step-num { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; color: var(--ink-muted); margin-bottom: 20px; text-transform: uppercase; }
.step-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(20px, 2vw, 28px); font-weight: 400; color: var(--ink); margin-bottom: 12px; line-height: 1.2; }
.step-body { font-size: 15px; color: var(--ink-muted); line-height: 1.65; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } }

/* ── WHO THIS IS FOR ── */
.who-section { padding: 88px var(--pad-x); background: var(--cream-alt); }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.who-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.who-list li { display: flex; gap: 14px; font-size: 15px; color: var(--ink-mid); line-height: 1.6; }
.who-check { font-size: 11px; font-weight: 700; color: var(--slate); flex-shrink: 0; margin-top: 3px; }
.who-panel { background: var(--ink); border-radius: var(--radius-lg); padding: 44px 40px; color: var(--white); }
.who-panel-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; display: block; }
.who-panel h3 { color: var(--white); margin-bottom: 16px; }
.who-panel p { font-size: 15px; color: rgba(255,255,255,0.60); margin-bottom: 32px; }
@media (max-width: 768px) { .who-grid { grid-template-columns: 1fr; } .who-panel { margin-top: 32px; } }

/* ── WHAT HAPPENS NEXT ── */
.next-section { padding: 88px var(--pad-x); background: var(--cream); }
.next-steps { display: flex; flex-direction: column; max-width: 700px; margin: 48px auto 0; position: relative; }
.next-steps::before { content: ''; position: absolute; left: 19px; top: 24px; bottom: 24px; width: 1px; background: rgba(0,0,0,0.12); }
.next-step { display: flex; gap: 28px; align-items: flex-start; padding-bottom: 36px; position: relative; }
.next-step:last-child { padding-bottom: 0; }
.next-step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--cream-card); border: 1.5px solid rgba(0,0,0,0.12); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--ink-mid); flex-shrink: 0; position: relative; z-index: 1; }
.next-step-title { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.next-step-body { font-size: 15px; color: var(--ink-muted); line-height: 1.6; }
.next-cta { text-align: center; margin-top: 64px; }
.next-cta p { font-size: 15px; color: var(--ink-muted); margin-top: 20px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── FOOTER ── */
.site-footer { background: var(--slate); color: rgba(255,255,255,0.85); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px var(--pad-x); border-top: 1px solid rgba(255,255,255,0.07); font-size: 12px; color: rgba(255,255,255,0.28); flex-wrap: wrap; gap: 16px; }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: rgba(255,255,255,0.28); transition: color 0.15s; }
.footer-legal-links a:hover { color: rgba(255,255,255,0.6); }

/* ── FOOTER DISCLOSURE ── */
.footer-disclosure { font-size: 11px; color: rgba(255,255,255,0.28); padding: 12px var(--pad-x); line-height: 1.7; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-disclosure a { color: rgba(255,255,255,0.45); text-decoration: underline; text-underline-offset: 2px; }
.footer-disclosure a:hover { color: rgba(255,255,255,0.7); }

/* ── DISCLAIMER MODAL ── */
.disclaimer-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(16,16,16,0.6); align-items: center; justify-content: center; z-index: 1000; }
.disclaimer-modal-content { background: var(--cream); max-width: 600px; width: calc(100% - 2rem); padding: 2rem; border-radius: var(--radius-lg); position: relative; max-height: 80vh; overflow-y: auto; box-shadow: var(--shadow-md); }
.disclaimer-modal-content h2 { color: var(--ink); margin-bottom: 1rem; }
.disclaimer-modal-content p { font-size: 14px; color: var(--ink-muted); line-height: 1.7; }
.disclaimer-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ink); line-height: 1; }
.disclaimer-close:hover { color: var(--slate); }
