:root {
  --brand-primary: #3046ff;
  --brand-light:   #98d1ff;
  --brand-bg:      #f4faff;
  --brand-dark:    #070f59;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--brand-bg); color: var(--brand-dark); overflow-x: hidden; }
h1, h2, h3, h4, h5 { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; line-height: 1.2; letter-spacing: -0.01em; }
a { text-decoration: none; color: inherit; }

/* ── NAV ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--brand-dark); transition: box-shadow 0.3s; }
.nav.scrolled { box-shadow: 0 2px 32px rgba(7,15,89,0.45); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; height: 72px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-weight: 800; font-size: 22px; color: var(--brand-bg); letter-spacing: -0.04em; }
.nav-logo-text span { color: var(--brand-light); }
.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 400; color: rgba(244,250,255,0.7); letter-spacing: 0.04em; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--brand-bg); }
.nav-cta { background: var(--brand-primary); color: var(--brand-bg); padding: 10px 24px; border-radius: 8px; font-size: 13px; font-weight: 500; letter-spacing: 0.02em; transition: background 0.2s, transform 0.2s; }
.nav-cta:hover { background: #1e30d4; transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--brand-bg); transition: 0.3s; }
.nav-contact { font-size: 13px; color: rgba(244,250,255,0.6); }
.nav-contact a { color: var(--brand-light); }
.landing-page .nav { position: sticky; height: 64px; padding: 0 48px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(152,209,255,0.1); }

/* ── MOBILE NAV ── */
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 999; background: var(--brand-dark); flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 28px; font-weight: 700; color: rgba(244,250,255,0.8); transition: color 0.2s; }
.mobile-nav a:hover { color: var(--brand-bg); }
.mobile-nav-close { position: absolute; top: 24px; right: 32px; background: none; border: none; cursor: pointer; font-size: 32px; color: rgba(244,250,255,0.6); }

/* ── SECTIONS ── */
.section { padding: 112px 48px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 16px; display: block; }
.section-title { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-weight: 800; font-size: clamp(32px, 4vw, 56px); color: var(--brand-dark); margin-bottom: 24px; }
.section-title .accent { color: var(--brand-primary); }
.section-sub { font-size: 17px; font-weight: 300; color: rgba(7,15,89,0.6); line-height: 1.7; max-width: 600px; }

/* ── BUTTONS ── */
.btn-primary { background: var(--brand-primary); color: var(--brand-bg); padding: 16px 36px; border-radius: 10px; font-size: 15px; font-weight: 500; letter-spacing: 0.01em; transition: background 0.2s, transform 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: #1e30d4; transform: translateY(-2px); }
.btn-light { background: var(--brand-bg); color: var(--brand-dark); padding: 16px 36px; border-radius: 10px; font-size: 15px; font-weight: 500; transition: background 0.2s, transform 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-light:hover { background: var(--brand-light); transform: translateY(-2px); }
.btn-ghost { color: rgba(244,250,255,0.75); font-size: 14px; font-weight: 400; display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(152,209,255,0.35); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.btn-ghost:hover { color: var(--brand-bg); border-color: var(--brand-light); }
.btn-outline { border: 1.5px solid rgba(152,209,255,0.4); color: rgba(244,250,255,0.8); padding: 16px 36px; border-radius: 10px; font-size: 15px; font-weight: 400; transition: border-color 0.2s, color 0.2s; }
.btn-outline:hover { border-color: var(--brand-light); color: var(--brand-bg); }
.btn-outline-dark { border: 1.5px solid rgba(7,15,89,0.25); color: var(--brand-dark); padding: 16px 36px; border-radius: 10px; font-size: 15px; font-weight: 400; transition: border-color 0.2s, background 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline-dark:hover { border-color: var(--brand-primary); background: rgba(48,70,255,0.04); }

/* ── CTA SECTION ── */
.cta-section { background: var(--brand-dark); padding: 120px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(48,70,255,0.2) 0%, transparent 70%); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-label { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand-light); opacity: 0.7; margin-bottom: 24px; display: block; }
.cta-title { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-weight: 800; font-size: clamp(32px, 4vw, 56px); color: var(--brand-bg); line-height: 1.05; margin-bottom: 24px; }
.cta-title .accent { color: var(--brand-light); }
.cta-sub { font-size: 17px; font-weight: 300; color: rgba(244,250,255,0.55); line-height: 1.7; margin-bottom: 48px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: var(--brand-dark); border-top: 1px solid rgba(152,209,255,0.1); padding: 80px 48px 40px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 64px; }
.footer-logo-img { height: 32px; width: auto; }
.footer-logo-text { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-weight: 800; font-size: 24px; color: var(--brand-bg); letter-spacing: -0.04em; }
.footer-logo-text span { color: var(--brand-light); }
.footer-tagline { font-size: 13px; font-weight: 300; color: rgba(244,250,255,0.45); line-height: 1.7; max-width: 280px; margin-top: 16px; }
.footer-col-title { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(244,250,255,0.4); margin-bottom: 24px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: rgba(244,250,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--brand-bg); }
.footer-bottom { border-top: 1px solid rgba(152,209,255,0.1); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 13px; color: rgba(244,250,255,0.35); }
.footer-social { display: flex; gap: 24px; }
.footer-social a { font-size: 13px; color: rgba(244,250,255,0.5); transition: color 0.2s; }
.footer-social a:hover { color: var(--brand-light); }

/* ── FAQ (shared) ── */
.faq-item { background: white; border-radius: 16px; padding: 32px; border: 1px solid rgba(152,209,255,0.25); cursor: pointer; margin-bottom: 16px; }
.faq-question { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 16px; font-weight: 700; color: var(--brand-dark); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-toggle { width: 28px; height: 28px; border-radius: 50%; background: rgba(48,70,255,0.08); color: var(--brand-primary); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; transition: transform 0.3s; }
.faq-answer { font-size: 14px; color: rgba(7,15,89,0.65); line-height: 1.75; margin-top: 16px; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 64px; }
.faq-grid .faq-item { margin-bottom: 0; }
.faq-section { background: var(--brand-bg); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-label { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 16px; display: block; }
.faq-title { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-weight: 800; font-size: clamp(28px, 3.5vw, 44px); color: var(--brand-dark); margin-bottom: 48px; }
.connect-page .faq-item { background: none; border-radius: 0; padding: 28px 0; border: none; border-bottom: 1px solid rgba(152,209,255,0.35); margin-bottom: 0; }
.connect-page .faq-item:first-of-type { border-top: 1px solid rgba(152,209,255,0.35); }
.connect-page .faq-question { font-size: 17px; }
.connect-page .faq-answer { font-size: 15px; }

/* ── PAGE HERO (shared inner) ── */
.page-hero { min-height: 72vh; background: var(--brand-dark); display: flex; align-items: flex-end; padding: 120px 48px 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -80px; right: -40px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(48,70,255,0.2) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 1280px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.hero-label { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand-light); opacity: 0.7; margin-bottom: 24px; display: block; }
.hero-title { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-weight: 800; font-size: clamp(40px, 5.5vw, 80px); color: var(--brand-bg); line-height: 1.18; }
.hero-title .accent { color: var(--brand-light); }
.hero-sub { font-size: 17px; font-weight: 300; color: rgba(244,250,255,0.6); line-height: 1.7; margin-top: 24px; max-width: 600px; }
.hero-right p { font-size: 16px; font-weight: 300; color: rgba(244,250,255,0.6); line-height: 1.75; margin-bottom: 16px; }
.hero-pill { background: rgba(244,250,255,0.08); border: 1px solid rgba(152,209,255,0.2); border-radius: 100px; padding: 8px 16px; font-size: 12px; color: rgba(244,250,255,0.65); cursor: pointer; transition: background 0.2s, color 0.2s; }
.hero-pill:hover { background: rgba(48,70,255,0.3); color: var(--brand-bg); }
.hero-scroll { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }

/* ── INDEX HERO ── */
.hero { min-height: 100vh; background: var(--brand-dark); display: flex; align-items: center; position: relative; overflow: hidden; padding: 120px 48px 80px; }
.hero-glow-1 { position: absolute; top: -120px; right: -80px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(48,70,255,0.25) 0%, transparent 70%); pointer-events: none; }
.hero-glow-2 { position: absolute; bottom: -100px; left: 10%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(152,209,255,0.12) 0%, transparent 70%); pointer-events: none; }
.hero .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero .hero-title { font-size: clamp(40px, 5vw, 72px); line-height: 1.15; letter-spacing: 0; margin-bottom: 32px; }
.hero .hero-sub { font-size: 18px; color: rgba(244,250,255,0.65); max-width: 480px; margin-bottom: 48px; margin-top: 0; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-photo-wrap { position: relative; display: flex; justify-content: center; }
.hero-photo-frame { width: 480px; max-width: 100%; aspect-ratio: 3/4; border-radius: 24px; overflow: hidden; position: relative; border: 1px solid rgba(152,209,255,0.2); background: linear-gradient(160deg, rgba(48,70,255,0.3) 0%, rgba(7,15,89,0.8) 100%); }
.hero-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(7,15,89,0.7) 100%); }
.hero-badge { position: absolute; bottom: 24px; left: 24px; right: 24px; background: rgba(7,15,89,0.85); backdrop-filter: blur(12px); border: 1px solid rgba(152,209,255,0.2); border-radius: 12px; padding: 16px 20px; }
.hero-badge-name { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 18px; font-weight: 700; color: var(--brand-bg); margin-bottom: 4px; }
.hero-badge-title { font-size: 12px; color: var(--brand-light); opacity: 0.8; }

/* ── TICKER ── */
.ticker { background: var(--brand-primary); padding: 14px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: ticker 28s linear infinite; }
.ticker-item { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,250,255,0.9); padding: 0 40px; display: flex; align-items: center; gap: 40px; }
.ticker-item::after { content: '·'; color: var(--brand-light); font-size: 18px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── PROBLEM (index) ── */
.problem-section { background: var(--brand-bg); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 80px; }
.problem-statement { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-weight: 700; font-size: clamp(24px, 2.5vw, 36px); color: var(--brand-dark); line-height: 1.25; margin-bottom: 32px; }
.problem-statement .underline { border-bottom: 3px solid var(--brand-primary); padding-bottom: 2px; }
.problem-body { font-size: 16px; font-weight: 300; color: rgba(7,15,89,0.65); line-height: 1.8; margin-bottom: 24px; }
.problem-card { background: white; border-radius: 16px; padding: 32px; border: 1px solid rgba(152,209,255,0.3); box-shadow: 0 4px 24px rgba(7,15,89,0.06); margin-bottom: 16px; transition: transform 0.2s, box-shadow 0.2s; }
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(7,15,89,0.1); }
.problem-card-num { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 48px; font-weight: 800; color: rgba(48,70,255,0.12); line-height: 1; margin-bottom: 8px; }
.problem-card-title { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 17px; font-weight: 700; color: var(--brand-dark); margin-bottom: 8px; }
.problem-card-body { font-size: 14px; color: rgba(7,15,89,0.6); line-height: 1.7; }

/* ── METHOD GRID (index) ── */
.method-section { background: var(--brand-dark); }
.method-section .section-title { color: var(--brand-bg); }
.method-section .section-sub { color: rgba(244,250,255,0.55); }
.method-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; gap: 40px; flex-wrap: wrap; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.method-card { background: rgba(244,250,255,0.05); border: 1px solid rgba(152,209,255,0.12); border-radius: 16px; padding: 36px; transition: background 0.3s, border-color 0.3s; position: relative; overflow: hidden; }
.method-card:hover { background: rgba(48,70,255,0.15); border-color: rgba(152,209,255,0.3); }
.method-card-letter { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 64px; font-weight: 800; color: var(--brand-primary); opacity: 0.35; line-height: 1; margin-bottom: 16px; }
.method-card-phase { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-light); opacity: 0.6; margin-bottom: 8px; }
.method-card-title { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 18px; font-weight: 700; color: var(--brand-bg); margin-bottom: 12px; }
.method-card-body { font-size: 14px; color: rgba(244,250,255,0.5); line-height: 1.7; }

/* ── WHO I WORK WITH (index) ── */
.who-section { background: var(--brand-bg); }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.who-card { background: white; border-radius: 20px; overflow: hidden; border: 1px solid rgba(152,209,255,0.25); box-shadow: 0 4px 24px rgba(7,15,89,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.who-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(7,15,89,0.12); }
.who-card-header { background: var(--brand-dark); padding: 32px; position: relative; overflow: hidden; min-height: 140px; }
.who-card-header::before { content: ''; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; border-radius: 50%; background: var(--brand-primary); opacity: 0.2; }
.who-card-num { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 48px; font-weight: 800; color: rgba(244,250,255,0.08); line-height: 1; position: absolute; bottom: 16px; right: 24px; }
.who-card-avatar { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-light); opacity: 0.7; margin-bottom: 8px; }
.who-card-name { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 22px; font-weight: 700; color: var(--brand-bg); position: relative; z-index: 1; }
.who-card-body { padding: 32px; }
.who-card-desc { font-size: 14px; color: rgba(7,15,89,0.6); line-height: 1.75; margin-bottom: 24px; }
.who-card-pain { font-size: 13px; font-weight: 500; color: var(--brand-primary); display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.who-card-pain::before { content: '→'; flex-shrink: 0; margin-top: 1px; }

/* ── STATS ── */
.stats-section { background: var(--brand-primary); padding: 80px 48px; }
.stats-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-num { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 56px; font-weight: 800; color: var(--brand-bg); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: rgba(244,250,255,0.7); font-weight: 300; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--brand-bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.testimonial-card { background: white; border-radius: 20px; padding: 40px; border: 1px solid rgba(152,209,255,0.25); box-shadow: 0 4px 24px rgba(7,15,89,0.06); }
.testimonial-quote, .testimonial-quote-mark { font-size: 48px; color: var(--brand-light); font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; line-height: 1; margin-bottom: 16px; font-weight: 800; }
.testimonial-text { font-size: 15px; font-weight: 300; color: rgba(7,15,89,0.75); line-height: 1.75; margin-bottom: 32px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--brand-dark); display: flex; align-items: center; justify-content: center; font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-weight: 800; font-size: 18px; color: var(--brand-light); flex-shrink: 0; }
.testimonial-name { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 15px; font-weight: 700; color: var(--brand-dark); margin-bottom: 2px; }
.testimonial-title { font-size: 12px; color: rgba(7,15,89,0.5); }
.testimonial-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 64px; }

/* ── ABOUT: HERO ── */
.page-hero-inner { max-width: 1280px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; position: relative; z-index: 1; }
.page-hero-label { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand-light); opacity: 0.7; margin-bottom: 24px; display: block; }
.page-hero-title { font-weight: 800; font-size: clamp(40px, 5.5vw, 80px); color: var(--brand-bg); line-height: 1.18; margin-bottom: 24px; }
.page-hero-title .accent { color: var(--brand-light); }
.page-hero-sub { font-size: 17px; font-weight: 300; color: rgba(244,250,255,0.6); line-height: 1.7; }
.hero-photo-side { display: flex; justify-content: flex-end; align-items: flex-end; }
.hero-img-frame { width: 420px; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; border: 1px solid rgba(152,209,255,0.2); position: relative; background: linear-gradient(160deg, rgba(48,70,255,0.25) 0%, rgba(7,15,89,0.85) 100%); }
.hero-img-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 60%, rgba(7,15,89,0.5) 100%); }

/* ── ABOUT: STORY ── */
.story-section { background: var(--brand-bg); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 120px; align-items: start; }
.story-body p { font-size: 17px; font-weight: 300; color: rgba(7,15,89,0.75); line-height: 1.85; margin-bottom: 24px; }
.story-body p strong { font-weight: 600; color: var(--brand-dark); }
.story-pull { background: var(--brand-dark); border-radius: 20px; padding: 40px; position: sticky; top: 100px; }
.story-pull-quote { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 22px; font-weight: 700; color: var(--brand-bg); line-height: 1.4; margin-bottom: 24px; }
.story-pull-quote span { color: var(--brand-light); }
.story-pull-divider { height: 1px; background: rgba(152,209,255,0.2); margin-bottom: 24px; }
.story-pull-stat { margin-bottom: 20px; }
.story-pull-stat-num { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 40px; font-weight: 800; color: var(--brand-light); line-height: 1; margin-bottom: 4px; }
.story-pull-stat-label { font-size: 13px; color: rgba(244,250,255,0.5); }
.story-photo-block { margin-top: 24px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(152,209,255,0.2); aspect-ratio: 4/3; background: linear-gradient(160deg, rgba(48,70,255,0.2) 0%, rgba(7,15,89,0.9) 100%); }

/* ── ABOUT: MV / VALUES / METHOD BANNER ── */
.mv-section { background: var(--brand-dark); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 64px; }
.mv-card { background: rgba(244,250,255,0.05); border: 1px solid rgba(152,209,255,0.15); border-radius: 20px; padding: 48px; }
.mv-card-label { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand-light); opacity: 0.6; margin-bottom: 20px; }
.mv-card-title { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 28px; font-weight: 800; color: var(--brand-bg); margin-bottom: 20px; }
.mv-card-body { font-size: 16px; font-weight: 300; color: rgba(244,250,255,0.6); line-height: 1.8; }
.values-section { background: var(--brand-bg); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.value-card { background: white; border-radius: 16px; padding: 40px; border: 1px solid rgba(152,209,255,0.25); box-shadow: 0 4px 24px rgba(7,15,89,0.06); transition: transform 0.2s, box-shadow 0.2s; }
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(7,15,89,0.1); }
.value-icon { width: 48px; height: 48px; background: var(--brand-primary); border-radius: 12px; margin-bottom: 24px; display: flex; align-items: center; justify-content: center; }
.value-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--brand-bg); stroke-width: 2; stroke-linecap: round; }
.value-title { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 18px; font-weight: 700; color: var(--brand-dark); margin-bottom: 12px; }
.value-body { font-size: 14px; color: rgba(7,15,89,0.6); line-height: 1.75; }
.method-banner { background: var(--brand-primary); padding: 80px 48px; }
.method-banner-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.method-banner-left h2 { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-weight: 800; font-size: clamp(28px, 3.5vw, 48px); color: var(--brand-bg); line-height: 1.1; margin-bottom: 16px; }
.method-banner-left p { font-size: 16px; font-weight: 300; color: rgba(244,250,255,0.75); line-height: 1.7; }
.method-banner-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.method-mini { background: rgba(7,15,89,0.25); border: 1px solid rgba(244,250,255,0.2); border-radius: 12px; padding: 20px; }
.method-mini-letter { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 32px; font-weight: 800; color: rgba(244,250,255,0.4); line-height: 1; margin-bottom: 6px; }
.method-mini-label { font-size: 12px; color: rgba(244,250,255,0.75); font-weight: 500; }

/* ── CHALLENGES ── */
.intro-strip { background: var(--brand-primary); padding: 56px 48px; }
.intro-strip-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-strip-quote { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: clamp(20px, 2.5vw, 30px); font-weight: 700; color: var(--brand-bg); line-height: 1.3; }
.intro-strip-body { font-size: 15px; font-weight: 300; color: rgba(244,250,255,0.75); line-height: 1.75; }
.challenges-section { background: var(--brand-bg); }
.challenges-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 64px; }
.challenge-card { background: white; border-radius: 20px; padding: 48px; border: 1px solid rgba(152,209,255,0.25); box-shadow: 0 4px 24px rgba(7,15,89,0.06); position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.challenge-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(7,15,89,0.12); }
.challenge-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--brand-primary); opacity: 0; transition: opacity 0.3s; }
.challenge-card:hover::before { opacity: 1; }
.challenge-num { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 72px; font-weight: 800; color: rgba(48,70,255,0.08); line-height: 1; position: absolute; bottom: 24px; right: 32px; }
.challenge-icon { width: 56px; height: 56px; background: rgba(48,70,255,0.08); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 28px; }
.challenge-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--brand-primary); stroke-width: 1.8; stroke-linecap: round; }
.challenge-title { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 22px; font-weight: 800; color: var(--brand-dark); margin-bottom: 16px; }
.challenge-body { font-size: 15px; font-weight: 300; color: rgba(7,15,89,0.65); line-height: 1.8; margin-bottom: 24px; }
.challenge-signals { border-top: 1px solid rgba(152,209,255,0.3); padding-top: 20px; }
.challenge-signal-title { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 12px; }
.challenge-signal { font-size: 13px; color: rgba(7,15,89,0.55); margin-bottom: 6px; display: flex; align-items: flex-start; gap: 8px; }
.challenge-signal::before { content: '—'; color: var(--brand-primary); flex-shrink: 0; }
.why-section { background: var(--brand-dark); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 64px; }
.why-list { list-style: none; }
.why-item { padding: 28px 0; border-bottom: 1px solid rgba(152,209,255,0.12); display: flex; gap: 20px; }
.why-item:last-child { border-bottom: none; }
.why-item-x { width: 28px; height: 28px; border-radius: 50%; background: rgba(48,70,255,0.2); color: var(--brand-light); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.why-item-title { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 16px; font-weight: 700; color: var(--brand-bg); margin-bottom: 6px; }
.why-item-body { font-size: 14px; color: rgba(244,250,255,0.5); line-height: 1.7; }
.why-right h3 { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 28px; font-weight: 800; color: var(--brand-bg); margin-bottom: 24px; }
.why-right p { font-size: 15px; font-weight: 300; color: rgba(244,250,255,0.6); line-height: 1.8; margin-bottom: 20px; }
.why-box { background: rgba(48,70,255,0.2); border: 1px solid rgba(48,70,255,0.4); border-radius: 16px; padding: 28px; margin-top: 32px; }
.why-box-title { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 16px; font-weight: 700; color: var(--brand-light); margin-bottom: 8px; }
.why-box-body { font-size: 14px; color: rgba(244,250,255,0.7); line-height: 1.7; }
.bridge-section { background: var(--brand-bg); }
.bridge-inner { max-width: 1280px; margin: 0 auto; }
.bridge-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 64px; flex-wrap: wrap; }
.bridge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(152,209,255,0.3); border-radius: 20px; overflow: hidden; }
.bridge-item { background: white; padding: 40px; }
.bridge-item-phase { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 12px; }
.bridge-item-title { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 18px; font-weight: 700; color: var(--brand-dark); margin-bottom: 12px; }
.bridge-item-body { font-size: 14px; color: rgba(7,15,89,0.6); line-height: 1.75; }

/* ── OFFERINGS ── */
.featured-section { background: var(--brand-bg); }
.featured-card { background: var(--brand-dark); border-radius: 28px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; margin-top: 64px; position: relative; }
.featured-left { padding: 64px; display: flex; flex-direction: column; justify-content: space-between; position: relative; z-index: 1; }
.featured-left::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(48,70,255,0.3) 0%, transparent 70%); z-index: -1; }
.featured-tag { background: var(--brand-primary); color: var(--brand-bg); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; display: inline-block; margin-bottom: 32px; }
.featured-title { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: clamp(28px, 3vw, 44px); font-weight: 800; color: var(--brand-bg); line-height: 1.1; margin-bottom: 16px; }
.featured-sub { font-size: 16px; font-weight: 300; color: rgba(244,250,255,0.6); line-height: 1.7; margin-bottom: 32px; }
.featured-price { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 48px; font-weight: 800; color: var(--brand-light); line-height: 1; margin-bottom: 4px; }
.featured-price-note { font-size: 13px; color: rgba(244,250,255,0.4); }
.featured-right { background: rgba(244,250,255,0.04); border-left: 1px solid rgba(152,209,255,0.12); padding: 64px; display: flex; flex-direction: column; justify-content: center; }
.featured-includes-title { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-light); opacity: 0.6; margin-bottom: 32px; }
.featured-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.featured-item-check { width: 24px; height: 24px; border-radius: 50%; background: rgba(48,70,255,0.25); color: var(--brand-light); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; margin-top: 2px; }
.featured-item-title { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 15px; font-weight: 700; color: var(--brand-bg); margin-bottom: 4px; }
.featured-item-body { font-size: 13px; color: rgba(244,250,255,0.5); line-height: 1.65; }
.services-section { background: var(--brand-bg); padding-top: 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.service-card { background: white; border-radius: 24px; overflow: hidden; border: 1px solid rgba(152,209,255,0.25); box-shadow: 0 4px 24px rgba(7,15,89,0.06); transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(7,15,89,0.12); }
.service-card-header { background: var(--brand-dark); padding: 40px; position: relative; overflow: hidden; }
.service-card-header::after { content: ''; position: absolute; bottom: -40px; right: -40px; width: 160px; height: 160px; border-radius: 50%; background: var(--brand-primary); opacity: 0.15; }
.service-tier { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-light); opacity: 0.6; margin-bottom: 12px; }
.service-name { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 22px; font-weight: 800; color: var(--brand-bg); margin-bottom: 8px; position: relative; z-index: 1; }
.service-tagline { font-size: 13px; color: rgba(244,250,255,0.5); position: relative; z-index: 1; }
.service-body { padding: 40px; flex: 1; display: flex; flex-direction: column; }
.service-price { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 36px; font-weight: 800; color: var(--brand-primary); line-height: 1; margin-bottom: 6px; }
.service-price-note { font-size: 12px; color: rgba(7,15,89,0.45); margin-bottom: 32px; }
.service-desc { font-size: 14px; color: rgba(7,15,89,0.65); line-height: 1.75; margin-bottom: 28px; flex: 1; }
.service-includes { border-top: 1px solid rgba(152,209,255,0.3); padding-top: 24px; }
.service-includes-title { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 16px; }
.service-feature { font-size: 13px; color: rgba(7,15,89,0.7); margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.service-feature::before { content: '✓'; color: var(--brand-primary); font-weight: 700; flex-shrink: 0; }
.service-cta { margin-top: 32px; }
.method-phase-list { margin-top: 64px; }
.method-phase { display: grid; grid-template-columns: 80px 1fr; gap: 40px; padding: 48px 0; border-bottom: 1px solid rgba(152,209,255,0.1); align-items: start; }
.method-phase:last-child { border-bottom: none; }
.method-phase-letter { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 80px; font-weight: 800; color: var(--brand-primary); opacity: 0.4; line-height: 1; }
.method-phase-num { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-light); opacity: 0.5; margin-bottom: 8px; }
.method-phase-title { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 26px; font-weight: 800; color: var(--brand-bg); margin-bottom: 12px; }
.method-phase-body { font-size: 15px; font-weight: 300; color: rgba(244,250,255,0.55); line-height: 1.8; max-width: 760px; margin-bottom: 16px; }
.method-phase-deliverable { background: rgba(48,70,255,0.15); border: 1px solid rgba(48,70,255,0.3); border-radius: 10px; padding: 16px 20px; display: inline-block; }
.method-phase-deliverable-label { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-light); opacity: 0.6; margin-bottom: 4px; }
.method-phase-deliverable-text { font-size: 13px; color: rgba(244,250,255,0.75); }

/* ── PROCESS SECTION ── */
.process-section { background: var(--brand-bg); }
.process-inner { max-width: 1280px; margin: 0 auto; }
.process-label { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand-light); opacity: 0.7; margin-bottom: 16px; display: block; }
.process-title { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-weight: 800; font-size: clamp(32px, 4vw, 52px); color: var(--brand-bg); margin-bottom: 64px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 1px; background: linear-gradient(to right, transparent, var(--brand-primary), transparent); opacity: 0.3; }
.process-step { text-align: center; padding: 0 24px; }
.process-step-num { width: 64px; height: 64px; border-radius: 50%; background: white; border: 2px solid var(--brand-primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; position: relative; z-index: 1; }
.process-step-num span { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 20px; font-weight: 800; color: var(--brand-primary); }
.process-step-title { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 17px; font-weight: 700; color: var(--brand-dark); margin-bottom: 12px; }
.process-step-body { font-size: 13px; color: rgba(7,15,89,0.6); line-height: 1.7; }
/* connect page: dark bg, large text numbers */
.connect-page .process-section { background: var(--brand-dark); padding: 112px 48px; }
.connect-page .process-steps { margin-top: 0; gap: 32px; }
.connect-page .process-steps::before { display: none; }
.connect-page .process-step { text-align: left; padding: 0; }
.connect-page .process-step-num { width: auto; height: auto; background: none; border: none; border-radius: 0; display: block; margin: 0 0 16px; font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 48px; font-weight: 800; color: var(--brand-primary); opacity: 0.4; line-height: 1; }
.connect-page .process-step-title { color: var(--brand-bg); font-size: 18px; }
.connect-page .process-step-body { color: rgba(244,250,255,0.5); }
/* ads landing: solid primary circle */
.landing-page .process-section { background: white; padding: 96px 48px; border-top: 1px solid rgba(152,209,255,0.3); border-bottom: 1px solid rgba(152,209,255,0.3); }
.landing-page .process-steps { gap: 0; }
.landing-page .process-steps::before { top: 28px; left: 12%; right: 12%; background: linear-gradient(to right, transparent, rgba(48,70,255,0.2), transparent); opacity: 1; }
.landing-page .process-step-num { width: 56px; height: 56px; background: var(--brand-primary); border-color: var(--brand-primary); }
.landing-page .process-step-num span { color: white; font-size: 18px; }
.landing-page .process-step-title { font-size: 15px; }
.landing-page .process-step-body { font-size: 13px; color: rgba(7,15,89,0.55); }

/* ── WORKS ── */
.cases-section { background: var(--brand-bg); }
.case-study { margin-bottom: 80px; }
.case-study:last-child { margin-bottom: 0; }
.case-card { background: white; border-radius: 28px; overflow: hidden; border: 1px solid rgba(152,209,255,0.25); box-shadow: 0 4px 32px rgba(7,15,89,0.07); }
.case-header { display: grid; grid-template-columns: 1fr 2fr; min-height: 360px; }
.case-cover { background: var(--brand-dark); position: relative; overflow: hidden; min-height: 320px; }
.case-cover-num { position: absolute; bottom: 32px; left: 32px; font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 120px; font-weight: 800; color: rgba(244,250,255,0.05); line-height: 1; }
.case-cover-label { position: absolute; top: 32px; left: 32px; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-light); opacity: 0.65; }
.case-cover-gradient { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(48,70,255,0.3) 0%, transparent 60%); }
.case-cover-title { position: absolute; bottom: 32px; left: 32px; right: 32px; font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 28px; font-weight: 800; color: var(--brand-bg); line-height: 1.2; }
.case-cover-tag { position: absolute; top: 32px; right: 32px; background: rgba(48,70,255,0.3); border: 1px solid rgba(152,209,255,0.3); border-radius: 100px; padding: 6px 14px; font-size: 11px; color: var(--brand-light); }
.case-meta { padding: 48px; display: flex; flex-direction: column; justify-content: space-between; }
.case-meta-label { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 12px; }
.case-meta-problem { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 20px; font-weight: 700; color: var(--brand-dark); margin-bottom: 16px; line-height: 1.3; }
.case-meta-body { font-size: 15px; font-weight: 300; color: rgba(7,15,89,0.65); line-height: 1.8; }
.case-body { padding: 0 48px 48px; }
.case-divider { height: 1px; background: rgba(152,209,255,0.3); margin-bottom: 48px; }
.case-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
.case-col-title { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 16px; }
.case-col-body { font-size: 14px; color: rgba(7,15,89,0.65); line-height: 1.75; }
.case-results { margin-top: 40px; background: var(--brand-dark); border-radius: 16px; padding: 32px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.case-result-num { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 36px; font-weight: 800; color: var(--brand-light); line-height: 1; margin-bottom: 6px; }
.case-result-label { font-size: 12px; color: rgba(244,250,255,0.5); line-height: 1.5; }
.industries-section { background: var(--brand-primary); padding: 80px 48px; }
.industries-inner { max-width: 1280px; margin: 0 auto; }
.industries-title { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244,250,255,0.55); margin-bottom: 40px; }
.industries-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.industry-tag { background: rgba(7,15,89,0.2); border: 1px solid rgba(244,250,255,0.2); border-radius: 100px; padding: 12px 24px; font-size: 14px; color: rgba(244,250,255,0.85); font-weight: 400; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.hero-stat-num { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 36px; font-weight: 800; color: var(--brand-light); line-height: 1; margin-bottom: 4px; }
.hero-stat-label { font-size: 12px; color: rgba(244,250,255,0.45); }

/* ── CONNECT ── */
.contact-section { background: var(--brand-bg); padding: 112px 48px; }
.contact-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.form-label-main { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 16px; display: block; }
.form-title { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-weight: 800; font-size: clamp(28px, 3vw, 40px); color: var(--brand-dark); margin-bottom: 12px; }
.form-sub { font-size: 15px; font-weight: 300; color: rgba(7,15,89,0.6); line-height: 1.7; margin-bottom: 48px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(7,15,89,0.5); display: block; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: white; border: 1.5px solid rgba(152,209,255,0.4); border-radius: 10px; padding: 14px 18px; font-family: 'Poppins', sans-serif; font-size: 15px; color: var(--brand-dark); transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--brand-primary); box-shadow: 0 0 0 4px rgba(48,70,255,0.08); }
.form-group textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23070f59' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-submit { background: var(--brand-primary); color: var(--brand-bg); border: none; cursor: pointer; padding: 16px 40px; border-radius: 10px; font-size: 15px; font-weight: 500; font-family: 'Poppins', sans-serif; width: 100%; margin-top: 8px; transition: background 0.2s, transform 0.2s; }
.form-submit:hover { background: #1e30d4; transform: translateY(-2px); }
.form-note { font-size: 12px; color: rgba(7,15,89,0.4); text-align: center; margin-top: 12px; line-height: 1.5; }
.form-success { display: none; text-align: center; padding: 64px 32px; }
.form-success.visible { display: block; }
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: rgba(48,70,255,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.success-icon svg { width: 36px; height: 36px; fill: none; stroke: var(--brand-primary); stroke-width: 2; stroke-linecap: round; }
.success-title { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 24px; font-weight: 800; color: var(--brand-dark); margin-bottom: 12px; }
.success-body { font-size: 15px; color: rgba(7,15,89,0.6); line-height: 1.7; }
.info-card { background: var(--brand-dark); border-radius: 24px; padding: 48px; margin-bottom: 24px; position: relative; overflow: hidden; }
.info-card::before { content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(48,70,255,0.25) 0%, transparent 70%); }
.info-card-label { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-light); opacity: 0.6; margin-bottom: 20px; position: relative; z-index: 1; }
.info-card-title { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 22px; font-weight: 800; color: var(--brand-bg); margin-bottom: 12px; position: relative; z-index: 1; }
.info-card-body { font-size: 14px; font-weight: 300; color: rgba(244,250,255,0.55); line-height: 1.75; position: relative; z-index: 1; }
.info-contact-list { list-style: none; margin-top: 24px; position: relative; z-index: 1; }
.info-contact-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.info-contact-list li:last-child { margin-bottom: 0; }
.info-contact-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(152,209,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-contact-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--brand-light); stroke-width: 1.8; stroke-linecap: round; }
.info-contact-label { font-size: 11px; color: rgba(244,250,255,0.4); margin-bottom: 2px; }
.info-contact-value { font-size: 14px; color: rgba(244,250,255,0.8); }
.info-contact-value a { color: inherit; transition: color 0.2s; }
.info-contact-value a:hover { color: var(--brand-light); }
.social-card { background: white; border-radius: 20px; padding: 32px; border: 1px solid rgba(152,209,255,0.25); box-shadow: 0 4px 24px rgba(7,15,89,0.06); }
.social-card-label { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 20px; }
.social-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.social-link { display: flex; align-items: center; gap: 12px; padding: 16px; border: 1px solid rgba(152,209,255,0.3); border-radius: 12px; transition: border-color 0.2s, background 0.2s; }
.social-link:hover { border-color: var(--brand-primary); background: rgba(48,70,255,0.03); }
.social-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--brand-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.social-icon svg { width: 18px; height: 18px; fill: var(--brand-light); }
.social-name { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 14px; font-weight: 700; color: var(--brand-dark); }
.social-handle { font-size: 12px; color: rgba(7,15,89,0.5); }

/* ── ADS LANDING ── */
.landing-page .hero { padding: 80px 48px 0; min-height: auto; display: block; }
.landing-page .hero .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; max-width: 1200px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(48,70,255,0.2); border: 1px solid rgba(48,70,255,0.4); border-radius: 100px; padding: 8px 16px; font-size: 12px; color: var(--brand-light); font-weight: 500; margin-bottom: 32px; }
.hero-eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-light); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);}50%{opacity:0.5;transform:scale(0.85);} }
.hero-left { padding-bottom: 80px; }
.hero-trust { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(244,250,255,0.5); }
.trust-check { width: 20px; height: 20px; border-radius: 50%; background: rgba(48,70,255,0.25); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--brand-light); flex-shrink: 0; }
.hero-form { background: white; border-radius: 24px 24px 0 0; padding: 48px; box-shadow: 0 -8px 60px rgba(7,15,89,0.2); }
.form-offer { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 8px; }
.form-price { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 40px; font-weight: 800; color: var(--brand-dark); line-height: 1; margin-bottom: 4px; }
.form-price-note { font-size: 13px; color: rgba(7,15,89,0.45); margin-bottom: 16px; }
.landing-page .form-group { margin-bottom: 14px; }
.landing-page .form-group label { font-size: 11px; color: rgba(7,15,89,0.45); }
.landing-page .form-group input, .landing-page .form-group select, .landing-page .form-group textarea { background: var(--brand-bg); border-radius: 8px; padding: 12px 16px; font-size: 14px; border: 1.5px solid rgba(152,209,255,0.45); }
.landing-page .form-group textarea { min-height: 100px; resize: none; }
.landing-page .form-submit { background: var(--brand-primary); color: white; width: 100%; padding: 16px; border-radius: 10px; font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 16px; font-weight: 700; border: none; cursor: pointer; margin-top: 8px; transition: background 0.2s, transform 0.2s; }
.landing-page .form-submit:hover { background: #1e30d4; transform: translateY(-2px); }
.form-guarantee { display: flex; gap: 10px; align-items: flex-start; margin-top: 16px; }
.form-guarantee-icon { font-size: 18px; flex-shrink: 0; }
.form-guarantee-text { font-size: 12px; color: rgba(7,15,89,0.5); line-height: 1.5; }
.landing-page .form-success { display: none; text-align: center; padding: 48px 24px; }
.landing-page .form-success.visible { display: block; }
.success-check { width: 72px; height: 72px; border-radius: 50%; background: rgba(48,70,255,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.success-check svg { width: 32px; height: 32px; fill: none; stroke: var(--brand-primary); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.proof-strip { background: white; border-bottom: 1px solid rgba(152,209,255,0.3); padding: 32px 48px; }
.proof-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; gap: 64px; align-items: center; flex-wrap: wrap; }
.proof-item { text-align: center; }
.proof-num { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 32px; font-weight: 800; color: var(--brand-primary); line-height: 1; }
.proof-label { font-size: 12px; color: rgba(7,15,89,0.5); margin-top: 4px; }
.benefits-section { background: var(--brand-bg); padding: 96px 48px; }
.benefits-inner { max-width: 1200px; margin: 0 auto; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.benefit-card { background: white; border-radius: 20px; padding: 40px; border: 1px solid rgba(152,209,255,0.25); box-shadow: 0 4px 20px rgba(7,15,89,0.05); }
.benefit-num { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 48px; font-weight: 800; color: rgba(48,70,255,0.1); line-height: 1; margin-bottom: 16px; }
.benefit-title { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 19px; font-weight: 800; color: var(--brand-dark); margin-bottom: 12px; }
.benefit-body { font-size: 14px; color: rgba(7,15,89,0.6); line-height: 1.75; }
.for-section { background: var(--brand-dark); padding: 96px 48px; }
.for-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.for-left h2 { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-weight: 800; font-size: clamp(28px, 3.5vw, 48px); color: var(--brand-bg); margin-bottom: 24px; }
.for-left p { font-size: 15px; font-weight: 300; color: rgba(244,250,255,0.6); line-height: 1.8; margin-bottom: 16px; }
.for-yes { margin-bottom: 32px; }
.for-yes-title { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-light); opacity: 0.65; margin-bottom: 16px; }
.for-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.for-item-icon { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.for-item-icon.yes { background: rgba(152,209,255,0.15); color: var(--brand-light); }
.for-item-icon.no { background: rgba(255,80,80,0.12); color: #ff8080; }
.for-item-text { font-size: 14px; color: rgba(244,250,255,0.65); line-height: 1.6; }
.landing-page .testimonials-section { background: var(--brand-bg); padding: 96px 48px; }
.landing-page .testimonials-inner { max-width: 1200px; margin: 0 auto; }
.landing-page .testimonials-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 48px; }
.testimonial-stars { color: var(--brand-primary); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-result { font-size: 11px; font-weight: 600; color: var(--brand-primary); margin-top: 2px; }
.final-cta { background: var(--brand-primary); padding: 80px 48px; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; border-radius: 50%; background: rgba(7,15,89,0.15); pointer-events: none; }
.final-cta-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.final-cta h2 { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-weight: 800; font-size: clamp(28px, 4vw, 52px); color: var(--brand-bg); line-height: 1.05; margin-bottom: 16px; }
.final-cta p { font-size: 17px; font-weight: 300; color: rgba(244,250,255,0.75); line-height: 1.7; margin-bottom: 40px; }
.final-cta-btn { background: var(--brand-bg); color: var(--brand-dark); padding: 18px 48px; border-radius: 12px; font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-size: 17px; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; transition: transform 0.2s, background 0.2s; }
.final-cta-btn:hover { background: var(--brand-light); transform: translateY(-3px); }
.final-cta-note { font-size: 13px; color: rgba(244,250,255,0.5); margin-top: 16px; }
.mini-footer { background: var(--brand-dark); padding: 32px 48px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.mini-footer-logo { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-weight: 800; font-size: 18px; color: var(--brand-bg); letter-spacing: -0.04em; }
.mini-footer-logo span { color: var(--brand-light); }
.mini-footer-links { display: flex; gap: 24px; }
.mini-footer-links a { font-size: 13px; color: rgba(244,250,255,0.45); transition: color 0.2s; }
.mini-footer-links a:hover { color: var(--brand-bg); }
.mini-footer-copy { font-size: 12px; color: rgba(244,250,255,0.3); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo-wrap { display: none; }
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo-side { display: none; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-pull { position: static; }
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .method-banner-inner { grid-template-columns: 1fr; gap: 48px; }
  .intro-strip-inner, .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .challenges-grid, .bridge-grid { grid-template-columns: 1fr; }
  .hero-split { grid-template-columns: 1fr; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-right { border-left: none; border-top: 1px solid rgba(152,209,255,0.12); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .method-phase { grid-template-columns: 60px 1fr; gap: 24px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 48px; }
  .process-steps::before { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .case-header { grid-template-columns: 1fr; }
  .case-cols { grid-template-columns: 1fr 1fr; }
  .case-results { grid-template-columns: 1fr 1fr; }
  .testimonial-row { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .connect-page .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .landing-page .hero .hero-inner { grid-template-columns: 1fr; }
  .landing-page .hero { padding: 64px 32px 0; }
  .hero-left { padding-bottom: 40px; }
  .hero-form { border-radius: 24px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .for-inner { grid-template-columns: 1fr; gap: 48px; }
  .landing-page .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .landing-page .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .landing-page .process-steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { padding: 0 24px; }
  .section { padding: 72px 24px; }
  .hero { padding: 100px 24px 64px; }
  .page-hero { padding: 100px 24px 64px; }
  .method-grid, .who-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-section { padding: 64px 24px; }
  .cta-section { padding: 80px 24px; }
  footer { padding: 64px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .method-banner { padding: 64px 24px; }
  .method-banner-right { grid-template-columns: 1fr 1fr 1fr; }
  .intro-strip { padding: 48px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .featured-left, .featured-right { padding: 40px 32px; }
  .case-cols { grid-template-columns: 1fr; }
  .case-results { grid-template-columns: 1fr 1fr; }
  .case-meta, .case-body { padding: 32px; }
  .industries-section { padding: 64px 24px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .contact-section, .faq-section { padding: 72px 24px; }
  .connect-page .process-section { padding: 72px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .connect-page .process-steps { grid-template-columns: 1fr 1fr; }
  .landing-page .nav { padding: 0 24px; }
  .landing-page .hero { padding: 48px 24px 0; }
  .benefits-grid, .landing-page .testimonials-grid { grid-template-columns: 1fr; }
  .benefits-section, .for-section, .landing-page .testimonials-section, .landing-page .process-section, .final-cta { padding: 64px 24px; }
  .proof-strip { padding: 32px 24px; }
  .proof-strip-inner { gap: 32px; }
  .mini-footer { padding: 24px; flex-direction: column; text-align: center; }
}

/* ============================================================
   HERO REDESIGN — visual right column & decorative elements
   ============================================================ */

/* Dot-grid background */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(48,70,255,0.18) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

/* Third glow blob */
.hero-glow-3 {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(152,209,255,0.13) 0%, transparent 70%);
  top: 10%;
  right: -80px;
  pointer-events: none;
  z-index: 0;
}

/* Hero content entrance animation */
@keyframes heroContentIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content {
  animation: heroContentIn 0.7s ease both;
  animation-delay: 0.1s;
}

/* Right column container */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* ── N.U.M.B.E.R. Method Panel ── */
.hero-method-panel {
  background: rgba(7,15,89,0.72);
  border: 1px solid rgba(152,209,255,0.22);
  border-radius: 20px;
  padding: 28px 28px 20px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 48px rgba(7,15,89,0.45), 0 0 0 1px rgba(48,70,255,0.12);
  width: 100%;
  max-width: 420px;
}

.hmp-header {
  margin-bottom: 20px;
}

.hmp-eyebrow {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-light);
  opacity: 0.7;
  margin-bottom: 6px;
}

.hmp-panel-title {
  font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

/* Rows — staggered slide-in from right */
@keyframes hmpSlideIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hmp-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(152,209,255,0.08);
  cursor: default;
  animation: hmpSlideIn 0.45s ease both;
  animation-delay: calc(var(--i) * 0.07s + 0.3s);
  transition: background 0.2s;
  border-radius: 8px;
  padding-left: 6px;
  padding-right: 6px;
}

.hmp-row:last-of-type {
  border-bottom: none;
}

.hmp-row:hover {
  background: rgba(48,70,255,0.1);
}

.hmp-letter {
  font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
  text-align: center;
}

.hmp-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hmp-phase {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-light);
  opacity: 0.6;
}

.hmp-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(244,250,255,0.9);
  line-height: 1.3;
}

.hmp-bar {
  width: 3px;
  height: 28px;
  border-radius: 2px;
  background: rgba(48,70,255,0.35);
  transition: background 0.25s, box-shadow 0.25s;
}

.hmp-row:hover .hmp-bar {
  background: var(--brand-primary);
  box-shadow: 0 0 8px rgba(48,70,255,0.6);
}

.hmp-footer {
  margin-top: 16px;
  text-align: center;
}

.hmp-cta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-light);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.hmp-cta:hover {
  color: #fff;
}

/* ── Floating stat badges ── */
@keyframes hfsFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-9px); }
  100% { transform: translateY(0); }
}

.hero-stat-float {
  position: absolute;
  padding: 10px 16px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(7,15,89,0.3);
  animation: hfsFloat 4s ease-in-out infinite;
}

.hfs-1 {
  top: -18px;
  right: -22px;
  background: var(--brand-primary);
  animation-delay: 0s;
  box-shadow: 0 4px 24px rgba(48,70,255,0.45);
}

.hfs-2 {
  bottom: 28px;
  left: -28px;
  background: var(--brand-dark);
  border: 1px solid rgba(152,209,255,0.2);
  animation-delay: 1.8s;
}

.hfs-3 {
  bottom: -16px;
  right: 16px;
  background: var(--brand-dark);
  border: 1px solid rgba(152,209,255,0.2);
  animation-delay: 0.9s;
}

.hfs-num {
  font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hfs-lbl {
  font-size: 0.62rem;
  color: rgba(244,250,255,0.75);
  margin-top: 3px;
  white-space: nowrap;
}

/* Hide hero visual column on tablets and below */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
}

/* ── NAV DROPDOWN ── */
.has-dropdown { position: relative; }
.has-dropdown > a { display: inline-flex; align-items: center; gap: 4px; }
.has-dropdown > a::after { content: '▾'; font-size: 9px; opacity: 0.6; margin-top: 1px; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(7,15,89,0.2);
  border: 1px solid rgba(152,209,255,0.4);
  padding: 8px;
  width: 300px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
  z-index: 200;
}
.has-dropdown:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.nav-dropdown-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px; border-radius: 10px; transition: background 0.2s; color: var(--brand-dark); }
.nav-dropdown-item:hover { background: var(--brand-bg); }
.nav-dropdown-icon { width: 38px; height: 38px; border-radius: 9px; background: var(--brand-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.nav-dropdown-icon svg { width: 18px; height: 18px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.nav-dropdown-label { font-size: 13px; font-weight: 600; color: var(--brand-dark); margin-bottom: 3px; }
.nav-dropdown-desc { font-size: 11px; color: rgba(7,15,89,0.5); line-height: 1.45; }
.nav-dropdown-divider { height: 1px; background: rgba(152,209,255,0.3); margin: 4px 8px; }
.mobile-nav-sub { font-size: 18px !important; opacity: 0.65 !important; padding-left: 28px !important; }

/* ── OFFERINGS VERTICAL TABS ── */
.vertical-tabs { display: flex; gap: 12px; margin-bottom: 48px; }
.vertical-tab { padding: 10px 24px; border-radius: 100px; font-size: 14px; font-weight: 500; cursor: pointer; border: 1.5px solid rgba(48,70,255,0.25); color: rgba(7,15,89,0.6); background: white; transition: all 0.2s; }
.vertical-tab.active, .vertical-tab:hover { background: var(--brand-primary); color: white; border-color: var(--brand-primary); }
