/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { background: #0A0A0A; font-family: 'DM Sans', sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #0A0A0A; }
::-webkit-scrollbar-thumb { background: #1A47E8; border-radius: 2px; }
::selection { background: #1A47E8; color: #fff; }

/* ── TOKENS ── */
:root {
  --blue:   #1A47E8; --yellow: #C8E000; --black:  #0A0A0A;
  --warm:   #F2F0EB; --white:  #FFFFFF; --ink:    #0C0C0C;
  --body:   #4A4A4A; --muted:  #888888; --rule:   #E0DDD8;
  --wa:     #25D366; --wrap:   1200px;
}

/* ── LAYOUT ── */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 56px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; }

/* ── TYPOGRAPHY ── */
.display { margin-bottom:15px; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em; line-height: 0.93; }
.mono    { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.body-d  { font-size: 16px; line-height: 1.8; color: #aaa; }
.body-l  { font-size: 16px; line-height: 1.8; color: var(--body); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.85s cubic-bezier(.16,1,.3,1), transform 0.85s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.07s; }
.reveal-d2 { transition-delay: 0.14s; }
.reveal-d3 { transition-delay: 0.21s; }
.reveal-d4 { transition-delay: 0.28s; }

/* ── ANIMATIONS ── */
@keyframes pulse { 0%,100%{opacity:1;box-shadow:0 0 0 3px rgba(34,197,94,0.2);} 50%{opacity:0.5;box-shadow:0 0 0 7px rgba(34,197,94,0.04);} }
@keyframes ticker { from{transform:translateX(0);} to{transform:translateX(-25%);} }
@keyframes drawArc { from { stroke-dashoffset: 800; opacity: 0; } to { stroke-dashoffset: 0; opacity: 1; } }
@keyframes ballMove { 0% { offset-distance: 0%; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { offset-distance: 100%; opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } @keyframes ticker { from{transform:translateX(0);} to{transform:translateX(0);} } }

/* ── NAV ── */
/* ── NAV ── */
#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: 64px; transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s; border-bottom: 1px solid transparent; }
#nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 100%; width: 100%; }
#nav.solid-dark  { background: rgba(10,10,10,0.95); backdrop-filter: blur(20px); border-color: rgba(255,255,255,0.05); }
#nav.solid-light { background: rgba(242,240,235,0.96); backdrop-filter: blur(20px); border-color: var(--rule); }
#nav.solid-light .nav-link { color: #888; }
#nav.solid-light .logo-img {
    height: 63px;
}
#nav.solid-light .nav-link:hover { color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #555; font-weight: 500; transition: color 0.2s; }
.nav-link:hover { color: #F2F0EB; }
.wa-btn-sm { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: var(--wa); color: #fff; border-radius: 3px; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 3px 14px rgba(37,211,102,0.25); }
.wa-btn-sm:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.wa-btn-lg { display: inline-flex; align-items: center; gap: 12px; padding: 18px 38px; background: var(--wa); color: #fff; border-radius: 3px; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 18px; letter-spacing: 0.06em; text-transform: uppercase; transition: transform 0.25s cubic-bezier(.16,1,.3,1), box-shadow 0.25s; box-shadow: 0 4px 18px rgba(37,211,102,0.28); }
.wa-btn-lg:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,0.4); }

/* Hamburger */
#nav-mobile { display: none; align-items: center; gap: 10px; }
#hamburger { background: none; border: none; color: #F2F0EB; padding: 8px; transition: color 0.3s; }
#nav.solid-light #hamburger { color: var(--ink); }
#mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 199; background: rgba(242,240,235,0.98); border-bottom: 1px solid var(--rule); backdrop-filter: blur(16px); padding: 28px 32px 32px; flex-direction: column; gap: 20px; }
#mobile-menu.open { display: flex; }
.mobile-link { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 26px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--ink); }

/* ── HERO ── */
#hero { position: relative; height: 100vh; min-height: 680px; display: flex; align-items: center; overflow: hidden; background: var(--black); }
#hero-bg { position: absolute; inset: -22% -5%; background-image: url('./hero-bg.webp'); background-size: cover; background-position: center 30%; filter: brightness(0.2) saturate(0.6); will-change: transform; }
#hero-glow1 { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 20% 70%, rgba(34,197,94,0.07) 0%, transparent 60%); }
#hero-glow2 { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 10% 40%, rgba(26,71,232,0.1) 0%, transparent 55%); }
#hero-fade  { position: absolute; bottom: 0; left: 0; right: 0; height: 25%; background: linear-gradient(to top, var(--warm) 0%, transparent 100%); }
#hero-bar   { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, var(--blue), var(--yellow)); }
#hero-content { position: relative; z-index: 2; width: 100%; padding-top: 60px; }
#hero-headline { will-change: transform; }
.hero-h1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em; line-height: 0.9; font-size: clamp(68px, 11vw, 137px); }
#hero-sub { margin-top: 15px; max-width: 520px; will-change: transform; }
.hero-bridge-1 { font-size: 18px; line-height: 1.6; color: #bbb; margin-bottom: 6px; }
.hero-bridge-2 { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.4); margin-bottom: 10px; }
.hero-hinglish  { font-size: 13px; font-style: italic; color: rgba(255,255,255,0.22); margin-bottom: 36px; letter-spacing: 0.01em; }
#hero-arc { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
#scroll-hint { position: absolute; right: 56px; bottom: 48px; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px; pointer-events: none; transition: opacity 0.3s; }
#scroll-hint span { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: #333; writing-mode: vertical-rl; }
#scroll-hint div  { width: 1px; height: 48px; background: linear-gradient(to bottom, #333, transparent); }

/* ── TICKER ── */
#ticker { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 12px 0; overflow: hidden; background: var(--warm); }
#ticker-track { display: inline-flex; animation: ticker 36s linear infinite; white-space: nowrap; }
.ticker-item { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: #7c786f; padding-right: 48px; }
.ticker-dot { color: var(--blue); margin-left: 48px; }

/* ── SECTION COMMON ── */
.section-warm  { background: var(--warm);  padding: 120px 0; }
.section-white { background: var(--white); padding: 120px 0; border-top: 1px solid var(--rule); }
.section-dark  { background: var(--black); padding: 160px 0; position: relative; overflow: hidden; }
.label-blue { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); display: block; margin-bottom: 20px; }
.label-muted { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 14px; }
.rule-h { border: none; border-top: 1px solid var(--rule); margin: 28px 0; }

/* ── WHAT WE DO ── */
.pillar-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--rule); margin-top: 56px; }
.pillar { background: var(--warm); padding: 36px 32px; }
.pillar-accent { width: 32px; height: 3px; border-radius: 2px; margin-bottom: 24px; }
.pillar-n { font-weight:600; font-family: 'DM Mono', monospace; font-size: 35px; color: var(--muted); letter-spacing: 0.1em; display: block; margin-bottom: 10px; }
.pillar-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 20px; text-transform: uppercase; letter-spacing: 0.01em; color: var(--ink); margin-bottom: 10px; line-height: 1.1; }
.pillar-body  { font-size: 14px; line-height: 1.75; color: var(--body); }
.img-full { position: relative; height: 360px; border-radius: 4px; overflow: hidden; margin-top: 48px; }
.img-full img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.img-label { position: absolute; bottom: 20px; left: 24px; font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); background: rgba(242,240,235,0.92); padding: 6px 12px; border-radius: 2px; }

/* ── FIELD TRIAL ── */
.live-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.25); border-radius: 2px; margin-bottom: 24px; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; display: block; animation: pulse 2s infinite; }
.live-text { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: #16a34a; }
.test-list { margin: 0; padding: 0; list-style: none; }
.test-list li { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--rule); font-size: 14px; color: var(--body); }
.test-list li:last-child { border-bottom: none; }
.test-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.trial-img-wrap { position: relative; border-radius: 4px; overflow: hidden; height: 280px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.trial-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.trial-badge { position: absolute; bottom: 12px; left: 12px; background: rgba(10,10,10,0.88); backdrop-filter: blur(8px); border-radius: 3px; padding: 7px 14px; display: flex; align-items: center; gap: 8px; }
.trial-badge-text { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: #22c55e; }
.replace-tag { position: absolute; top: 10px; right: 10px; background: rgba(10,10,10,0.7); border: 1px dashed rgba(26,71,232,0.5); border-radius: 3px; padding: 4px 10px; font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.1em; color: rgba(26,71,232,0.8); text-transform: uppercase; }

/* ── VIDEO SLOT ── */
.video-slot { position: relative; aspect-ratio: 16/9; background: #0C0C0C; border-radius: 4px; overflow: hidden; cursor: pointer; border: 1px solid rgba(255,255,255,0.06); margin-top: 14px; }
.video-scanlines { position: absolute; inset: 0; z-index: 2; pointer-events: none; background-image: repeating-linear-gradient(0deg,transparent,transparent 3px,rgba(0,0,0,0.06) 3px,rgba(0,0,0,0.06) 4px); }
.video-corner { position: absolute; width: 16px; height: 16px; z-index: 3; }
.video-corner.tl { top:10px;left:10px; border-top:2px solid var(--blue);border-left:2px solid var(--blue); }
.video-corner.tr { top:10px;right:10px; border-top:2px solid var(--blue);border-right:2px solid var(--blue); }
.video-corner.bl { bottom:10px;left:10px; border-bottom:2px solid var(--blue);border-left:2px solid var(--blue); }
.video-corner.br { bottom:10px;right:10px; border-bottom:2px solid var(--blue);border-right:2px solid var(--blue); }
.video-rec { position: absolute; top:12px; left:0; right:0; text-align:center; z-index:3; font-family:'DM Mono',monospace; font-size:10px; letter-spacing:0.14em; color:var(--blue); text-transform:uppercase; }
.video-play { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; z-index:3; }
.play-circle { width:60px; height:60px; border-radius:50%; background:rgba(26,71,232,0.18); border:2px solid rgba(26,71,232,0.4); display:flex; align-items:center; justify-content:center; transition:all 0.3s; }
.play-circle:hover { background:var(--blue); border-color:var(--blue); box-shadow:0 0 40px rgba(26,71,232,0.5); }
.play-triangle { width:0; height:0; border-top:10px solid transparent; border-bottom:10px solid transparent; border-left:17px solid var(--blue); margin-left:3px; transition:border-left-color 0.3s; }
.play-circle:hover .play-triangle { border-left-color:#fff; }
.video-bar { position:absolute; bottom:0; left:0; right:0; padding:12px 16px; background:linear-gradient(to top,rgba(0,0,0,0.85),transparent); z-index:3; display:flex; align-items:center; gap:8px; }
.video-progress-track { flex:1; height:3px; background:rgba(255,255,255,0.08); border-radius:2px; overflow:hidden; }
.video-progress-fill  { width:38%; height:100%; background:var(--blue); border-radius:2px; }
.video-time { font-family:'DM Mono',monospace; font-size:9px; color:rgba(255,255,255,0.35); letter-spacing:0.06em; }
.video-bg-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0.15; }

/* ── WHO WE SERVE ── */
.tabs { display: flex; gap: 3px; margin-top: 48px; }
.tab { flex: 1; padding: 13px 16px; border: none; border-radius: 3px 3px 0 0; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 15px; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; background: var(--white); color: var(--muted); transition: all 0.22s; }
.tab:hover:not(.active) { background: var(--rule); }
.tab.active {     background: rgb(26, 71, 232); color: #fff; }
.tab[data-audience="players"].active { color: var(--black); }
.tab-panel { background: var(--white); border: 1px solid var(--rule); padding: 52px 48px; display: none; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.tab-panel.active { display: grid; }
.anxiety { font-size: 14px; color: #999; font-style: italic; margin-bottom: 24px; line-height: 1.6; }
.panel-headline { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(28px,3vw,46px); text-transform: uppercase; letter-spacing: -0.01em; line-height: 0.93; color: var(--ink); margin-bottom: 18px; }
.panel-sub { font-size: 15px; line-height: 1.8; color: var(--body); margin-bottom: 28px; }
.panel-points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.panel-points li { display: flex; gap: 14px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid var(--rule); font-size: 15px; line-height: 1.6; color: var(--body); }
.panel-points li:last-child { border-bottom: none; }
.point-dot { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 3px; }
.point-dot-inner { width: 5px; height: 5px; border-radius: 50%; }

/* ── HOW IT WORKS ── */
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 24px; padding-bottom: 28px; margin-bottom: 28px; border-bottom: 1px solid var(--rule); cursor: default; }
.step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.step-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 52px; line-height: 1; min-width: 64px; color: var(--rule); transition: color 0.3s cubic-bezier(.16,1,.3,1); user-select: none; flex-shrink: 0; }
.step:hover .step-num { color: var(--blue); }
.step-body { padding-top: 8px; }
.step-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 19px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--ink); margin-bottom: 6px; line-height: 1.15; }
.step-detail { font-size: 13px; line-height: 1.7; color: var(--muted); }

/* ── CTA / CONTACT ── */
#cta-bg { position: absolute; inset: -25%; background-image: url('match-crowd.webp'); background-size: cover; background-position: center; filter: brightness(0.25) saturate(0.4); will-change: transform; }
#cta-glow { position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 50%, rgba(26,71,232,0.14) 0%, transparent 65%); }
#cta-fade  { position: absolute; inset: 0; background: linear-gradient(to bottom, var(--black) 0%, transparent 15%, transparent 85%, var(--black) 100%); }
#cta-content { position: relative; z-index: 2; max-width: 760px; }
.cta-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(26,71,232,0.40); border: 1px solid rgba(26,71,232,0.3); border-radius: 2px; margin-bottom: 32px; }
.cta-badge-text { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #d4eb00; }
.cta-contacts { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 14px; }
.cta-contact-link { font-size: 13px; color: #a4a4a4; transition: color 0.2s; }
.cta-contact-link:hover { color: #F2F0EB; }
.cta-sep { color: #222; }
.mb-2{margin-bottom:15px}
/* ── FOOTER ── */
#footer { border-top: 1px solid rgba(255,255,255,0.05); padding: 32px 0; background: var(--black); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-center { text-align: center; }
.footer-mono { font-family: 'DM Mono', monospace; font-size: 10px; color: #444; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 3px; }
.footer-copy  { font-size: 11px; color: #444; }
.footer-email { font-size: 12px; color: #444; transition: color 0.2s; }
.footer-email:hover { color: #F2F0EB; }

/* ══════════════════════════════════════════════════════════════
   EXTRACTED INLINE CLASSES (Replaces inline styles in HTML)
══════════════════════════════════════════════════════════════ */
.logo-img { height: 70px; width: auto; }
.wa-btn-mobile { margin-top: 8px; align-self: flex-start; }
.text-light { color: #F2F0EB; }
.text-blue { color: #1A47E8; }
.text-yellow { color: var(--yellow); }
.text-ink { color: var(--ink); }
.text-muted { color: var(--muted); }
.text-body { color: var(--body); }
.text-gray { color: #666; }
.text-aaa { color: #aaa; }
.fw-500 { font-weight: 500; }
.bg-blue { background: var(--blue); }
.bg-yellow { background: var(--yellow); }
.bg-orange { background: #D97706; }
.pt-8 { padding-top: 8px; }
.pt-30{ padding-top: 30px; }
.mt-55{margin-top:55px}
.mb-0 { margin-bottom: 0; }
.mb-14 { margin-bottom: 14px; }
.mb-18 { margin-bottom: 18px; }
.mb-24 { margin-bottom: 24px; }
.mb-28 { margin-bottom: 28px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.max-w-320 { max-width: 320px; }
.max-w-420 { max-width: 420px; }
.align-start { align-items: flex-start; }
.grid-2-end { margin-bottom: 0; align-items: flex-end; }
.border-top-rule { border-top: 1px solid var(--rule); }
.relative-z2 { position: relative; z-index: 2; }
.footer-logo { height: 25px; width: auto; }

/* Font Utilities */
.fs-14-lh-175 { font-size: 14px; line-height: 1.75; }
.fs-15-lh-18 { font-size: 15px; line-height: 1.8; }
.fs-18-lh-18 { font-size: 18px; line-height: 1.8; }
.fs-18 { font-size: 18px; }

/* Display Typography */
.display-md { font-size: clamp(40px,5vw,70px); color: var(--ink); }
.display-sm { font-size: clamp(38px,4.5vw,62px); color: var(--ink); }
.display-lg-light { font-size: clamp(50px,7vw,100px); color: #F2F0EB; }
.display-lg-yellow { font-size: clamp(50px,7vw,100px); color: var(--yellow); }

/* Overlays & Elements */
.img-overlay-1 { position: absolute; inset: 0; background: linear-gradient(to right, rgba(242,240,235,0.5) 0%, transparent 40%); }
.img-overlay-2 { position: absolute; bottom: 0; left: 0; right: 0; height: 35%; background: linear-gradient(to top, var(--warm), transparent); }
.tab-turf { border-top: 3px solid var(--blue); }
.tab-org { border-top: 3px solid #D97706; }
.tab-players { border-top: 3px solid var(--yellow); }

/* Dots */
.dot-bg-blue { background: rgba(26,71,232,0.12); border: 1px solid rgba(26,71,232,0.35); }
.dot-bg-orange { background: rgba(217,119,6,0.12); border: 1px solid rgba(217,119,6,0.35); }
.dot-bg-yellow { background: rgba(200,224,0,0.15); border: 1px solid rgba(200,224,0,0.4); }
.dot-inner-blue { background: var(--blue); }
.dot-inner-orange { background: #D97706; }
.dot-inner-yellow { background: #9aaa00; }

/* Contact Form Components */
.contact-info-col { display: flex; flex-direction: column; gap: 14px; }
.contact-info-item { display: flex; align-items: center; gap: 12px; }
.contact-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(26,71,232,0.08); border: 1px solid rgba(26,71,232,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-link { font-size: 15px; color: var(--body); transition: color 0.2s; }
.contact-link:hover { color: var(--blue); }

.form-wrap-box { background: var(--white); border: 1px solid var(--rule); border-radius: 4px; padding: 40px; }
.form-success-box { display: none; text-align: center; padding: 24px; background: rgba(34,197,94,0.05); border: 1px solid rgba(34,197,94,0.2); border-radius: 4px; margin-bottom: 28px; }
.success-icon-box { width: 52px; height: 52px; border-radius: 50%; background: rgba(34,197,94,0.1); border: 2px solid rgba(34,197,94,0.4); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.success-heading { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 24px; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; letter-spacing: 0.02em; }
.success-subtext { font-size: 14px; color: var(--muted); line-height: 1.6; }

.form-heading { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 20px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink); margin-bottom: 28px; }
.form-group-col { display: flex; flex-direction: column; gap: 18px; }
.form-label { display: block; font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }

.form-input, .form-select, .form-textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--rule); border-radius: 3px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--ink); background: var(--warm); outline: none; transition: border-color 0.2s; }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--blue); }
.form-input.wa-input:focus { border-color: #1a47e8; }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 90px; }

.form-btn { width: 100%; padding: 15px; background: var(--blue); color: #fff; border: none; border-radius: 3px; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 16px; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: opacity 0.2s, transform 0.2s; }
.form-btn:hover { opacity: 0.88; }
.form-footer-text { font-size: 11px; color: var(--muted); text-align: center; margin-top: -4px; }
.hidden-honeypot { position: absolute; left: -9999px; display: none !important; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) { .nav-links { display: none; } #nav-mobile { display: flex; } }
@media (max-width: 768px) { #hero-arc { 
            transform: scale(1.3) translateY(30px);
        margin-top: 40%;
  } .footer-inner{justify-content: center;} #scrollToTopBtn { bottom: 24px; right: 24px; width: 44px; height: 44px; } .wrap { padding: 0 24px; } .grid-2, .grid-3, .pillar-grid, .tab-panel { grid-template-columns: 1fr !important; gap: 36px !important; } .section-warm, .section-white { padding: 72px 0; } .section-dark { padding: 96px 0; } #hero-content { padding-top: 40px; } .hero-h1 { font-size: clamp(52px, 14vw, 80px) !important; } #scroll-hint { display: none; } .tabs { flex-direction: column; gap: 2px; } .tab { border-radius: 3px; } .tab-panel { padding: 32px 24px; } .img-full { height: 240px; } #cta-content { max-width: 100%; } .form-2col { grid-template-columns: 1fr !important; } }
@media (max-width: 480px) { .section-warm, .section-white { padding: 52px 0; } .section-dark { padding: 72px 0; } }

/* ── SCROLL TO TOP BUTTON ── */
#scrollToTopBtn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 100;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s, background 0.3s;
  box-shadow: 0 4px 16px rgba(26,71,232,0.3);
}
#scrollToTopBtn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scrollToTopBtn:hover {
  background: #1134b5;
  transform: translateY(-3px);
}