/* =====================================================================
   Viteaero — premium / cinematic build
   Mobile-first, accessible. Motion is layered on by GSAP (main.js); if GSAP
   never loads, all content stays visible (no hidden states baked into CSS).
   Palette: navy #34495E · ink #1E2A38 · steel #3E6CA8 · grey #F5F6F8
   ===================================================================== */

:root {
  --navy: #34495E;
  --navy-dark: #2A3B4D;
  --ink: #1E2A38;
  --steel: #3E6CA8;
  --steel-dark: #335A8C;
  --steel-light: #6E9BD4;
  --grey: #F5F6F8;
  --line: #E3E7EC;
  --muted: #5A6B7B;
  --white: #FFFFFF;

  --maxw: 1180px;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(30, 42, 56, 0.08);
  --shadow-lg: 0 28px 60px rgba(30, 42, 56, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0; font-family: var(--font); color: var(--ink); background: var(--white);
  line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--steel); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { color: var(--navy); line-height: 1.1; letter-spacing: -0.025em; margin: 0 0 0.4em; }
h1 { font-size: clamp(2.3rem, 5.6vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 800; }
.big-h2 { font-size: clamp(1.9rem, 4.4vw, 3.2rem); font-weight: 800; }
h3 { font-size: 1.18rem; font-weight: 700; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
:focus-visible { outline: 3px solid var(--steel); outline-offset: 3px; border-radius: 4px; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 300; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

.eyebrow { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; font-weight: 700; color: var(--steel); margin: 0 0 0.7rem; }
.lead { font-size: 1.14rem; color: var(--muted); max-width: 62ch; }

/* word-split helper (GSAP animates .word__in) */
.word { display: inline-block; overflow: hidden; vertical-align: top; }
.word__in { display: inline-block; will-change: transform; }

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; position: relative;
  font-weight: 600; font-size: 0.98rem; line-height: 1; padding: 14px 24px; border-radius: 12px;
  border: 1.5px solid transparent; cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .25s var(--ease), background .25s, box-shadow .25s, color .25s, border-color .25s;
  will-change: transform;
}
.btn:hover { text-decoration: none; }
.btn--lg { padding: 17px 30px; font-size: 1.05rem; }
.btn--primary { background: var(--steel); color: #fff; box-shadow: 0 8px 22px rgba(62,108,168,.32); }
.btn--primary:hover { background: var(--steel-dark); box-shadow: 0 14px 30px rgba(62,108,168,.42); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--steel); color: var(--steel); }

/* ----------------------------- Scroll progress ----------------------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 250;
  background: linear-gradient(90deg, var(--steel), var(--steel-light));
  transform: scaleX(0); transform-origin: 0 50%;
}

/* ----------------------------- Custom cursor ----------------------------- */
.cursor, .cursor-dot { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block; position: fixed; top: 0; left: 0; width: 38px; height: 38px; margin: -19px 0 0 -19px;
    border: 1.5px solid rgba(62,108,168,.55); border-radius: 50%; pointer-events: none; z-index: 400;
    transition: width .25s var(--ease), height .25s var(--ease), margin .25s var(--ease),
                background .25s, border-color .25s; mix-blend-mode: normal;
  }
  .cursor-dot {
    display: block; position: fixed; top: 0; left: 0; width: 6px; height: 6px; margin: -3px 0 0 -3px;
    background: var(--steel); border-radius: 50%; pointer-events: none; z-index: 401;
  }
  .cursor.is-hover { width: 60px; height: 60px; margin: -30px 0 0 -30px; background: rgba(62,108,168,.10); border-color: rgba(62,108,168,.8); }
  body.has-cursor { cursor: none; }
  body.has-cursor a, body.has-cursor button, body.has-cursor input, body.has-cursor select, body.has-cursor textarea, body.has-cursor label { cursor: none; }
}

/* ============================ NAV ============================ */
.nav {
  position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(30,42,56,.06); }
.nav__inner { display: flex; align-items: center; gap: 20px; height: 74px; }
.nav__brand { display: flex; align-items: center; }
.nav__brand img { height: 38px; width: auto; }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a { color: var(--ink); font-weight: 500; font-size: 0.95rem; position: relative; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--steel); transition: width .3s var(--ease); }
.nav__links a:hover { color: var(--steel); text-decoration: none; }
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: 6px; }
.nav__tag { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); padding-left: 16px; border-left: 1px solid var(--line); white-space: nowrap; }
@media (max-width: 1040px) { .nav__tag { display: none; } }
.nav__toggle { display: none; }
.nav__mobile { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 22px; border-bottom: 1px solid var(--line); background: #fff; }
.nav__mobile a { color: var(--ink); font-weight: 500; padding: 12px 0; border-bottom: 1px solid var(--line); }
.nav__mobile a:hover { text-decoration: none; }
.nav__mobile .btn { margin-top: 12px; border-bottom: none; }

/* ============================ SECTIONS ============================ */
.section { padding: 100px 0; position: relative; }
.section--alt { background: var(--grey); }
.section__head { max-width: 760px; margin-bottom: 50px; }

/* ============================ HERO ============================ */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; padding: 80px 0 120px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(20px); opacity: .55; }
.orb--1 { width: 540px; height: 540px; top: -120px; right: -80px;
  background: radial-gradient(circle at 30% 30%, rgba(62,108,168,.30), rgba(62,108,168,0) 70%); }
.orb--2 { width: 460px; height: 460px; bottom: -160px; left: -120px;
  background: radial-gradient(circle at 50% 50%, rgba(52,73,94,.26), rgba(52,73,94,0) 70%); }
.grid-lines { position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px; opacity: .35;
  mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 65%); }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; width: 100%; }
.hero__title { margin-bottom: 0.5em; }
.hero__sub { font-size: 1.24rem; color: var(--muted); max-width: 56ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 18px; }
.hero__tagline { font-weight: 600; color: var(--navy); font-size: 0.98rem; }
.hero__tagline::before { content: "→ "; color: var(--steel); }

.hero__panel { display: flex; justify-content: center; }
.panel { width: 100%; max-width: 430px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; }
.panel__head { display: flex; align-items: center; gap: 10px; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.panel__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--steel); box-shadow: 0 0 0 4px rgba(62,108,168,.15); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(62,108,168,.15); } 50% { box-shadow: 0 0 0 8px rgba(62,108,168,.04); } }
.panel__title { font-weight: 700; color: var(--navy); }
.panel__live { margin-left: auto; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #1f9d6b; }
.panel__rows { list-style: none; margin: 0; padding: 8px 0; }
.panel__rows li { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 11px 18px; font-size: 0.86rem; color: var(--ink); border-bottom: 1px solid #F0F2F5; }
.panel__rows li:last-child { border-bottom: none; }
.panel__rows em { margin-left: auto; font-style: normal; color: var(--muted); font-size: 0.8rem; }
.tag { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 4px 8px; border-radius: 6px; }
.tag--ok { background: #E6F4EC; color: #1f9d6b; }
.tag--warn { background: #FDEFE0; color: #C9740B; }
.tag--flag { background: #FBE9EA; color: #C53B47; }
.panel__foot { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }
.panel__foot div { padding: 14px; text-align: center; border-right: 1px solid var(--line); }
.panel__foot div:last-child { border-right: none; }
.panel__foot strong { display: block; font-size: 1.3rem; color: var(--navy); }
.panel__foot span { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

.scroll-cue { position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted); }
.scroll-cue:hover { text-decoration: none; color: var(--steel); }
.scroll-cue__txt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 600; }
.scroll-cue__line { width: 1px; height: 46px; background: linear-gradient(var(--steel), transparent); position: relative; overflow: hidden; }
.scroll-cue__line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--steel); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0% { top: -50%; } 100% { top: 100%; } }

/* ============================ STATS STRIP ============================ */
.stats { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: #fff; padding: 56px 0; position: relative; overflow: hidden; }
.stats::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 85% 0%, rgba(110,155,212,.18), transparent 60%); }
.stats__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat__num { display: block; font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900; letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff, #cfe0f5); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat__label { display: block; margin-top: 10px; font-size: 0.92rem; color: #b8c6d4; }
.stats .stat + .stat { position: relative; }

/* ============================ PROBLEM ============================ */
.pain-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pain-grid li { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 20px 22px; font-weight: 600; color: var(--navy); position: relative; padding-left: 46px; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.pain-grid li:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--steel); }
.pain-grid li::before { content: ""; position: absolute; left: 20px; top: 50%; width: 9px; height: 9px; transform: translateY(-50%) rotate(45deg); background: var(--steel); border-radius: 2px; }

/* ============================ PHOTO BANDS (parallax) ============================ */
.band { position: relative; min-height: 420px; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
.band__bg { position: absolute; inset: -12% 0; background-size: cover; background-position: center; will-change: transform; }
/* Aerial / top-down shots so no shipping-line names are legible. Swap URLs for your own photos. */
.band--port .band__bg { background-image: url('https://images.pexels.com/photos/1427107/pexels-photo-1427107.jpeg?auto=compress&cs=tinysrgb&w=1600'); }
.band--container .band__bg { background-image: url('assets/bg-container.jpg'); }
.band--ship .band__bg { background-image: url('https://images.pexels.com/photos/12530458/pexels-photo-12530458.jpeg?auto=compress&cs=tinysrgb&w=1600'); }
.band__overlay { position: relative; z-index: 1; width: 100%; padding: 90px 24px; text-align: center;
  background: linear-gradient(180deg, rgba(30,42,56,.58), rgba(30,42,56,.70)); }
.band__text { max-width: 920px; margin: 0 auto; color: #fff; font-weight: 800; font-size: clamp(1.6rem, 3.6vw, 2.7rem); line-height: 1.18; letter-spacing: -0.02em; text-shadow: 0 2px 24px rgba(0,0,0,.35); }

/* ============================ METHOD ============================ */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.steps__track { position: absolute; top: 21px; left: 8%; right: 8%; height: 3px; background: var(--line); border-radius: 3px; z-index: 0; }
.steps__fill { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--navy), var(--steel)); border-radius: 3px; }
.step { position: relative; z-index: 1; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); transition: transform .3s var(--ease), box-shadow .3s; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step__num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 13px; margin-bottom: 16px; background: linear-gradient(135deg, var(--navy), var(--steel)); color: #fff; font-weight: 800; font-size: 1.15rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ============================ SERVICES (cards) ============================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow); position: relative; transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card--featured { border-color: var(--steel); box-shadow: 0 22px 54px rgba(62,108,168,.2); }
.card--featured:hover { box-shadow: 0 30px 64px rgba(62,108,168,.3); }
.card__badge { position: absolute; top: -13px; left: 28px; background: var(--steel); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.card__head { margin-bottom: 14px; }
.card__tier { font-weight: 700; color: var(--steel); font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; margin: 6px 0 0; }
.card__outcome { color: var(--ink); font-weight: 500; }
.card__list { list-style: none; margin: 14px 0 24px; padding: 0; }
.card__list li { position: relative; padding: 8px 0 8px 26px; color: var(--muted); font-size: 0.94rem; border-bottom: 1px solid #F2F4F6; }
.card__list li:last-child { border-bottom: none; }
.card__list li::before { content: ""; position: absolute; left: 4px; top: 14px; width: 11px; height: 7px; border-left: 2px solid var(--steel); border-bottom: 2px solid var(--steel); transform: rotate(-45deg); }
.card__cta { margin-top: auto; align-self: flex-start; }

/* ============================ WHO IT'S FOR ============================ */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.fix-list { list-style: none; margin: 18px 0 0; padding: 0; }
.fix-list li { position: relative; padding: 13px 0 13px 32px; border-bottom: 1px solid var(--line); color: var(--ink); }
.fix-list li::before { content: ""; position: absolute; left: 0; top: 17px; width: 14px; height: 9px; border-left: 2.5px solid var(--steel); border-bottom: 2.5px solid var(--steel); transform: rotate(-45deg); }
.fit__panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; box-shadow: var(--shadow); }
.check-list { list-style: none; margin: 6px 0 22px; padding: 0; }
.check-list li { position: relative; padding: 11px 0 11px 30px; color: var(--ink); }
.check-list li::before { content: ""; position: absolute; left: 2px; top: 15px; width: 12px; height: 8px; border-left: 2.5px solid #1f9d6b; border-bottom: 2.5px solid #1f9d6b; transform: rotate(-45deg); }
.fit__not { background: var(--grey); border-left: 3px solid var(--steel); border-radius: 8px; padding: 16px 18px; font-size: 0.95rem; color: var(--muted); margin: 0; }
.fit__not strong { color: var(--navy); }

/* ============================ AI & AUTOMATION ============================ */
.ai-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ai-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow); transition: transform .3s var(--ease), box-shadow .3s; }
.ai-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ai-card h3 { margin-bottom: 8px; }
.ai-card h3::before { content: ""; display: block; width: 36px; height: 3px; border-radius: 3px; margin-bottom: 14px; background: linear-gradient(90deg, var(--navy), var(--steel)); }
.ai-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ============================ ABOUT ============================ */
.about { display: grid; grid-template-columns: 380px 1fr; gap: 52px; align-items: center; }
.about__media { width: 380px; height: 460px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); background: linear-gradient(150deg, var(--navy), var(--steel)); }
.about__media-img { width: 100%; height: 112%; margin-top: -6%; background-size: cover; background-position: center; will-change: transform; }
.about__lead { font-size: 1.18rem; color: var(--navy); font-weight: 600; }
.about__copy p { color: var(--muted); }
.about__position { color: var(--ink) !important; font-weight: 500; border-left: 3px solid var(--steel); padding-left: 18px; margin: 18px 0 26px; }

/* ============================ CONTACT / CTA ============================ */
.cta { background: linear-gradient(160deg, #fff 0%, var(--grey) 100%); }
.cta__inner { max-width: 780px; margin: 0 auto; text-align: center; }
.cta__head { margin-bottom: 38px; }
.cta__inner .lead { margin: 0 auto 26px; }
.cta__or { color: var(--muted); font-size: 0.9rem; margin-top: 22px; }
.form { text-align: left; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 16px; }
.form input, .form select, .form textarea { width: 100%; margin-top: 6px; padding: 13px 15px; font: inherit; font-size: 0.95rem; color: var(--ink); border: 1.5px solid var(--line); border-radius: 11px; background: #fff; transition: border-color .2s, box-shadow .2s; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--steel); box-shadow: 0 0 0 3px rgba(62,108,168,.12); }
.form textarea { resize: vertical; }
.form .btn { width: 100%; margin-top: 4px; }
.form__hp { position: absolute; left: -9999px; }
.form__status { text-align: center; margin: 14px 0 0; font-weight: 600; font-size: 0.92rem; min-height: 1.2em; }
.form__status.ok { color: #1f9d6b; }
.form__status.err { color: #C53B47; }

/* ============================ FOOTER ============================ */
.footer { background: var(--navy); color: #cdd6df; padding: 52px 0; }
.footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap; }
.footer__brand img { height: 38px; width: auto; margin-bottom: 10px; }
.footer__brand p { margin: 0; font-size: 0.9rem; color: #aab6c2; }
.footer__meta { display: flex; flex-direction: column; gap: 6px; text-align: right; font-size: 0.9rem; }
.footer__meta a { color: #fff; font-weight: 600; }
.footer__meta span { color: #9fb0bf; }

/* ============================ REVEAL (visible by default; GSAP animates) ============================ */
@media (prefers-reduced-motion: reduce) {
  .panel__dot, .scroll-cue__line::after, .about__media-img { animation: none !important; }
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 980px) {
  .hero { min-height: auto; padding: 60px 0 90px; }
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__panel { order: -1; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps__track { display: none; }
  .cards { grid-template-columns: 1fr; }
  .card--featured { order: -1; }
  .fit { grid-template-columns: 1fr; gap: 32px; }
  .ai-grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 34px; }
  .about__position { text-align: left; }
  .scroll-cue { display: none; }
}

@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; margin-left: auto; width: 44px; height: 44px; background: none; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
  .nav__toggle span { display: block; width: 20px; height: 2px; background: var(--navy); margin: 0 auto; transition: .25s; }
  .nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav.open .nav__mobile { display: flex; }

  .section { padding: 64px 0; }
  .stats { padding: 44px 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .band { min-height: 320px; }
  .band__overlay { padding: 64px 22px; }
  .about__media { width: 100%; max-width: 440px; height: 340px; }
  .pain-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .ai-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer__meta { text-align: left; }
}

/* ============================ CURSOR ICON ============================ */
@media (hover: hover) and (pointer: fine) {
  .cursor { border: none; background: none; border-radius: 0; }
  .cursor.is-hover { background: none; }
  .cursor__icon { width: 100%; height: 100%; fill: none; stroke: var(--steel); stroke-width: 1.6; stroke-linejoin: round; stroke-linecap: round; }
  .cursor.is-hover .cursor__icon { stroke: var(--steel-dark); }
}

/* ============================ AIR BAND + SERVICES + CONSULTING ============================ */
.band--air .band__bg { background-image: url('https://images.pexels.com/photos/104826/pexels-photo-104826.jpeg?auto=compress&cs=tinysrgb&w=1600'); }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow); transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; }
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--steel); }
.svc-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px; background: linear-gradient(135deg, rgba(52,73,94,.10), rgba(62,108,168,.16)); color: var(--steel); }
.svc-card__icon svg { width: 28px; height: 28px; }
.svc-card h3 { margin-bottom: 8px; }
.svc-card > p { color: var(--muted); font-size: 0.96rem; }
.svc-card__list { list-style: none; margin: 10px 0 22px; padding: 0; }
.svc-card__list li { position: relative; padding: 7px 0 7px 24px; color: var(--muted); font-size: 0.92rem; border-bottom: 1px solid #F2F4F6; }
.svc-card__list li:last-child { border-bottom: none; }
.svc-card__list li::before { content: ""; position: absolute; left: 2px; top: 13px; width: 10px; height: 6px; border-left: 2px solid var(--steel); border-bottom: 2px solid var(--steel); transform: rotate(-45deg); }
.svc-card__cta { margin-top: auto; align-self: flex-start; font-weight: 700; color: var(--steel); font-size: 0.92rem; }
.svc-card__cta:hover { text-decoration: none; color: var(--steel-dark); }
.svc-card--cta { background: linear-gradient(150deg, var(--navy), var(--steel)); color: #fff; justify-content: center; }
.svc-card--cta h3 { color: #fff; }
.svc-card--cta > p { color: rgba(255,255,255,.85); }
.svc-card--cta .btn { align-self: flex-start; margin-top: 8px; background: #fff; color: var(--navy); }
.svc-card--cta .btn:hover { background: #eef2f7; }

.cta__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.consult__cta { text-align: center; margin-top: 44px; }
.consult__cta p { color: var(--muted); margin-bottom: 16px; }

@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .svc-grid { grid-template-columns: 1fr; } }

/* ============================ VIDEO / CONTACT BACKGROUND + GALLERY ============================ */
.cta--video { position: relative; overflow: hidden; background: var(--navy); }
.cta__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta__veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(26,38,52,.80), rgba(26,38,52,.90)); }
.cta--video .cta__inner { position: relative; z-index: 2; }
.cta--video h2 { color: #fff; }
.cta--video .lead { color: #d8e2ee; }
.cta--video .cta__or { color: #aebccc; }
.cta--video .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.cta--video .btn--ghost:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.08); }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; }
.gallery__item { margin: 0; overflow: hidden; border-radius: 12px; box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
@media (max-width: 720px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
