/* ============================================================
   Blue Ocean Agency — styles.css
   Theme: calm corporate ocean on white, with an abyssal-depth hero
   Fonts: Spectral (display serif) + Figtree (body / UI sans)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --white: #ffffff;
  --sky-1: #f0f7ff;        /* very light blue background */
  --sky-2: #e3f0fd;        /* soft blue tint */
  --deep-blue: #0a4d8c;    /* primary */
  --ocean-1: #1e88e5;      /* secondary */
  --ocean-2: #00b4d8;      /* accent cyan */
  --navy: #0d2b4e;         /* headings / text */
  --navy-soft: #33507a;    /* muted navy — AA on white & sky */
  --slate: #4a5d7a;        /* muted body text — AA on white & sky */
  --line: #dceafa;         /* borders */
  --line-2: #eaf3fd;

  /* Abyssal depth (hero + routes) */
  --abyss-1: #04101d;      /* near-black deep water */
  --abyss-2: #072a4d;      /* mid depth */
  --link: #0a4d8c;         /* text links — AA on white */

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #0a4d8c 0%, #1467b3 45%, #1e88e5 100%);
  --grad-cta: linear-gradient(120deg, #073a6d 0%, #0a4d8c 40%, #1e88e5 100%);
  --grad-cyan: linear-gradient(120deg, #1e88e5 0%, #00b4d8 100%);
  --grad-soft: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);

  /* Typography */
  --font-display: "Spectral", Georgia, "Times New Roman", serif;   /* headings */
  --font-head: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; /* UI labels / numbers */
  --font-body: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-ui: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows (delicate) */
  --sh-1: 0 2px 8px rgba(13, 43, 78, 0.05);
  --sh-2: 0 10px 30px rgba(13, 43, 78, 0.08);
  --sh-3: 0 20px 50px rgba(10, 77, 140, 0.12);
  --sh-blue: 0 16px 40px rgba(30, 136, 229, 0.28);

  /* Layout */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
  --nav-h: 76px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);        /* ease-out-quint */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);     /* ease-out-expo */

  /* Z-index scale */
  --z-nav: 100;
  --z-drawer: 99;
  --z-toast: 120;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--nav-h) + 20px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--link); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--ocean-1); }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.16;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p { margin: 0 0 1rem; text-wrap: pretty; }

::selection { background: rgba(30, 136, 229, 0.18); color: var(--navy); }

:focus-visible {
  outline: 3px solid rgba(30, 136, 229, 0.45);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding: clamp(64px, 9vw, 120px) 0;
}

.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.bg-sky { background: var(--sky-1); }
.bg-soft { background: var(--grad-soft); }

/* Wayfinding label — a single deliberate brand device (sentence case,
   no tracking, no uppercase): a short "sounding line" that names the section. */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--deep-blue);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--ocean-1);
  border-radius: 2px;
}
.section-head.center .eyebrow { justify-content: center; }

.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.section-head p {
  font-size: 1.12rem;
  color: var(--slate);
  margin: 0;
}

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--navy-soft);
  line-height: 1.6;
}

/* Solid emphasis colour (no gradient text). */
.text-gradient { color: var(--ocean-1); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  min-height: 48px;
  padding: 16px 30px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--grad-cyan);
  color: #fff;
  box-shadow: var(--sh-blue);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(30, 136, 229, 0.4);
}

.btn-ghost {
  background: #fff;
  color: var(--deep-blue);
  border-color: var(--line);
  box-shadow: var(--sh-1);
}
.btn-ghost:hover {
  border-color: var(--ocean-1);
  color: var(--deep-blue);
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
}

.btn-light {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-light:hover {
  background: #fff;
  color: var(--deep-blue);
  transform: translateY(-3px);
}

.btn-white {
  background: #fff;
  color: var(--deep-blue);
  box-shadow: 0 14px 34px rgba(3, 25, 51, 0.25);
}
.btn-white:hover { color: var(--deep-blue); transform: translateY(-3px); }

.btn-lg { padding: 18px 36px; font-size: 1.06rem; }

.btn-arrow svg { transition: transform .25s var(--ease); }
.btn-arrow:hover svg { transform: translateX(4px); }

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled {
  box-shadow: var(--sh-1);
  border-bottom-color: var(--line-2);
  background: rgba(255, 255, 255, 0.94);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; min-height: 44px; }
.brand img { height: 44px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy-soft);
  padding: 10px 16px;
  border-radius: var(--r-pill);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links a:hover { color: var(--deep-blue); background: var(--sky-1); }
.nav-links a.active { color: var(--deep-blue); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 12px 24px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  padding: 0 12px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 99;
  padding: 28px var(--gutter) 40px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a {
  display: block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
  padding: 16px 4px;
  border-bottom: 1px solid var(--line-2);
}
.mobile-menu a:hover { color: var(--ocean-1); }
.mobile-menu .btn { margin-top: 26px; width: 100%; }

body.no-scroll { overflow: hidden; }

/* ---------- Wave dividers ---------- */
.wave-divider {
  display: block;
  width: 100%;
  height: auto;
  line-height: 0;
}
.wave-divider svg { display: block; width: 100%; height: auto; }

/* ---------- Decorative blobs / bubbles ---------- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

/* ============================================================
   HERO — descent into deep water
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #eaf3ff;
  background:
    radial-gradient(130% 90% at 50% -12%, rgba(120, 200, 255, 0.18), transparent 58%),
    linear-gradient(180deg, var(--abyss-1) 0%, #06213e 36%, #083a6e 72%, var(--deep-blue) 100%);
  padding-top: clamp(56px, 8vw, 104px);
  padding-bottom: 0;
}
/* faint light shafts filtering down from the surface */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(101deg, transparent 45%, rgba(180, 225, 255, 0.06) 49%, transparent 53%),
    linear-gradient(81deg, transparent 61%, rgba(150, 210, 255, 0.05) 65%, transparent 69%);
}
.hero .blob { mix-blend-mode: screen; opacity: .38; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  padding-bottom: clamp(88px, 11vw, 150px);
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--r-pill);
  padding: 8px 18px 8px 10px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.86rem;
  color: #dceeff;
  margin-bottom: 26px;
}
.hero-badge .dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad-cyan);
  display: inline-flex; align-items: center; justify-content: center;
  color: #04101d; font-size: 12px;
}
.hero h1 {
  color: #f3f9ff;
  font-size: clamp(2.7rem, 5.6vw, 4.6rem);
  line-height: 1.06;
  margin-bottom: 22px;
  letter-spacing: -0.015em;
}
.hero h1 .accent { color: var(--ocean-2); }
.hero-sub {
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  color: #c4ddf5;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note {
  display: flex; align-items: center; gap: 10px;
  margin-top: 26px;
  font-size: 0.94rem;
  color: #a9c8e6;
}
.hero-note svg { width: 18px; height: 18px; color: var(--ocean-2); flex: none; }

/* Hero visual: a light source descending, ringed by sonar pulses */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(150, 210, 255, 0.26);
  animation: ringpulse 6s var(--ease) infinite;
}
.ring:nth-child(1) { width: 96%; height: 96%; animation-delay: 0s; }
.ring:nth-child(2) { width: 74%; height: 74%; animation-delay: .6s; border-color: rgba(0,180,216,0.34); }
.ring:nth-child(3) { width: 52%; height: 52%; animation-delay: 1.2s; }
@keyframes ringpulse {
  0%, 100% { transform: scale(1); opacity: .5; }
  50% { transform: scale(1.045); opacity: 1; }
}
.hero-orb {
  position: relative;
  width: 62%;
  height: 62%;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 30%, #8ad8ff 0%, #2e9be8 32%, #0a4d8c 64%, #05264a 100%);
  box-shadow: 0 0 90px rgba(66, 176, 255, 0.42), 0 34px 80px rgba(2, 16, 32, 0.6), inset 0 -22px 60px rgba(2, 14, 30, 0.5);
  overflow: hidden;
  z-index: 2;
}
.hero-orb .orb-wave {
  position: absolute;
  left: -25%;
  width: 150%;
  height: 60%;
  bottom: -6%;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 42%;
  animation: orbwave 9s linear infinite;
}
.hero-orb .orb-wave.w2 {
  bottom: -14%;
  background: rgba(0, 180, 216, 0.30);
  animation-duration: 13s;
  animation-direction: reverse;
}
.hero-orb .orb-wave.w3 {
  bottom: -22%;
  background: rgba(255, 255, 255, 0.1);
  animation-duration: 17s;
}
@keyframes orbwave {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.hero-orb .orb-shine {
  position: absolute;
  top: 12%; left: 18%;
  width: 42%; height: 42%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.75), transparent 60%);
  border-radius: 50%;
}
/* floating chips — annotations on the deep scene (no blur) */
.float-chip {
  position: absolute;
  background: rgba(6, 24, 46, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 34px rgba(2, 14, 30, 0.5);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  z-index: 3;
  animation: floaty 6s ease-in-out infinite;
}
.float-chip .fc-ico {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center; color: #04101d;
  background: var(--grad-cyan);
}
.float-chip .fc-ico svg { width: 18px; height: 18px; }
.float-chip .fc-num { font-weight: 700; color: #fff; font-size: 1.05rem; line-height: 1; }
.float-chip .fc-label { font-size: 0.72rem; color: #a9c8e6; font-weight: 600; }
.float-chip.fc-tl { top: 6%; left: -6%; animation-delay: 0s; }
.float-chip.fc-br { bottom: 10%; right: -4%; animation-delay: 1.5s; }
.float-chip.fc-bl { bottom: 26%; left: -8%; animation-delay: .8s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
/* transition wave from the deep hero into the light page */
.hero-wave { background: var(--deep-blue); line-height: 0; }
.hero-wave svg { display: block; width: 100%; height: auto; }

/* ============================================================
   METRICS — narrative ribbon (replaces the boxed trust band)
   ============================================================ */
.metrics-section {
  padding-top: clamp(50px, 6vw, 78px);
  padding-bottom: clamp(50px, 6vw, 78px);
}
.metrics { display: grid; gap: clamp(26px, 4vw, 44px); }
.metrics-lead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.05rem);
  line-height: 1.32;
  color: var(--navy);
  margin: 0;
  max-width: 24ch;
  text-wrap: balance;
}
.metrics-lead .accent { color: var(--deep-blue); font-style: italic; }
.metrics-line {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: clamp(24px, 4vw, 52px);
  padding-top: clamp(22px, 3vw, 30px);
  border-top: 1px solid var(--line);
}
.metric { display: flex; flex-direction: column; gap: 6px; }
.metric-v {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1;
  color: var(--deep-blue);
  letter-spacing: -0.02em;
}
.metric-v .u { color: var(--ocean-1); }
.metric-l { font-size: 0.92rem; color: var(--slate); max-width: 17ch; }
.metric--lead .metric-v { font-size: clamp(2.9rem, 5.2vw, 4.1rem); }
.metric--lead .metric-l { font-size: 1rem; color: var(--navy-soft); font-weight: 500; max-width: 20ch; }

@media (min-width: 900px) {
  .metrics {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
    gap: clamp(40px, 5vw, 72px);
  }
  .metrics-line {
    border-top: none;
    padding-top: 0;
    padding-left: clamp(34px, 4vw, 54px);
    border-left: 1px solid var(--line);
  }
}

/* ============================================================
   SERVICES
   ============================================================ */
/* Asymmetric bento: two flagship disciplines lead, four run compact. */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 24px);
}
.cards-grid .card { grid-column: span 1; }
.cards-grid .card.feature { grid-column: span 2; }
.card.feature { padding: clamp(30px, 3.2vw, 44px); }
.card.feature h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); }
.card.feature > p { font-size: 1.04rem; max-width: 42ch; }
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 18px;
}
.card-tags span {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy-soft);
  background: var(--sky-1);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 5px 12px;
}
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 34px);
  box-shadow: var(--sh-1);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--grad-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-3);
  border-color: transparent;
}
.card:hover::after { transform: scaleX(1); }
.card-ico {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--sky-2), #fff);
  border: 1px solid var(--line);
  color: var(--ocean-1);
  margin-bottom: 22px;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.card-ico svg { width: 28px; height: 28px; }
.card:hover .card-ico {
  background: var(--grad-cyan);
  color: #fff;
  transform: scale(1.05) rotate(-4deg);
}
.card h3 { font-size: 1.32rem; margin-bottom: 10px; }
.card p { margin-bottom: 18px; font-size: 0.98rem; }
.card-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--deep-blue);
}
.card-link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

/* Service list (services.html deep) */
.svc-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(40px, 5vw, 60px) 0;
  border-bottom: 1px solid var(--line-2);
}
.svc-block:last-child { border-bottom: none; }
.svc-block.reverse .svc-visual { order: 2; }
.svc-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--deep-blue);
  margin-bottom: 14px;
}
.svc-num::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--ocean-1);
  border-radius: 2px;
}
.svc-block h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 14px; }
.svc-block > div > p { font-size: 1.06rem; }
.deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
  margin-top: 22px;
}
.deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.96rem;
  color: var(--navy-soft);
  font-weight: 500;
}
.deliverables li svg { width: 20px; height: 20px; color: var(--ocean-1); flex: none; margin-top: 1px; }

.svc-visual {
  position: relative;
  border-radius: var(--r-lg);
  background: var(--grad-hero);
  aspect-ratio: 4 / 3.2;
  overflow: hidden;
  box-shadow: var(--sh-3);
  display: grid;
  place-items: center;
  color: #fff;
}
.svc-visual .big-ico {
  width: 96px; height: 96px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 24px;
  position: relative;
  z-index: 2;
}
.svc-visual .big-ico svg { width: 48px; height: 48px; }
.svc-visual .vwave {
  position: absolute; left: -20%; bottom: -30%;
  width: 140%; height: 70%;
  background: rgba(255,255,255,0.08);
  border-radius: 45%;
  animation: orbwave 16s linear infinite;
}
.svc-visual .vwave.v2 { background: rgba(0,180,216,0.22); animation-duration: 22s; animation-direction: reverse; bottom: -40%; }

/* ============================================================
   PROCESS — The Voyage
   ============================================================ */
.voyage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 26px);
  position: relative;
}
.voyage::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step-badge {
  width: 68px; height: 68px;
  margin: 0 auto 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-2);
  display: grid; place-items: center;
  color: var(--ocean-1);
  position: relative;
  transition: transform .35s var(--ease);
}
.step-badge svg { width: 30px; height: 30px; }
.step:hover .step-badge { transform: translateY(-6px); }
.step-badge .step-n {
  position: absolute;
  top: -8px; right: -8px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--grad-cyan);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  display: grid; place-items: center;
  box-shadow: var(--sh-1);
}
.step h3 { font-size: 1.24rem; margin-bottom: 8px; }
.step p { font-size: 0.95rem; margin: 0; }

/* ============================================================
   CASE STUDIES
   ============================================================ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 28px);
}
.case {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-1);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.case:hover { transform: translateY(-8px); box-shadow: var(--sh-3); }
.case-top {
  padding: 26px 28px;
  background: var(--grad-hero);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.case-top .cwave {
  position: absolute; left: -20%; bottom: -60%;
  width: 140%; height: 120%;
  background: rgba(255,255,255,0.07);
  border-radius: 45%;
  animation: orbwave 18s linear infinite;
}
.case-tag {
  position: relative; z-index: 2;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bfe3ff;
  margin-bottom: 12px;
}
.case-metric {
  position: relative; z-index: 2;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  line-height: 1;
  color: #fff;
}
.case-metric small { font-size: 1rem; font-weight: 600; opacity: .9; display: block; margin-top: 8px; }
.case-body { padding: 24px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.case-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.case-body p { font-size: 0.96rem; margin-bottom: 18px; }
.case-stats {
  display: flex;
  gap: 22px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line-2);
}
.case-stats div { flex: 1; }
.case-stats b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--deep-blue);
}
.case-stats span { font-size: 0.78rem; color: var(--slate); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 28px);
}
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 34px);
  box-shadow: var(--sh-1);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.quote:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }
.quote .mark {
  font-family: var(--font-display);
  font-size: 3.8rem;
  line-height: 0.6;
  color: var(--ocean-2);
  opacity: 0.4;
  margin-bottom: 8px;
}
.quote p {
  font-size: 1.02rem;
  color: var(--navy-soft);
  line-height: 1.65;
  flex: 1;
}
.quote-person { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  color: #fff;
  background: var(--grad-cyan);
  font-size: 1.05rem;
  flex: none;
}
.quote-person b { display: block; font-family: var(--font-head); color: var(--navy); font-size: 0.98rem; }
.quote-person span { font-size: 0.84rem; color: var(--slate); }
.stars { color: #f6a821; margin-bottom: 14px; letter-spacing: 2px; font-size: 0.95rem; }

/* ============================================================
   WHY BLUE OCEAN — differentiators
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 26px);
}
.why-card {
  display: flex;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 32px);
  box-shadow: var(--sh-1);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }
.why-ico {
  width: 56px; height: 56px;
  flex: none;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--grad-hero);
  color: #fff;
}
.why-ico svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.why-card p { margin: 0; font-size: 0.98rem; }

/* Split feature (about) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.split.reverse .split-visual { order: 2; }
.split-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: var(--grad-hero);
  box-shadow: var(--sh-3);
}
.split-visual .sv-inner {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: #fff; text-align: center;
  padding: 30px;
  z-index: 2;
}
.split-visual .vwave { position: absolute; left: -20%; bottom: -30%; width: 140%; height: 70%; background: rgba(255,255,255,0.08); border-radius: 45%; animation: orbwave 18s linear infinite; }
.split-visual .vwave.v2 { background: rgba(0,180,216,0.22); animation-duration: 24s; animation-direction: reverse; bottom: -42%; }

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 24px);
}
.value {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  box-shadow: var(--sh-1);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.value:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }
.value-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky-2), #fff);
  border: 1px solid var(--line);
  color: var(--ocean-1);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.value-ico svg { width: 26px; height: 26px; }
.value h3 { font-size: 1.14rem; margin-bottom: 8px; }
.value p { margin: 0; font-size: 0.94rem; }

/* Timeline (about story) */
.timeline { position: relative; max-width: 760px; margin-inline: auto; }
.timeline::before {
  content: "";
  position: absolute;
  left: 19px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--line);
}
.tl-item { position: relative; padding: 0 0 34px 60px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: 12px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--ocean-1);
  box-shadow: 0 0 0 4px var(--sky-1);
}
.tl-year { font-family: var(--font-head); font-weight: 800; color: var(--ocean-2); font-size: 0.9rem; letter-spacing: 0.06em; }
.tl-item h3 { font-size: 1.2rem; margin: 4px 0 8px; }
.tl-item p { margin: 0; font-size: 0.98rem; }

/* ============================================================
   ROUTES — growth-journey path selection (consultative gateway)
   Cards deepen in tone shallow -> abyssal, mirroring the growth stage.
   ============================================================ */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 24px);
}
.route {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 38px);
  color: #eaf3ff;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--sh-2);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.route::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(3,16,32,0) 34%, rgba(3,16,32,0.34));
}
.route--1 { background: linear-gradient(160deg, #0c63b4, #0a3f74); }
.route--2 { background: linear-gradient(160deg, #0a4d8c, #072a4d); }
.route--3 { background: linear-gradient(160deg, #08386a, #04101d); }
.route:hover { transform: translateY(-8px); box-shadow: var(--sh-3); color: #fff; }
.route-depth {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 16px;
}
.route-depth::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--ocean-2);
  border-radius: 2px;
}
.route h3 { color: #fff; font-size: clamp(1.4rem, 2vw, 1.75rem); margin-bottom: 10px; }
.route p { color: rgba(255, 255, 255, 0.9); font-size: 0.98rem; margin-bottom: 22px; }
.route-focus {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.94rem;
  color: #fff;
}
.route-focus svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.route:hover .route-focus svg { transform: translateX(4px); }

/* Assurances — text trust signals (no client-logo fabrication) */
.assurances {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px clamp(22px, 3vw, 36px);
  margin-top: clamp(30px, 4vw, 46px);
}
.assurance {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--navy-soft);
}
.assurance svg { width: 20px; height: 20px; color: var(--ocean-1); flex: none; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--grad-cta);
  border-radius: var(--r-xl);
  padding: clamp(48px, 7vw, 84px) clamp(28px, 6vw, 80px);
  text-align: center;
  color: #fff;
  box-shadow: var(--sh-3);
}
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 1.14rem; max-width: 560px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-band .cta-content { position: relative; z-index: 2; }
.cta-band .cwave {
  position: absolute; left: -10%; bottom: -50%;
  width: 120%; height: 120%;
  background: rgba(255,255,255,0.06);
  border-radius: 44%;
  animation: orbwave 24s linear infinite;
}
.cta-band .cwave.c2 { background: rgba(0,180,216,0.16); animation-duration: 30s; animation-direction: reverse; bottom: -60%; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: #b7c7de;
  padding: clamp(56px, 7vw, 84px) 0 32px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 32px; width: auto; display: block; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { color: #9fb2cd; font-size: 0.96rem; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  color: #cdddf1;
  transition: background .25s var(--ease), transform .25s var(--ease), color .25s var(--ease);
}
.footer-social a:hover { background: var(--grad-cyan); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-family: var(--font-ui);
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col a { display: block; color: #9fb2cd; padding: 9px 0; font-size: 0.96rem; }
.footer-col a:hover { color: #fff; }
.footer-col address { font-style: normal; color: #9fb2cd; font-size: 0.96rem; line-height: 1.7; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 26px;
  flex-wrap: wrap;
}
.footer-bottom p { margin: 0; font-size: 0.88rem; color: #8399b8; }
.footer-bottom .fb-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom .fb-links a { color: #8399b8; font-size: 0.88rem; }
.footer-bottom .fb-links a:hover { color: #fff; }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--grad-soft);
  padding: clamp(56px, 8vw, 100px) 0 clamp(40px, 6vw, 70px);
  text-align: center;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 18px;
  max-width: 800px;
  margin-inline: auto;
}
.page-hero p {
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  color: var(--slate);
  max-width: 620px;
  margin-inline: auto;
}
.breadcrumb {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 0.86rem;
  color: var(--slate);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--ocean-1); font-weight: 600; }
.breadcrumb span { opacity: 0.5; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 24px;
  box-shadow: var(--sh-1);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.info-ico {
  width: 48px; height: 48px; flex: none;
  border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--sky-2), #fff);
  border: 1px solid var(--line);
  color: var(--ocean-1);
}
.info-ico svg { width: 22px; height: 22px; }
.info-card h4 { font-family: var(--font-head); color: var(--navy); font-size: 1.02rem; margin: 0 0 4px; }
.info-card p, .info-card a { margin: 0; font-size: 0.96rem; color: var(--slate); }
.info-card a:hover { color: var(--ocean-1); }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--sh-2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.field label .req { color: var(--ocean-1); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  background: var(--sky-1);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ocean-1);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.12);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--slate); opacity: 1; }
.field.error input,
.field.error select,
.field.error textarea,
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #c23b3b; background: #fff5f5; }
.field .err-msg {
  display: none;
  color: #b62f2f;
  font-size: 0.84rem;
  margin-top: 6px;
  font-weight: 600;
}
.field.error .err-msg { display: block; }
.form-note { font-size: 0.86rem; color: var(--slate); margin-top: 4px; }
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
}
.form-success.show { display: block; animation: fadeUp .5s var(--ease); }
.form-success .fs-ico {
  width: 76px; height: 76px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--grad-cyan);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--sh-blue);
}
.form-success .fs-ico svg { width: 38px; height: 38px; }
.form-success h3 { font-size: 1.6rem; margin-bottom: 10px; }
.form-success p { color: var(--slate); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal {
  max-width: 820px;
  margin-inline: auto;
}
.legal .updated {
  display: inline-block;
  background: var(--sky-1);
  border: 1px solid var(--line);
  color: var(--navy-soft);
  font-weight: 600;
  font-size: 0.86rem;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 34px;
}
.legal h2 {
  font-size: 1.5rem;
  margin: 42px 0 14px;
  padding-top: 10px;
}
.legal h3 { font-size: 1.15rem; margin: 26px 0 10px; }
.legal p, .legal li { color: var(--slate); font-size: 1rem; line-height: 1.75; }
.legal ul { margin: 0 0 1rem; padding-left: 4px; }
.legal ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}
.legal ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: 11px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ocean-1);
}
.legal a { font-weight: 600; }
.legal-toc {
  background: var(--sky-1);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.legal-toc h4 { font-family: var(--font-head); color: var(--navy); font-size: 0.86rem; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 14px; }
.legal-toc a { display: block; padding: 5px 0; font-weight: 500; color: var(--navy-soft); font-size: 0.96rem; }
.legal-toc a:hover { color: var(--ocean-1); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .3s var(--ease);
}
.faq-item.open { box-shadow: var(--sh-2); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-q .chev {
  flex: none;
  width: 24px; height: 24px;
  transition: transform .3s var(--ease);
  color: var(--ocean-1);
}
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 26px 24px; margin: 0; color: var(--slate); }

/* ============================================================
   MINI CTA inline
   ============================================================ */
.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--sky-1);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 44px);
}
.inline-cta h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 0 0 6px; }
.inline-cta p { margin: 0; color: var(--slate); }

/* ============================================================
   ANIMATIONS — reveal on scroll
   ============================================================ */
/* Content is visible by default; the reveal is an enhancement that only
   applies once JS confirms it can hide-then-show (.js gate). No JS => no blank. */
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  will-change: opacity, transform;
}
.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .js .reveal, .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .faq-a { transition: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 440px; margin: 10px auto 0; order: 2; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid .card.feature { grid-column: span 2; }
  .cards-grid .card { grid-column: span 1; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .voyage { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .voyage::before { display: none; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .brand img { height: 38px; }
  .svc-block, .svc-block.reverse .svc-visual { grid-template-columns: 1fr; }
  .svc-block .svc-visual { order: -1; }
  .split, .split.reverse .split-visual { grid-template-columns: 1fr; }
  .split .split-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid .card, .cards-grid .card.feature { grid-column: span 1; }
  .cases-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .voyage { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .form-row { grid-template-columns: 1fr; }
  .deliverables { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .float-chip { display: none; }
}

@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
}
