/* ==========================================================================
   Fibre Network Solutions — Corporate Theme (Apple-style scroll)
   ========================================================================== */

/* ---- Design tokens ---- */
:root {
  --fns-navy: #0a1a33;
  --fns-blue: #0d2b57;
  --fns-cyan: #00a6ff;
  --fns-cyan-600: #0091e0;
  --fns-grey-050: #f4f6f8;
  --fns-grey-200: #e6eaee;
  --fns-grey-600: #6b7280;
  --shadow-1: 0 6px 24px rgba(10, 26, 51, .15);
  --radius-lg: 16px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  scroll-behavior: smooth;
  background: #fff;
  color: #0c1320;
  scroll-snap-type: y proximity;
  /* Snap on body but keep footer reachable */
}

body {
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-padding-top: 140px;
}

body.no-snap {
  scroll-snap-type: none;
}

/* Main itself doesn't scroll; snapping is on body */
main {
  scroll-snap-type: none;
}

/* If your markup still has this element, neutralize it for overlay header */
.header-spacer {
  height: 0;
}

/* ---- Grid utilities ---- */
.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.col-12 {
  grid-column: span 12;
}

@media (min-width:768px) {
  .col-md-6 {
    grid-column: span 6;
  }

  .col-md-4 {
    grid-column: span 4;
  }
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 2000;
  padding: 8px 12px;
  background: #000;
  color: #fff;
  border-radius: 8px;
}

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  background: transparent;
  backdrop-filter: none;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}

.navbar.is-solid {
  background: linear-gradient(115deg, rgba(10, 26, 51, .92) 0%, rgba(8, 32, 68, .9) 60%, rgba(140, 16, 34, .75) 100%);
  backdrop-filter: saturate(140%) blur(6px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
}

.navbar .nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #f1f5ff;
}

.brand-logo {
  height: 66px;
  width: auto;
  display: block;
  padding: 0;
  border-radius: 12px;
  background: none;
  border: none;
  filter:
    drop-shadow(0 12px 22px rgba(0, 0, 0, .36)) drop-shadow(0 0 18px rgba(0, 166, 255, .45)) drop-shadow(10px 0 18px rgba(210, 24, 24, .32));
}

.brand-left {
  display: none;
}

.nav-primary {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  width: 100%;
  padding-left: 0;
  align-items: center;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  padding: 10px 12px;
  border-radius: 999px;
  transition: color .2s ease, transform .2s ease;
  isolation: isolate;
}

.nav-logo-inline {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 14px;
  pointer-events: none;
}

.nav-logo-inline img {
  height: 50px;
  width: auto;
  display: block;
  border-radius: 12px;
  filter:
    drop-shadow(0 10px 18px rgba(0, 0, 0, .3)) drop-shadow(0 0 12px rgba(0, 166, 255, .35));
}

.nav-links a::before {
  content: "•";
  font-size: 1.1rem;
  color: var(--fns-cyan);
  margin-right: 8px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .2s ease, transform .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--fns-cyan), rgba(226, 27, 45, .8));
  opacity: 0;
  transform: translateY(6px) scaleX(.5);
  transition: opacity .25s ease, transform .25s ease;
  box-shadow: 0 8px 18px rgba(0, 166, 255, .35);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #eaf6ff;
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  opacity: 1;
  transform: translateY(0) scaleX(1);
}

.nav-links a:hover::before,
.nav-links a:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.nav-links a.active {
  color: #eaf6ff;
}

.nav-links a.active::after {
  opacity: 1;
  transform: translateY(0) scaleX(1);
}

.nav-links a.active::before {
  opacity: 1;
  transform: translateY(0);
}

.nav-links a:focus-visible {
  outline: 2px solid rgba(0, 166, 255, .45);
  outline-offset: 4px;
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  margin-left: 12px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, .25);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, .28);
  background: rgba(255, 255, 255, .1);
}

@media (max-width:900px) {
  .navbar {
    height: 72px;
  }

  .navbar .nav-inner {
    display: flex;
    align-items: center;
    padding: 8px 12px;
  }

  .nav-primary {
    justify-content: flex-start;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 12px;
  }

  .nav-logo-inline {
    display: none !important;
  }

  .brand-logo {
    height: 52px;
  }

  .brand-left {
    display: inline-flex;
    align-items: center;
    margin-right: 12px;
  }

  .nav-primary {
    flex: 1;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
    margin-right: 0;
    align-self: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    right: 0;
    top: 72px;
    width: calc(100% - 16px);
    margin: 0 8px;
    background: linear-gradient(160deg, rgba(10, 26, 51, .95), rgba(13, 43, 87, .92));
    backdrop-filter: saturate(140%) blur(8px);
    padding: 14px;
    flex-direction: column;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, .35);
    animation: menuPop .25s ease;
    overflow:hidden;
  }
  .nav-links.spectrum::after {
    content:"";
    position:absolute; inset:0;
    background:linear-gradient(120deg, rgba(0,166,255,.35), rgba(226,27,45,.35), rgba(0,166,255,.35));
    animation:spectrumSweep .95s ease;
    pointer-events:none;
    mix-blend-mode:screen;
  }

  .nav-links.hiding {
    animation: menuHide .2s ease forwards;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    justify-content: flex-start;
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .06);
  }
}

@media (max-width:640px) {
  .brand-word {
    font-size: .95rem;
  }
}

@keyframes menuPop {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes menuHide {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(-8px) scale(.98);
  }
}

@keyframes spectrumSweep {
  0% { transform:translateX(-30%); opacity:.6; }
  100% { transform:translateX(30%); opacity:0; }
}

/* ==========================================================================
   SCROLL SNAP
   ========================================================================== */
main section {
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
}

/* Contact flows naturally */
main section#contact {
  height: auto;
  min-height: 70vh;
  scroll-snap-align: none;
}

/* Footer not snapped */
.site-footer {
  scroll-snap-align: none !important;
}

/* ==========================================================================
   NAV DOTS
   ========================================================================== */
.nav-dots {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.nav-dots a {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  display: block;
  transition: background .3s, transform .3s;
  position: relative;
}

.nav-dots a.active {
  background: var(--fns-cyan);
  transform: scale(1.3);
}

/* Tooltips */
.nav-dots a::after {
  content: attr(title);
  position: absolute;
  right: 140%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .75);
  color: #fff;
  font-size: .8rem;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
}

.nav-dots a:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

@media (max-width:768px) {
  .nav-dots {
    display: none;
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: left;
  background: #0a1a33;
  align-items: flex-start;
  padding-top: clamp(64px, 8vw, 96px);
  padding-bottom: clamp(18px, 3vw, 32px);
  min-height: clamp(520px, 78vh, 820px);
}

.hero .container {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding-inline: clamp(24px, 4vw, 56px);
}

.hero-rotator {
  position: relative;
  min-height: clamp(520px, 78vh, 820px);
  height: auto;
  width: 100%;
  display: flex;
  align-items: stretch;
}

.hero-face {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .9s ease, transform .9s ease;
  transform: translateY(12px);
  display: flex;
  align-items: center;
  width: 100%;
  background:
    url('../img/hero-grid-logo.svg'),
    radial-gradient(1200px 600px at 90% -10%, rgba(0, 166, 255, .24), transparent 60%),
    linear-gradient(135deg, var(--fns-blue) 0%, var(--fns-navy) 60%);
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
  background-blend-mode: normal, screen, normal;
}

.hero-face.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-face>.container {
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-face--boat {
  background:
    linear-gradient(120deg, rgba(10,26,51,.82) 0%, rgba(10,26,51,.68) 32%, rgba(0,166,255,.22) 100%),
    url('../img/hero2-grid-logo.svg') center/cover no-repeat;
  background-blend-mode: normal, screen;
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 100% 20%, rgba(0, 166, 255, .12), transparent 60%);
  pointer-events: none;
}

/* legacy pill spacing removed; see .hero-highlights */

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}
.hero-face--boat .hero-content { max-width: 900px; }

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.hero-highlight {
  position: relative;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.12));
  border: 1px solid rgba(255,255,255,.18);
  color: #eaf4ff;
  font-weight: 700;
  letter-spacing: .08px;
  box-shadow:
    0 14px 28px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.12),
    0 0 28px rgba(0,166,255,.12);
  overflow: hidden;
  backdrop-filter: blur(6px) saturate(120%);
}
.hero-highlight--thumb {
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:12px;
}
.hero-highlight__thumb {
  width:100%;
  aspect-ratio: 4 / 3;
  border-radius:12px;
  overflow:hidden;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}
.hero-highlight__thumb img {
  width:100%; height:100%; object-fit:cover; display:block;
}
.hero-highlight__label {
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
  font-size:.95rem;
}
.hero-highlight::before {
  content:"";
  position:absolute; inset:-24% auto auto -12%;
  width:120px; height:120px; border-radius:50%;
  background:radial-gradient(circle, rgba(0,166,255,.18), transparent 60%);
  opacity:.7; pointer-events:none; filter:blur(2px);
}
.hero-highlight::after {
  content:"";
  position:absolute; inset:auto 6% -26% auto;
  width:90px; height:90px; border-radius:20px;
  background:linear-gradient(120deg, rgba(255,255,255,.14), rgba(255,255,255,.02));
  opacity:.55; transform:rotate(-6deg);
}
.hero-highlights--ghost .hero-highlight {
  background: linear-gradient(135deg, rgba(10,26,51,.7), rgba(0,166,255,.18));
  border-color: rgba(255,255,255,.24);
}
.hero-cta-ribbon {
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:20px;
  padding:12px 18px;
  border-radius:14px;
  text-decoration:none;
  color:#eaf6ff;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
  background:linear-gradient(115deg, rgba(0,166,255,.3), rgba(226,27,45,.32));
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 16px 28px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.2);
  position:relative;
  overflow:hidden;
}
.hero-cta-ribbon::before {
  content:"";
  position:absolute; inset:-10px auto -10px -24px;
  width:52px; background:linear-gradient(135deg, rgba(255,255,255,.3), rgba(255,255,255,0));
  transform:skewX(-16deg);
  opacity:.6;
}
.hero-cta-text { position:relative; z-index:1; }
.hero-cta-arrow {
  position:relative; z-index:1; display:inline-flex; align-items:center; justify-content:center;
  width:26px; height:26px;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  box-shadow:0 8px 18px rgba(0,0,0,.18), inset 0 0 0 1px rgba(255,255,255,.25);
  font-size:1rem;
}
.hero-cta-ribbon:hover {
  transform:translateY(-1px);
  box-shadow:0 18px 32px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.24);
}

.hero-footnote {
  margin-top: 16px;
  color: #d3e2ff;
  max-width: 560px;
  font-weight: 600;
  letter-spacing: .08px;
}

.hero-sport-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #eaf6ff;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
}

.hero-sport-badge::before {
  content: "⛵";
}

.hero-sport-title {
  text-transform: uppercase;
  letter-spacing: .5px;
}

.hero-sport-footnote {
  color: #e5eeff;
  max-width: 560px;
}

.kicker {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #eaf6ff;
  margin-bottom: 14px;
  font-weight: 600;
  font-size: .9rem;
}

.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: .2px;
  line-height: 1.15;
  font-size: clamp(32px, 5vw, 54px);
  margin: 0 0 16px;
  color: #fff;
}

.brand-gradient {
  background: linear-gradient(90deg, #0af, #12d6ff 45%, #e21b2d 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(255, 255, 255, .45), 0 10px 26px rgba(0, 0, 0, .28), 0 0 14px rgba(0, 166, 255, .25);
}

.hero .lede {
  max-width: 720px;
  font-size: clamp(16px, 1.4vw, 20px);
  color: #e9f4ff;
}

.hero .cta-wrap {
  gap: 14px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary-fns {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--fns-cyan), var(--fns-cyan-600));
  color: #001428;
  border: 0;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(0, 166, 255, .35);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .2s, filter .2s, box-shadow .2s ease;
}

.btn-primary-fns::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .36), rgba(255, 255, 255, .12));
  transform: translateX(-120%);
  transition: transform .35s ease;
  mix-blend-mode: screen;
}

.btn-primary-fns:hover {
  filter: brightness(1.02);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 32px rgba(0, 166, 255, .4);
}

.btn-primary-fns:hover::after {
  transform: translateX(0);
}

.btn-outline-fns {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .55);
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.btn-outline-fns::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 166, 255, .2), rgba(226, 27, 45, .18));
  opacity: 0;
  transition: opacity .3s ease;
}

.btn-outline-fns:hover {
  color: #eaf6ff;
  border-color: rgba(255, 255, 255, .8);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

.btn-outline-fns:hover::after {
  opacity: 1;
}

/* ==========================================================================
   GENERIC SECTIONS
   ========================================================================== */
main section {
  padding: 80px 0;
}

.section-muted {
  background: var(--fns-grey-050);
}

/* ABOUT */
.about {
  position: relative;
  background:
    linear-gradient(160deg, #0b1f3c 0%, #0a1a33 32%, #112b5a 68%, #1b345f 100%),
    radial-gradient(1200px 620px at 12% -8%, rgba(0,166,255,.18), transparent 58%),
    linear-gradient(115deg, rgba(226,27,45,.12), transparent 40%);
  background-blend-mode: screen, normal, normal;
  color: #e9f4ff;
}

.about::before {
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(120deg, rgba(11,31,60,.92) 0%, rgba(11,31,60,.65) 35%, rgba(11,31,60,.4) 60%, transparent 80%),
    url('../media/media-3.jpg') center/cover no-repeat;
  opacity:.35;
  mix-blend-mode: screen;
  pointer-events:none;
}

.about::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url('../img/hero-grid.svg') center/cover no-repeat;
  opacity: .12;
  mix-blend-mode: multiply;
}

.about .container {
  position: relative;
  z-index: 1;
}

.about h2,
.services h2,
.testimonials h2,
.process h2,
.media h2,
.projects h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: .5px;
  margin: 0 0 16px;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-transform: uppercase;
  font-size: clamp(26px, 3vw, 34px);
  color: #0a1a33;
  background: linear-gradient(90deg, #0af, #12d6ff 45%, #e21b2d 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 6px 18px rgba(0, 0, 0, .18), 0 0 12px rgba(0, 166, 255, .25);
}

.services h2,
.testimonials h2,
.projects h2 {
  background: linear-gradient(90deg, #eaf6ff, #8fd6ff 60%, #e21b2d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
  text-shadow: 0 10px 24px rgba(0, 0, 0, .35), 0 0 14px rgba(255, 255, 255, .25);
}

.about h2::after,
.services h2::after,
.testimonials h2::after,
.process h2::after,
.media h2::after,
.projects h2::after {
  content: "";
  height: 4px;
  width: 82px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--fns-cyan), rgba(226, 27, 45, .9));
  box-shadow: 0 10px 22px rgba(0, 166, 255, .35);
  display: block;
}

.about h2::before,
.services h2::before,
.testimonials h2::before,
.process h2::before,
.media h2::before,
.projects h2::before {
  content: "";
  position: absolute;
  inset: -6px -12px auto -12px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 166, 255, .18), rgba(226, 27, 45, .1));
  filter: blur(12px);
  z-index: -1;
  opacity: .8;
}

.about-extra {
  margin-top: 24px;
  row-gap: 18px;
}

.about-tile {
  background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(243, 248, 255, .95));
  border: 1px solid rgba(10, 26, 51, .08);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, .12);
  position: relative;
  overflow: hidden;
}

.about-tile::after {
  content: "";
  position: absolute;
  inset: -40px auto auto -20px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 166, 255, .14), transparent 60%);
  opacity: .7;
  pointer-events: none;
}

.about-intro {
  display:none;
}
.about-points {
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:0 0 12px;
}
.about-point {
  display:flex; gap:10px; align-items:flex-start;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  padding:10px 12px;
  color:#f1f6ff;
  box-shadow:0 10px 20px rgba(0,0,0,.14);
}
.about-point__icon { font-size:1rem; color:#9fd8ff; line-height:1.2; }
.about-stats {
  display:flex; gap:10px; flex-wrap:wrap;
}
.about-stat {
  flex:1 1 120px;
  background:linear-gradient(135deg, rgba(255,255,255,.08), rgba(0,166,255,.12));
  border:1px solid rgba(255,255,255,.14);
  border-radius:12px;
  padding:10px 12px;
  box-shadow:0 12px 22px rgba(0,0,0,.18);
  color:#f2f7ff;
}
.about-stat__num { display:block; font-weight:800; font-size:1.05rem; margin-bottom:4px; color:#fff; }
.about-stat__label { display:block; font-size:.9rem; color:#d0def2; }
.about-copy {
  margin-top:10px;
  display:flex;
  flex-direction:column;
  gap:10px;
  color:#d9e6ff;
}
.about-copy p { margin:0; }

.about-feature {
  position:relative;
  display:grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items:start;
  gap: clamp(24px, 4vw, 48px);
  padding: 20px 0 36px;
}

.about-visual {
  position:relative;
  align-self:start;
  pointer-events:none;
  display:block;
  min-width:0;
  padding: 0 0 48px;
  z-index:1;
}

.about-visual__frame {
  width: 100%;
  max-width: 680px;
  height: clamp(300px, 34vw, 440px);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 20px 36px rgba(0,0,0,.22);
  isolation:isolate;
  background: linear-gradient(135deg, rgba(0,166,255,.14), rgba(226,27,45,.14));
  opacity:.95;
}

.about-visual__frame img {
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  filter:saturate(1.02);
}

.about-visual__stack {
  position:absolute;
  right: clamp(12px, 5%, 32px);
  bottom: 0;
  width: min(68%, 430px);
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items:end;
  z-index:2;
}

.about-visual__float {
  position:relative;
  width:100%;
  aspect-ratio: 3 / 4;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 32px rgba(0,0,0,.26);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(4px);
  opacity:.95;
}

.about-visual__float:nth-child(1) {
  transform: translateY(12px) rotate(-8deg);
}

.about-visual__float:nth-child(2) {
  transform: translateY(0) rotate(-2deg);
}

.about-visual__float:nth-child(3) {
  transform: translateY(18px) rotate(7deg);
}

.about-visual__float img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.about-body {
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:18px;
  padding:22px 22px 18px;
  box-shadow:0 18px 32px rgba(0,0,0,.16);
  position:relative;
  overflow:hidden;
  color:#eaf4ff;
  max-width:none;
  margin:0;
  z-index:2;
  backdrop-filter: blur(6px) saturate(120%);
}

.about-body::after {
  content:"";
  position:absolute; inset:-20px auto auto 65%;
  width:200px; height:200px; border-radius:50%;
  background:radial-gradient(circle, rgba(0,166,255,.12), transparent 60%);
  opacity:.5; pointer-events:none;
}

.about-feature::after {
  content:"";
  position:absolute;
  inset:20px 0 auto 0;
  height: 220px;
  background: radial-gradient(800px 320px at 20% 0%, rgba(0,166,255,.18), transparent 60%);
  opacity:.65;
  pointer-events:none;
  z-index:0;
}

.about-headline {
  margin:4px 0 12px;
  font-size:clamp(22px, 2.6vw, 30px);
  font-weight:800;
  line-height:1.25;
  background: linear-gradient(90deg, #0af, #12d6ff 45%, #e21b2d 85%);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  text-shadow: 0 8px 20px rgba(0,0,0,.18), 0 0 14px rgba(0,166,255,.28);
}
.about-body .lede { color:#d9e9ff; }
.about-points { color:#eaf4ff; }
.about-point {
  display:flex; gap:10px; align-items:flex-start;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  padding:10px 12px;
  color:#f1f6ff;
  box-shadow:0 10px 20px rgba(0,0,0,.14);
}
.about-point__icon { font-size:1rem; color:#9fd8ff; line-height:1.2; }
.about-stat {
  flex:1 1 120px;
  background:linear-gradient(135deg, rgba(255,255,255,.08), rgba(0,166,255,.12));
  border:1px solid rgba(255,255,255,.14);
  border-radius:12px;
  padding:10px 12px;
  box-shadow:0 12px 22px rgba(0,0,0,.18);
  color:#f2f7ff;
}
.about-stat__num { display:block; font-weight:800; font-size:1.05rem; margin-bottom:4px; color:#fff; }
.about-stat__label { display:block; font-size:.9rem; color:#d0def2; }
.about-copy {
  margin-top:10px;
  display:flex;
  flex-direction:column;
  gap:10px;
  color:#d9e6ff;
}

@media (max-width:980px) {
  .about-feature {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 16px 0 28px;
  }

  .about-visual {
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
  }

  .about-body {
    max-width: 800px;
    margin: 0 auto;
  }
}

@media (max-width:640px) {
  .about-feature {
    gap: 20px;
    padding-bottom: 22px;
  }

  .about-visual {
    padding-bottom: 34px;
  }

  .about-visual__frame {
    height: clamp(220px, 62vw, 320px);
    border-radius: 20px;
  }

  .about-visual__stack {
    right: 10px;
    bottom: -6px;
    width: min(82%, 320px);
    gap: 8px;
  }

  .about-visual__float {
    border-radius: 14px;
  }

  .about-body {
    padding: 18px 16px 16px;
    border-radius: 16px;
  }

  .about-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stat:last-child {
    grid-column: 1 / -1;
  }
}

.about-tile__eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: .75rem;
  color: #0a7cc2;
  font-weight: 700;
  margin-bottom: 6px;
}

.about-tile h3 {
  margin: 0 0 10px;
  color: #0a1a33;
}

.about-tile p {
  margin: 0 0 10px;
  color: #2d3748;
}

.about-tile .small-muted {
  color: #6b7280;
  font-size: .95rem;
}

.about-list {
  margin: 0 0 10px;
  padding-left: 18px;
  color: #2d3748;
}

.key-people {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 12px 0;
}
.key-person {
  background: linear-gradient(135deg, rgba(0,166,255,.12), rgba(10,26,51,.04));
  border: 1px solid rgba(10,26,51,.08);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 14px 24px rgba(0,0,0,.12);
  position: relative;
  overflow: hidden;
}
.key-person::after {
  content:"";
  position:absolute; inset:auto -24px -26px auto;
  width:110px; height:110px; border-radius:24px;
  background:linear-gradient(135deg, rgba(0,166,255,.14), rgba(0,166,255,0));
  opacity:.6;
}
.key-person__name {
  font-weight:800;
  color:#0a1a33;
  font-size:1.05rem;
}
.key-person__role {
  color:#4b5563;
  font-weight:600;
  font-size:.95rem;
  margin-top:4px;
}

.about-beliefs {
  margin-top: 28px;
  background: linear-gradient(135deg, rgba(0, 166, 255, .08), rgba(0, 166, 255, .02));
  border: 1px solid rgba(10, 26, 51, .08);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 20px 36px rgba(0, 0, 0, .12);
}

.about-beliefs__head h3 {
  margin: 0 0 6px;
  color: #f4f8ff;
}

.about-beliefs__head p {
  margin: 0 0 12px;
  color: #d7e6ff;
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.belief-card {
  background: #fff;
  border: 1px solid rgba(10, 26, 51, .06);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, .08);
  position: relative;
  overflow: hidden;
}

.belief-card::after {
  content: "";
  position: absolute;
  inset: -30px auto auto -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 166, 255, .14), transparent 60%);
  opacity: .6;
  pointer-events: none;
}

.belief-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 166, 255, .12);
  color: #0a1a33;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.belief-card h4 {
  margin: 0 0 6px;
  color: #0a1a33;
  letter-spacing: .2px;
}

.belief-card p {
  margin: 0;
  color: #2d3748;
}

.about-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-1);
}

.about-img.parallax {
  min-height: 280px;
  aspect-ratio: 4 / 3;
}

.bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0;
}

.bullet i {
  font-style: normal;
  background: rgba(0, 166, 255, .12);
  color: var(--fns-cyan);
  border: 1px solid rgba(0, 166, 255, .25);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
}

/* SERVICES */
.services {
  position: relative;
  background:
    linear-gradient(135deg, rgba(10, 26, 51, .85) 0%, rgba(13, 43, 87, .9) 55%, rgba(10, 26, 51, .9) 100%),
    radial-gradient(1000px 500px at 80% 0%, rgba(0, 166, 255, .16), transparent 60%),
    url('../media/media-4.jpg') center/cover no-repeat;
  background-blend-mode: normal, screen, soft-light;
  color: #eef3fb;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services h2 {
  color: #fff;
}

.services p {
  color: #d4deec;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url('../img/hero-grid.svg') center/cover no-repeat;
  opacity: .18;
  mix-blend-mode: screen;
}

.service-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  padding: 22px;
  height: 100%;
  transition: .2s transform, .2s box-shadow, .2s border-color;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .24);
  color: #eef3fb;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: -20% auto auto -20%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0, 166, 255, .18), transparent 60%);
  transform: rotate(18deg);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, .3);
  border-color: rgba(0, 166, 255, .35);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: rgba(0, 166, 255, .18);
  border: 1px solid rgba(0, 166, 255, .35);
  margin-bottom: 12px;
  font-weight: 900;
  color: #fff;
}

/* TESTIMONIALS */
.testimonials {
  position: relative;
  background:
    linear-gradient(180deg, rgba(10, 26, 51, .86) 0%, rgba(10, 26, 51, .94) 100%),
    url('../media/media-1.jpg') center/cover no-repeat;
  color: #eef3fb;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/hero-grid.svg') center/cover no-repeat;
  opacity: .14;
  mix-blend-mode: screen;
}

.testimonials h2 {
  color: #fff;
}

.testimonials p {
  color: #d7e2f5;
}

/* MEDIA */
.media-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.media-header p {
  margin: 0;
  color: #4b5563;
}

.media-lede {
  margin: 0 0 14px;
  color: #4b5563;
  max-width: 720px;
}

.media-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.media-block {
  background:
    radial-gradient(480px 220px at 90% -20%, rgba(0, 166, 255, .08), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(245, 249, 255, .96));
  border: 1px solid rgba(10, 26, 51, .08);
  border-radius: 16px;
  padding: 16px 16px 12px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media-block__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid rgba(10, 26, 51, .06);
  padding-bottom: 8px;
}

.media-block__header h3 {
  margin: 0;
  color: #0a1a33;
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: 1.05rem;
  background: linear-gradient(90deg, var(--fns-blue), var(--fns-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.media-block__header p {
  margin: 0;
  color: #4b5563;
  font-size: .95rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 6px;
}

.media-grid--tight {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.media-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.media-card {
  background: #fff;
  border: 1px solid var(--fns-grey-200);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}

.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(10, 26, 51, .18);
}

.media-frame {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 166, 255, .08), rgba(0, 166, 255, .02));
}

.media-frame::after {
  content: "";
  display: block;
  padding-top: 56%;
}

/* 16:9 placeholder */
.media-frame img,
.media-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 10px;
}

.media-frame video {
  background: #000;
}

.media-meta {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(10,26,51,.78), rgba(0,166,255,.25));
  color: #eaf4ff;
  box-shadow: 0 8px 16px rgba(0,0,0,.2);
  z-index: 2;
}

.media-type {
  font-size: .8rem;
  color: #eaf4ff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.media-open {
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 4px 7px;
  cursor: pointer;
  font-size: .95rem;
  color: #0a1a33;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.media-open:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, .15);
  border-color: rgba(0, 166, 255, .35);
}

.media-empty {
  margin: 12px 0 0;
  color: #6b7280;
}

.media-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 6px;
}

.media-load-more {
  background: #0a1a33;
  color: #fff;
  border-color: rgba(10, 26, 51, .2);
}

.media-card.is-hidden {
  display: none;
}

.section-head {
  margin-bottom: 18px;
}
.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: .8rem;
  color: var(--fns-cyan);
  margin: 0;
  font-weight: 800;
}
.section-head h2 {
  margin: 4px 0;
  font-family:"Montserrat",sans-serif;
  font-weight:800;
  letter-spacing:.5px;
  text-transform:uppercase;
  font-size:clamp(26px, 3vw, 34px);
  background:linear-gradient(90deg, #0af, #12d6ff 45%, #e21b2d 85%);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  text-shadow:0 6px 18px rgba(0,0,0,.18), 0 0 12px rgba(0,166,255,.25);
}
.section-head .lede {
  margin: 0;
  color: #4b5563;
  max-width: 720px;
}

/* Projects */
.projects {
  background:#0f172a;
  color:#e9f4ff;
  position:relative;
  overflow:hidden;
}
.projects::before {
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,166,255,.12), rgba(10,26,51,.85));
  opacity:.9; pointer-events:none;
}
.projects .container { position:relative; z-index:1; }
.projects .section-head { margin-bottom:22px; }
.projects .section-head .eyebrow { color:#9fd3ff; }
.projects .section-head .lede { color:#c8d8f6; }
.projects-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:18px;
}
.project-card {
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  padding:16px;
  box-shadow:0 18px 32px rgba(0,0,0,.2);
}
.project-card__head h3 {
  margin:0 0 6px; color:#fff;
  font-family:"Montserrat",sans-serif;
  font-weight:800;
  letter-spacing:.45px;
  text-transform:uppercase;
  font-size:1.1rem;
  position:relative;
}
.project-card__head h3::after {
  content:"";
  display:block;
  width:76px;
  height:3px;
  margin-top:6px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--fns-cyan), rgba(226,27,45,.9));
  box-shadow:0 8px 14px rgba(0,166,255,.35);
}
.project-card__head p { margin:0 0 10px; color:#c8d8f6; }
.project-thumb-row {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(160px,1fr));
  gap:12px;
}
.media-card--project {
  background:#fff;
  border:1px solid var(--fns-grey-200);
  border-radius:14px;
  overflow:hidden;
  box-shadow: var(--shadow-1);
  width:100%;
}
.projects .project-load-more,
.projects .media-load-more {
  background:linear-gradient(115deg, rgba(0,166,255,.3), rgba(226,27,45,.32));
  color:#eaf6ff;
  border:1px solid rgba(255,255,255,.35);
  box-shadow:0 12px 22px rgba(0,0,0,.2);
}
.projects .project-load-more:hover,
.projects .media-load-more:hover {
  transform:translateY(-1px);
  box-shadow:0 16px 28px rgba(0,0,0,.24);
}
.media-card--project .media-frame { aspect-ratio:16 / 9; }
.media-card--project .media-meta { color:#0a1a33; }
.media-card--project .media-open { background:#0a1a33; color:#fff; border-color:rgba(10,26,51,.2); }

.media-lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(4px);
  padding: 20px;
}

.media-lightbox[hidden] {
  display: none;
}

.media-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .65);
}

.media-lightbox-content {
  position: relative;
  background: #0a1a33;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, .35);
  width: min(960px, 92vw);
}

.media-lightbox-body {
  position: relative;
  overflow: hidden;
  background: #000;
  border-radius: 10px;
  max-height: 80vh;
}

.media-lightbox-body img,
.media-lightbox-body video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.media-lightbox-close {
  position: absolute;
  right: 10px;
  top: 10px;
  border: 0;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 1.4rem;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
}

.media-lightbox-close:hover {
  background: rgba(255, 255, 255, .16);
}

/* PROCESS */
.process {
  position: relative;
  background:
    linear-gradient(155deg, #0a1831 0%, #0c2343 35%, #112f5f 72%, #182a4c 100%),
    radial-gradient(1100px 520px at 18% 18%, rgba(0,166,255,.18), transparent 62%),
    linear-gradient(120deg, rgba(226,27,45,.12), transparent 46%);
  background-blend-mode: screen, normal, normal;
  color: #e9f4ff;
}

.process::before {
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(110deg, rgba(10,24,49,.9) 0%, rgba(10,24,49,.62) 32%, rgba(10,24,49,.38) 58%, transparent 82%),
    url('../media/media-5.jpg') center/cover no-repeat;
  opacity:.32;
  mix-blend-mode: screen;
  pointer-events:none;
}

.process::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/hero-grid.svg') center/cover no-repeat;
  opacity: .12;
  pointer-events: none;
}

.process .container {
  position: relative;
  z-index: 1;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.step {
  background: #fff;
  border: 1px solid var(--fns-grey-200);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow-1);
  position: relative;
  overflow: hidden;
  color: #0f172a;
}

.step::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 166, 255, .12), transparent 60%);
}

.step .n {
  display: inline-block;
  font-weight: 800;
  color: var(--fns-cyan);
}

.client-carousel {
  margin-top: 28px;
  background: linear-gradient(135deg, rgba(0, 166, 255, .08), rgba(0, 166, 255, .02));
  border: 1px solid rgba(10, 26, 51, .06);
  border-radius: 16px;
  padding: 18px 16px 12px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .12);
}

.client-carousel__head {
  text-align: center;
  margin-bottom: 16px;
  max-width: 760px;
  margin-inline: auto;
}

.client-carousel__head h3 {
  margin: 6px 0 10px;
  color: #f4f8ff;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: .01em;
}

.client-carousel__head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: .75rem;
  color: #8fd6ff;
  margin: 0 0 4px;
}

.client-carousel__head .subhead {
  margin: 0;
  color: #d7e6ff;
  font-size: 1rem;
  line-height: 1.7;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 10px 6px;
  animation: logo-scroll 24s linear infinite;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-item {
  min-width: 140px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
  border: 1px solid rgba(10, 26, 51, .05);
}

.logo-item img {
  max-width: 140px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(10%);
  opacity: .95;
}

.logo-item--text {
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(0, 166, 255, .12), rgba(0, 166, 255, .04));
}

.logo-item--text span {
  font-weight: 800;
  color: #0a1a33;
  letter-spacing: .3px;
}

@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.special-project {
  margin-top: 18px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(10, 26, 51, .08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .1);
}

.special-project__title {
  font-weight: 800;
  color: #0a1a33;
  margin-bottom: 8px;
  letter-spacing: .3px;
}

.special-project p {
  margin: 0 0 10px;
  color: #2d3748;
}

.special-project__cta {
  color: #0a7cc2;
  font-weight: 700;
}

.contact-section {
  background:
    radial-gradient(1200px 600px at 85% 10%, rgba(0, 166, 255, .14), transparent 60%),
    linear-gradient(135deg, rgba(10, 26, 51, .95) 0%, rgba(8, 32, 68, .92) 100%);
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  background:
    radial-gradient(900px 420px at 92% -8%, rgba(0, 166, 255, .22), transparent 60%),
    linear-gradient(135deg, rgba(20, 40, 70, .96), rgba(10, 24, 50, .92));
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 24px 44px rgba(0, 0, 0, .32), 0 0 0 1px rgba(255, 255, 255, .05) inset;
  position: relative;
  overflow: hidden;
  color: #eaf2ff;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .05), transparent 40%);
  pointer-events: none;
}

.contact-panel::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 166, 255, .26), transparent 60%);
  opacity: .8;
  pointer-events: none;
}

.contact-title-wrap {
  display: inline-block;
  position: relative;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 14px 26px rgba(0, 0, 0, .28);
}

.contact-title-wrap::after {
  content: "";
  position: absolute;
  inset: -12px -14px auto auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 166, 255, .28), transparent 60%);
  opacity: .8;
  pointer-events: none;
  z-index: -1;
}

.contact-copy h3 {
  margin: 8px 0 8px;
  color: #fff;
  line-height: 1.2;
  font-size: 1.4rem;
}

.contact-copy h3 span {
  display: inline-block;
  color: #dce9ff;
  font-size: 1.2rem;
}

.contact-title-wrap .eyebrow {
  background: linear-gradient(90deg, var(--fns-cyan), #e21b2d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  letter-spacing: 2px;
  display: inline-block;
  margin: 0 0 4px 0;
  text-shadow: 0 6px 14px rgba(0, 0, 0, .35);
  font-size: 1.3rem;
}

.contact-copy .sub {
  margin: 0 0 12px;
  color: #d8e6ff;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-weight: 700;
  letter-spacing: .1px;
  border: 1px solid rgba(255, 255, 255, .2);
}

.contact-points {
  margin: 0;
  padding-left: 18px;
  color: #d8e6ff;
  display: grid;
  gap: 6px;
}

.contact-points li {
  margin: 0;
}

.contact-actions--panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.contact-actions__card {
  background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, .26);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #e8efff;
}

.contact-chip--solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--fns-cyan), #5bd4ff);
  color: #0a1a33;
  font-weight: 800;
  letter-spacing: .2px;
}

.contact-meta-sm {
  color: #cfd6e0;
  font-size: .95rem;
}

/* CTA STRIP */
.cta-strip {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(800px 300px at 85% -10%, rgba(0, 166, 255, .18), transparent 60%),
    linear-gradient(135deg, var(--fns-blue) 0%, var(--fns-navy) 60%);
  border-radius: 16px;
  padding: 36px 28px;
}

.cta-strip .sub {
  opacity: .9;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--fns-navy);
  color: #fff;
  padding: 48px 0 24px;
  margin-top: 0;
  background: radial-gradient(120% 120% at 20% 20%, rgba(0, 166, 255, .08), transparent 45%), linear-gradient(135deg, #071326 0%, #0a1a33 60%, #0a1a33 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.footer-col {
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 14px;
  background: rgba(255, 255, 255, .02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer h4 {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #e8efff;
  letter-spacing: .2px;
}

.site-footer h5 {
  margin: 0 0 12px;
  font-weight: 700;
  color: #e8efff;
  letter-spacing: .2px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  justify-content: center;
  text-align: center;
}

.footer-col--contact {
  align-items: center;
  text-align: center;
}

.footer-logo {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .28));
}

.footer-name {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: .2px;
}

.footer-contact-block {
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer-contact-card {
  width: 100%;
  max-width: 380px;
  display: grid;
  gap: 10px;
  padding: 18px 16px;
  border-radius: 16px;
  background:
    radial-gradient(520px 200px at 90% -20%, rgba(0, 166, 255, .12), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01));
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 16px 28px rgba(0, 0, 0, .22);
  text-align: center;
  align-items: center;
}

.contact-eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: .72rem;
  color: #7ec8ff;
  font-weight: 700;
}

.footer-address {
  font-style: normal;
  color: #cfd6e0;
  line-height: 1.5;
  margin: 0;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #e8efff;
  font-weight: 700;
  font-size: .85rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  justify-content: center;
  width: 100%;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 11px;
  border-radius: 12px;
  color: #eaf6ff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .1px;
  font-size: .95rem;
  background: linear-gradient(135deg, rgba(0, 166, 255, .2), rgba(0, 166, 255, .05));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 12px 22px rgba(0, 0, 0, .2);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.contact-chip--primary {
  background:linear-gradient(135deg, var(--fns-cyan), var(--fns-cyan-600));
  color:#001428;
  border:0;
  box-shadow:0 14px 26px rgba(0,166,255,.35);
}

.contact-chip--outline {
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.35);
  color:#eaf6ff;
}

.contact-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .3);
  box-shadow: 0 16px 26px rgba(0, 0, 0, .25);
}

.contact-chip--ghost {
  background: rgba(255, 255, 255, .04);
  border: 1px dashed rgba(255, 255, 255, .22);
  box-shadow: none;
  cursor: pointer;
}

.contact-chip--ghost:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .35);
}

.chip-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: .76rem;
  letter-spacing: .2px;
}

.contact-number {
  display:block;
  margin:6px 0 0;
  color:#cfd6e0;
  font-weight:600;
}
.no-tel,
.no-tel__digits {
  user-select:text;
  -webkit-touch-callout:none;
}

.footer-contact,
.site-footer li {
  font-size: .95rem;
  color: #cfd6e0;
  margin: 6px 0;
}

.footer-contact a {
  color: #eaf6ff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  padding-bottom: 2px;
}

.footer-contact a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, .35);
}

.tel-link {
  color: #eaf6ff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: #dbe5f5;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  position: relative;
  transition: color .2s ease, transform .2s ease, background .2s ease, box-shadow .2s ease;
  border-radius: 12px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .05);
}

.footer-links a::before {
  content: "";
  width: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--fns-cyan), rgba(226, 27, 45, .8));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
  flex-shrink: 0;
}

.footer-links--pill a {
  padding-left: 14px;
  padding-right: 14px;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .18);
}

.footer-links a:hover::before {
  transform: scaleX(1);
}

.accreditations {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 14px;
  margin-bottom: 14px;
}

.accred-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(0,166,255,.18), rgba(10,26,51,.08));
  border: 1px solid rgba(255, 255, 255, .12);
  color: #e8efff;
  font-weight: 800;
  letter-spacing: .12px;
  font-size: 1rem;
  box-shadow: 0 14px 26px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255,255,255,.25);
  justify-content: flex-start;
  width: 100%;
}

.accred-badge img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .22));
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: #cfd6e0;
  margin-top: auto;
}

.footer-credit a {
  color: var(--fns-cyan);
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

.credit-logo {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0af, #0a1a33);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  letter-spacing: .4px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, .25);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 32px;
  padding-top: 16px;
  text-align: center;
  font-size: .85rem;
  color: #cfd6e0;
}

/* CONTACT MODAL */
.contact-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 999;
  padding: 120px 18px 24px;
  backdrop-filter: blur(3px);
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 20, .6);
}

.contact-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  max-height: 80vh;
  background: linear-gradient(135deg, rgba(12, 26, 50, .96), rgba(10, 26, 51, .96));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 24px 20px 20px;
  box-shadow: 0 24px 38px rgba(0, 0, 0, .32);
  color: #e8efff;
  overflow: auto;
}

.contact-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  font-size: 1.1rem;
  cursor: pointer;
}

.contact-modal__subtitle {
  margin: 4px 0 12px;
  color: #cfd6e0;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form__field {
  display: grid;
  gap: 6px;
}

.contact-form__field span {
  font-size: .9rem;
  color: #cfd6e0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  border-radius: 12px;
  padding: 10px 12px;
  color: #fff;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--fns-cyan);
  border-color: transparent;
  box-shadow: 0 0 0 4px rgba(0, 166, 255, .15);
}

.contact-form__submit {
  width: 100%;
  margin-top: 4px;
}

.contact-form__feedback {
  min-height: 18px;
  margin: 6px 0 0;
  font-size: .9rem;
  color: #cfd6e0;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 18px;
  backdrop-filter: blur(3px);
}

.cookie-modal[hidden] {
  display: none;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 20, .6);
}

.cookie-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  max-height: 80vh;
  background: linear-gradient(135deg, rgba(12, 26, 50, .96), rgba(10, 26, 51, .96));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 24px 20px 20px;
  box-shadow: 0 24px 38px rgba(0, 0, 0, .32);
  color: #e8efff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  font-size: 1.1rem;
  cursor: pointer;
}

.cookie-modal__subtitle {
  margin: 4px 0 10px;
  color: #cfd6e0;
}

.cookie-modal__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.cookie-settings-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 166, 255, .28), rgba(0, 166, 255, .08));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .24);
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, .2);
}

.cookie-settings-btn:hover {
  box-shadow: 0 16px 28px rgba(0, 0, 0, .25);
  border-color: rgba(255, 255, 255, .32);
}

.cookie-modal__feedback {
  font-size: .9rem;
  color: #cfd6e0;
  min-height: 18px;
}

.cookie-modal__body {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 12px;
  overflow: auto;
  max-height: 50vh;
  min-height: 140px;
}

.cookie-declaration {
  color: #cfd6e0;
  font-size: .95rem;
}

.cookie-loading {
  margin: 0;
  color: #9fb4d4;
  font-size: .9rem;
}

.cookie-fallback {
  color: #9fd3ff;
  text-decoration: none;
  font-size: .9rem;
  border-bottom: 1px dashed rgba(255, 255, 255, .3);
  padding-bottom: 2px;
}

.cookie-fallback:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, .5);
}


@media (max-width:640px) {
  .footer-logo {
    width: 100px;
  }

  .footer-col {
    padding: 14px;
  }

  .footer-links a {
    padding: 9px 10px;
  }

  .accordion-hint {
    display: none;
  }
}

/* keep tel links tap-only on touch; non-touch devices see styled text without click */
@media (hover:hover) and (pointer:fine) {
  .tel-link {
    pointer-events: none;
    cursor: default;
    border-bottom: 0;
  }
}

.footer-accordion {
  margin: 0;
}

.footer-accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  user-select: none;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.footer-accordion summary:hover {
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .15);
}

.footer-accordion summary::-webkit-details-marker {
  display: none;
}

.footer-accordion h5 {
  margin: 0;
}

.accordion-hint {
  font-size: .85rem;
  color: #cfd6e0;
  margin-left: auto;
}

.accordion-icon {
  transition: transform .2s ease;
  font-size: 1.1rem;
}

.footer-accordion[open] .accordion-icon {
  transform: rotate(90deg);
}

/* ==========================================================================
   ANIMATIONS & PARALLAX
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal.delay-1 {
  transition-delay: .2s;
}

.reveal.delay-2 {
  transition-delay: .4s;
}

.reveal.delay-3 {
  transition-delay: .6s;
}

.reveal.delay-4 {
  transition-delay: .8s;
}

.parallax {
  position: relative;
  overflow: hidden;
}

.parallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transform-origin: center center;
  will-change: transform;
  transition: transform .2s ease-out;
}

.about-visual .parallax img {
  transform: scale(1.18);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:768px) {
  .hero {
    background-size: cover;
    background-position: center;
    min-height: clamp(480px, 72vh, 640px);
  }

  .hero-rotator {
    min-height: clamp(480px, 72vh, 640px);
    height: auto;
    align-items: stretch;
  }

  .hero-face--boat {
    background-size: cover;
    background-position: center;
  }

  .hero-face>.container {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .hero-highlights {
    position:relative;
    grid-template-columns:1fr;
    gap:12px;
    min-height:200px;
    padding:6px 0;
  }
  .hero-highlight {
    padding:8px 10px;
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:nowrap;
    position:absolute;
    inset:0;
    width:100%;
    opacity:0;
    pointer-events:none;
    transition:opacity .5s ease;
    background:transparent;
    border:0;
    border-radius:0;
    box-shadow:none;
  }
  .hero-highlight.is-active {
    opacity:1;
    pointer-events:auto;
  }
  .hero-highlight--thumb:nth-child(even) { flex-direction:row-reverse; }
  .hero-highlight__thumb {
    width:54%;
    aspect-ratio: 4 / 3;
    border-radius:14px;
    flex-shrink:0;
    overflow:hidden;
    box-shadow:0 10px 20px rgba(0,0,0,.24);
  }
  .hero-highlight__label {
    position:static;
    background:none;
    box-shadow:none;
    padding:0;
    font-size:.78rem;
    letter-spacing:.025em;
    flex:1;
    line-height:1.3;
    color:#eaf4ff;
  }
  .hero-highlight--thumb { padding:8px 10px; }

  .nav-dots {
    display: none;
  }

  main section {
    min-height: auto;
    height: auto;
    padding: 64px 0;
  }

  .media-columns {
    grid-template-columns: 1fr;
  }

  .media-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .logo-track {
    animation-duration: 18s;
  }

  .hero {
    padding-top: 52px;
    padding-bottom: 28px;
  }
}

/* Offset anchored sections so titles aren’t hidden under navbar */
section[id] {
  scroll-margin-top: 140px;
}

body.no-scroll {
  overflow: hidden;
}

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1500;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--fns-cyan), var(--fns-cyan-600));
  color: #001428;
  border: 0;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(0, 166, 255, .35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease;
  transform: scale(.94);
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 166, 255, .4);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  animation: pulseFloat 2.4s ease-in-out infinite;
}

body.no-scroll .back-to-top {
  opacity: 0;
  pointer-events: none;
  animation: none;
}

@keyframes pulseFloat {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 14px 28px rgba(0, 166, 255, .35);
  }

  50% {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 18px 36px rgba(0, 166, 255, .42);
  }
}
