/* ============================================================
   CARPATHIAN COURIER — Design System
   Custom visual system for Carpathian Courier
   ============================================================ */

/* ---- @font-face ------------------------------------------- */
@font-face {
  font-family: 'SuisseIntl';
  src: url('../static/fonts/SuisseIntl-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SuisseIntl';
  src: url('../static/fonts/SuisseIntl-Book.woff2') format('woff2');
  font-weight: 450;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SuisseIntl';
  src: url('../static/fonts/SuisseIntl-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SuisseIntl';
  src: url('../static/fonts/SuisseIntl-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GeistMono';
  src: url('../static/fonts/GeistMono-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GeistMono';
  src: url('../static/fonts/GeistMono-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GeistMono';
  src: url('../static/fonts/GeistMono-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---- Design Tokens --------------------------------------- */
:root {
  --brand-dark:   #052424;
  --brand-accent: #ABFF02;
  --brand-text:   #ffffff;

  --bg:         var(--brand-dark);
  --bg-mid:     #083030;
  --bg-light:   #0A3838;
  --accent:     var(--brand-accent);
  --accent-dim: rgba(171,255,2,0.15);
  --white:      var(--brand-text);
  --gray:       #c2c2c2;
  --muted:      #A7A1A1;
  --border:     rgba(255,255,255,0.10);
  --border-mid: rgba(255,255,255,0.06);
  --focus-ring: rgba(171,255,2,0.75);

  --font:       'SuisseIntl', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:       'GeistMono', 'Courier New', monospace;

  --nav-h:      4.5rem;
  --max-w:      1280px;
  --gap:        clamp(24px, 4vw, 64px);
  --section-py: clamp(80px, 10vw, 160px);

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.homepage {
  position: relative;
}

p { line-height: 1.62; }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

/* ---- Layout Utilities ------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}

.section { padding-block: var(--section-py); }

.label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
  background: transparent;
}

.navbar {
  position: fixed;
  z-index: 2;
  background: transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.nav.scrolled,
.navbar.navbar--scrolled {
  background: transparent;
  border-bottom-color: transparent;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: clamp(0.75rem, 2vw, 2.25rem);
  width: 100%;
  max-width: var(--max-w);
  min-width: 0;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}

.navbar__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  min-height: 44px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: 0;
  max-height: none;
}

.navbar__logo img {
  height: 46px;
  width: auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28)) !important;
  mix-blend-mode: normal !important;
  opacity: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  gap: clamp(1rem, 2vw, 2.25rem);
  margin-left: 0;
  flex-wrap: nowrap;
}

.nav__links li {
  min-width: max-content;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 2.125rem;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
  position: relative;
}

.nav__link:hover,
.nav__link.active { color: var(--white); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--accent);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  margin-left: clamp(0.5rem, 1vw, 1rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav__cta:hover { opacity: 0.88; transform: translateY(-1px); }

.nav__hamburger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  margin-left: auto;
  border-radius: 6px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(15,61,46,0.98);
  padding: 24px clamp(20px,5vw,80px) 40px;
  border-bottom: 1px solid var(--border);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-size: 18px;
  font-weight: 500;
  color: var(--gray);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-mid);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--white); }
.nav__mobile .nav__cta {
  margin-top: 16px;
  justify-content: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 80px;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000;
}

.hero__video {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}

.hero__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.hero__headline {
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.03em;
  max-width: 820px;
  margin-bottom: 28px;
}

.hero__headline em {
  font-style: normal;
  color: var(--accent);
}

.hero__sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--gray);
  max-width: 520px;
  line-height: 1.55;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--bg);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 4px;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.btn-primary:hover,
.btn-primary:focus-visible { opacity: 0.9; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  border-radius: 4px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
}

.btn-ghost:focus-visible {
  border-color: rgba(171,255,2,0.65);
  background: rgba(171,255,2,0.14);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: clamp(20px, 5vw, 80px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

/* --- Hero cinematic overlay/pin styling --- */
.hero--cinematic {
  position: relative;
  min-height: 100svh;
  z-index: 1;
}

.hero--cinematic .hero__content {
  position: relative;
  z-index: 4;
}

.hero--cinematic .hero__video {
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 45%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.12) 45%, rgba(0,0,0,0.55) 100%),
    repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,0.014) 0 1px, rgba(255,255,255,0) 1px 3px);
}

.hero__top-banner {
  position: absolute;
  top: 6vh;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 4;
  pointer-events: none;
  font-family: var(--mono);
  font-size: clamp(11px, 1.15vw, 15px);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 0 30px rgba(171,255,2,0.28), 0 0 90px rgba(171,255,2,0.16);
  opacity: 1;
}

.hero--cinematic.hero--cinematic-ready .hero__eyebrow,
.hero--cinematic.hero--cinematic-ready .hero__headline,
.hero--cinematic.hero--cinematic-ready .hero__sub,
.hero--cinematic.hero--cinematic-ready .hero__top-banner {
  opacity: 0;
  transform: translateY(22px);
}

.hero--cinematic.hero--cinematic-ready .hero__top-banner {
  transform: translateX(-50%) translateY(22px);
}

.hero--cinematic.hero--cinematic-ready .hero__headline {
  transform: translateY(28px);
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.4; }
}

/* ============================================================
   TICKER / STATS BAR
   ============================================================ */
.stats-bar {
  position: relative;
  z-index: 1;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}

.stats-bar__track {
  display: flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.stats-bar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.stats-bar__num {
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stats-bar__text {
  font-size: 13px;
  color: var(--muted);
  font-weight: 450;
}

.stats-bar__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   VIDEO CAROUSEL (Numbered Sections 01–04)
   ============================================================ */
.vc {
  padding-block: var(--section-py);
  border-top: 1px solid var(--border);
}

.vc__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 64px;
}

.vc__title {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 560px;
}

.vc__nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.vc__nav-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
}

.vc__nav-btn:hover,
.vc__nav-btn.active {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--accent);
}

.vc__slides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  align-items: stretch;
}

.vc__slide {
  display: none;
  grid-column: span 2;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  align-items: stretch;
}

.vc__slide.active { display: grid; }

.vc__info {
  background: var(--bg-mid);
  padding: clamp(32px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
}

.vc__num {
  font-family: var(--mono);
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.15);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.vc__slide-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.vc__slide-title {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.vc__slide-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
  max-width: 380px;
  flex: 1;
  margin-bottom: 32px;
}

.vc__slide-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s;
}

.vc__slide-link:hover { gap: 12px; }

.vc__video-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
  /* backstop: height normally comes from grid stretch (min-height: 480px on sibling)
     but that may not establish a definite height for the child video's height:100% */
  min-height: 400px;
}

.vc__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vc__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.vc__dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  transition: width 0.3s, background 0.3s;
}

.vc__dot.active {
  width: 24px;
  background: var(--accent);
}

/* ============================================================
   FULLSCREEN FEATURES
   ============================================================ */
.ff {
  border-top: 1px solid var(--border);
}

.ff__item {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.ff__item:nth-child(even) .ff__content { order: 2; }
.ff__item:nth-child(even) .ff__media   { order: 1; }

.ff__content {
  position: relative;
  z-index: 2;
  width: 50%;
  padding: clamp(60px, 8vw, 120px) clamp(32px, 5vw, 80px);
}

.ff__num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ff__num::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--muted);
}

.ff__title {
  font-size: clamp(32px, 3.5vw, 54px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.ff__title em {
  font-style: normal;
  color: var(--accent);
}

.ff__desc {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--gray);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 36px;
}

.ff__points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.ff__point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

.ff__point::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
  flex-shrink: 0;
}

.ff__media {
  width: 50%;
  position: relative;
  align-self: stretch;
  /* '100%' cannot resolve when parent has only min-height (no definite height);
     use viewport unit so abs-positioned video children always have a height */
  min-height: 100svh;
  overflow: hidden;
}

/* Desktop: wide video shown, vert hidden */
.ff__media video.vert  { display: none; }
.ff__media video.wide  { display: block; }

.ff__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* ============================================================
   SOLUTIONS GRID
   ============================================================ */
.sol {
  padding-block: var(--section-py);
  border-top: 1px solid var(--border);
}

.sol__header {
  margin-bottom: 56px;
}

.sol__intro {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--muted);
  max-width: 480px;
  margin-top: 16px;
  line-height: 1.6;
}

.sol__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.sol__card {
  background: var(--bg-mid);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}

.sol__card:hover { background: var(--bg-light); }

.sol__card-video {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.sol__card-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.sol__card:hover .sol__card-video video {
  transform: scale(1.03);
}

.sol__card-body {
  padding: 28px 32px 36px;
  border-top: 1px solid var(--border-mid);
}

.sol__card-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.sol__card-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.sol__card-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.sol__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s;
}

.sol__card-link:hover { gap: 10px; }

/* ============================================================
   QUOTE / TESTIMONIAL
   ============================================================ */
.quote {
  padding-block: var(--section-py);
  border-top: 1px solid var(--border);
}

.quote__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.quote__media {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.quote__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote__content {}

.quote__mark {
  font-family: var(--mono);
  font-size: 80px;
  line-height: 0.8;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0.6;
}

.quote__text {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 32px;
}

.quote__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quote__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.quote__avatar img { width: 100%; height: 100%; object-fit: cover; }

.quote__name {
  font-size: 15px;
  font-weight: 600;
}
.quote__role {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* ============================================================
   CTA FORM SECTION
   ============================================================ */
.cta-form {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-py);
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at top left, rgba(171,255,2,0.08), transparent 36%),
    linear-gradient(180deg, #083030 0%, #062727 100%);
}

.cta-form__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}

.cta-form__copy {
  position: sticky;
  top: calc(var(--nav-h) + 28px);
  align-self: start;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.cta-form__copy .label {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  margin-bottom: 20px;
  border-radius: 999px;
  border: 1px solid rgba(171,255,2,0.24);
  background: rgba(171,255,2,0.08);
}

.cta-form__title {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 12ch;
}

.cta-form__title em {
  font-style: normal;
  color: var(--accent);
}

.cta-form__desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 46ch;
}

.cta-form__features {
  display: grid;
  gap: 12px;
}

.cta-form__feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--gray);
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(4, 19, 17, 0.3);
}

.cta-form__feat-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(171,255,2,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 11px;
}

.cta-form__form {
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: clamp(28px, 3vw, 40px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.cta-form__form-header {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cta-form__form-kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.cta-form__form-title {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-form__form-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray);
  max-width: 52ch;
}

.quote-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.quote-highlight {
  min-height: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border-radius: 12px;
}

.quote-highlight__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.quote-highlight__value {
  font-size: 15px;
  line-height: 1.6;
  color: var(--white);
}

.quote-form__section {
  position: relative;
  margin-bottom: 16px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02));
}

.quote-form__section-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.quote-form__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: rgba(171,255,2,0.12);
  border: 1px solid rgba(171,255,2,0.24);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0;
  flex-shrink: 0;
}

.quote-form__section-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
}

.quote-form__section-desc {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form__row--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form__field {
  margin-bottom: 12px;
}

.form__field--full {
  margin-bottom: 0;
}

.form__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(3,18,15,0.34);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--white);
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: rgba(171,255,2,0.5);
  background: rgba(255,255,255,0.06);
}

.form__input::placeholder,
.form__textarea::placeholder { color: var(--muted); }

.form__select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.form__select option {
  color: #07110f;
  background: #f5f8f6;
}

.form__select option:checked {
  color: #07110f;
  background: #dff5e7;
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__textarea--compact {
  min-height: 84px;
}

.form__textarea--address {
  min-height: 148px;
}

.form__assist {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}

.form__assist.is-valid {
  color: #dcffe3;
}

.form__assist.is-error {
  color: #ffd4d4;
}

.form__suggestions {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.form__suggestion {
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--white);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.form__suggestion:hover,
.form__suggestion:focus-visible {
  border-color: rgba(171,255,2,0.32);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

.form__suggestion-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.form__suggestion-meta {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.quote-route-grid {
  align-items: stretch;
  gap: 14px;
}

.quote-route-card {
  margin-bottom: 0;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(6, 23, 20, 0.32);
}

.quote-route-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.quote-route-card__meta {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 14px;
}

.quote-distance-card {
  margin-top: 8px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(171,255,2,0.16);
  background: linear-gradient(135deg, rgba(171,255,2,0.08), rgba(255,255,255,0.02));
}

.quote-distance-card__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.quote-distance-card__value {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 8px;
}

.quote-distance-card__meta {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray);
}

.form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 15px 24px;
  background: var(--accent);
  color: var(--bg);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 10px;
  margin-top: 10px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.form__submit:hover { opacity: 0.88; transform: translateY(-1px); }

.form__submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.form__note {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 62ch;
}

.form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__status {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 4px;
  padding: 0;
  color: transparent;
  min-height: 0;
  transition: padding 0.2s ease, min-height 0.2s ease;
}

.form__status.is-visible {
  padding: 10px 12px;
  min-height: 42px;
}

.form__status--success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #d6ffe6;
}

.form__status--error {
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #ffd4d4;
}

.form__status--info {
  background: rgba(171,255,2,0.12);
  border: 1px solid rgba(171,255,2,0.32);
  color: #f3ffd2;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding-top: 64px;
  padding-bottom: 32px;
}

.footer__top {
  display: block;
  margin-bottom: 64px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer__logo img:not(.footer__logo-image) {
  width: 26px;
  height: 26px;
}

.footer__logo-image {
  width: auto;
  height: 42px;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.18));
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}

.footer__group {
  display: flex;
  flex-direction: column;
}

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer__link:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--border-mid);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 13px;
  color: var(--muted);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--white); }

/* ============================================================
   INNER PAGE HERO (About, Services, etc.)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,36,36,0.9) 0%, rgba(5,36,36,0.6) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.page-hero__title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 700px;
  margin-bottom: 24px;
}

.page-hero__title em {
  font-style: normal;
  color: var(--accent);
}

.page-hero__desc {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--gray);
  max-width: 540px;
  line-height: 1.6;
}

/* ============================================================
   TEXT + MEDIA SPLIT (reusable)
   ============================================================ */
.split {
  padding-block: var(--section-py);
  border-top: 1px solid var(--border);
}

.split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split__inner.reverse .split__media { order: -1; }

.split__label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.split__title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.split__text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 28px;
}

.split__media {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.split__media img,
.split__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fleet lineup composite */
.split__media.fleet-lineup {
  background: var(--brand-dark);
  display: flex;
  align-items: flex-end;
  padding: 0;
}

.fleet-lineup__inner {
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
}

.fleet-lineup__van {
  object-fit: contain;
  height: 100%;
  width: auto;
  flex-shrink: 0;
}

.fleet-lineup__van--sm {
  width: 30%;
  transform: translateX(12%);
  z-index: 1;
}

.fleet-lineup__van--md {
  width: 38%;
  z-index: 3;
}

.fleet-lineup__van--lg {
  width: 42%;
  transform: translateX(-10%);
  z-index: 2;
}

/* ============================================================
   VALUES / CARDS GRID
   ============================================================ */
.values {
  padding-block: var(--section-py);
  border-top: 1px solid var(--border);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.value-card {
  background: var(--bg-mid);
  padding: 36px 32px;
  transition: background 0.2s;
}

.value-card:hover { background: var(--bg-light); }

.value-card__icon {
  margin-bottom: 24px;
  color: var(--accent);
  display: flex;
  align-items: center;
}

.value-card__icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.value-card__text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team {
  padding-block: var(--section-py);
  border-top: 1px solid var(--border);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.team__grid--duo {
  grid-template-columns: repeat(2, 1fr);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.team__grid--single {
  grid-template-columns: 1fr;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.team-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-mid);
  border: 1px solid var(--border);
}

.team-card__avatar span {
  font-family: var(--mono);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  user-select: none;
}

.team-card {
  background: var(--bg-mid);
  overflow: hidden;
}

.team-card__photo {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3);
  transition: transform 0.5s var(--ease-out), filter 0.3s;
}

.team-card:hover .team-card__photo img {
  transform: scale(1.04);
  filter: grayscale(0);
}

.team-card__info {
  padding: 20px 24px;
  border-top: 1px solid var(--border-mid);
}

.team-card__name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 13px;
  color: var(--muted);
}

/* ============================================================
   RESOURCES / BLOG GRID
   ============================================================ */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.resource-card {
  background: var(--bg-mid);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}

.resource-card:hover { background: var(--bg-light); }

.resource-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.resource-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.resource-card:hover .resource-card__thumb img {
  transform: scale(1.04);
}

.resource-card__body {
  padding: 24px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.resource-card__cat {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.resource-card__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 10px;
  flex: 1;
}

.resource-card__excerpt {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.resource-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
  transition: gap 0.2s;
}

.resource-card:hover .resource-card__link { gap: 10px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-wrap {
  padding-block: var(--section-py);
  border-top: 1px solid var(--border);
}

.contact-wrap__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info__title {
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-info__desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-detail__label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-detail__val {
  font-size: 15px;
  color: var(--white);
}

.contact-detail__val a { color: var(--accent); transition: opacity 0.2s; }
.contact-detail__val a:hover { opacity: 0.7; }

.contact-main-line {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.contact-wa-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.5);
  background: rgba(37, 211, 102, 0.16);
  color: #d9ffe9;
  font-size: 0.8125rem;
  line-height: 1;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.contact-wa-inline svg {
  width: 0.9rem;
  height: 0.9rem;
  display: block;
}

.contact-detail__val a.contact-wa-inline:hover {
  opacity: 1;
  transform: scale(1.05);
  background: rgba(37, 211, 102, 0.24);
  border-color: rgba(37, 211, 102, 0.7);
}

.legal-policies {
  border-top: 1px solid var(--border);
  background: var(--bg-mid);
}

.legal-policies__intro {
  margin-bottom: 36px;
}

.legal-policies__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
}

.legal-card {
  padding: 28px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-mid);
}

.legal-card__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.legal-card__text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-card__text:last-child {
  margin-bottom: 0;
}

.legal-card__text a {
  color: var(--accent);
}

/* ============================================================
   ANIMATIONS (Intersection Observer)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .stats-bar__track {
    animation: none;
  }

  .hero--cinematic.hero--cinematic-ready .hero__eyebrow,
  .hero--cinematic.hero--cinematic-ready .hero__headline,
  .hero--cinematic.hero--cinematic-ready .hero__sub,
  .hero--cinematic.hero--cinematic-ready .hero__top-banner {
    opacity: 1;
    transform: none;
  }

  .hero--cinematic.hero--cinematic-ready .hero__top-banner {
    transform: translateX(-50%) !important;
  }

  .hero--cinematic .hero__video {
    transform: none !important;
  }

  .hero__vignette {
    background: radial-gradient(circle at 50% 45%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 52%, rgba(0,0,0,0.46) 100%);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer__top {
    gap: 36px;
  }
  .footer__nav {
    gap: 36px;
  }
  .ff__content,
  .ff__media { width: 100%; }
  .ff__item {
    flex-direction: column;
    min-height: unset;
  }
  .ff__item:nth-child(even) .ff__content,
  .ff__item:nth-child(even) .ff__media { order: unset; }
  .ff__media {
    height: 56vw;
    min-height: unset; /* clear the desktop 100svh min-height */
  }
  .ff__media video {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .quote__inner { gap: 48px; }
  .cta-form__inner { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-py: clamp(60px, 8vw, 100px); }

  .nav__links,
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__scroll { display: none; }

  .hero__top-banner {
    top: 5.2vh;
    font-size: clamp(10px, 2.8vw, 12px);
    letter-spacing: 0.16em;
    max-width: calc(100vw - 28px);
    text-align: center;
    white-space: normal;
  }

  .vc__header { flex-direction: column; align-items: flex-start; }
  .vc__nav { display: none; }
  .vc__slides { grid-template-columns: 1fr; }
  .vc__slide { display: none; grid-template-columns: 1fr; }
  .vc__slide.active { display: flex; flex-direction: column; }
  .vc__info { min-height: unset; }
  .vc__video-wrap { aspect-ratio: 16/9; min-height: unset; }

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

  .quote__inner { grid-template-columns: 1fr; gap: 36px; }
  .quote__media { aspect-ratio: 16/9; }

  .cta-form__inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-form__copy {
    position: static;
    top: auto;
    padding: 24px 20px;
  }
  .cta-form__form { padding: 24px 20px; }
  .cta-form__form-header {
    margin-bottom: 20px;
    padding-bottom: 18px;
  }
  .quote-highlights { grid-template-columns: 1fr; }
  .quote-form__section {
    padding: 18px;
  }
  .quote-form__section-head {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 14px;
  }
  .form__row { grid-template-columns: 1fr; }
  .form__row--three { grid-template-columns: 1fr; }

  .footer__nav { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .split__inner { grid-template-columns: 1fr; gap: 36px; }
  .split__inner.reverse .split__media { order: unset; }

  .values__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: 1fr; }

  .contact-wrap__inner { grid-template-columns: 1fr; gap: 40px; }
  .legal-policies__grid { grid-template-columns: 1fr; }

  /* Mobile: vert video shown for fullscreen features */
  .ff__media video.wide { display: none; }
  .ff__media video.vert { display: block; }
}

@media (max-width: 480px) {
  .stats-bar__track { gap: 40px; }
  .footer__nav { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   NAV polish (minimal)
   Keep original vibe, improve logo readability on hero
   ============================================================ */
.nav {
  z-index: 1100;
}

.nav__brand {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-decoration: none;
}

/* Keep hero eyebrow accent, but tone it down from neon */
.hero__eyebrow {
  color: var(--accent);
}

.hero__eyebrow::before {
  background: var(--accent);
}

/* =========================
   Mobile responsive overrides
   ========================= */
@media (max-width: 1024px) {
  .nav__inner {
    gap: 20px;
  }

  .nav__mobile {
    max-height: calc(100svh - var(--nav-h));
    overflow-y: auto;
  }

  .hero {
    min-height: 92svh;
    padding-bottom: 64px;
  }

  .hero__headline {
    max-width: 760px;
  }

  .hero__sub {
    max-width: 620px;
  }

  .stats-bar__track {
    gap: 48px;
  }

  .vc__header {
    margin-bottom: 44px;
  }

  .vc__info {
    min-height: 420px;
    padding: clamp(24px, 3vw, 40px);
  }

  .ff__item {
    align-items: stretch;
  }

  .ff__content {
    padding: clamp(34px, 5vw, 56px) clamp(20px, 4vw, 40px);
  }

  .ff__media {
    height: 56vw;
    min-height: 280px;
  }

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

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

@media (max-width: 768px) {
  .nav {
    z-index: 1100;
  }

  .nav__inner {
    gap: 14px;
    padding-inline: 16px;
  }

  .navbar__logo {
    max-width: calc(100vw - 96px);
  }

  .navbar__logo img {
    height: 38px;
  }

  .nav__hamburger {
    padding: 0;
  }

  .nav__mobile {
    padding: 16px 16px 24px;
  }

  .nav__mobile a {
    font-size: 17px;
    line-height: 1.35;
  }

  .hero {
    min-height: 84svh;
    padding-bottom: 52px;
  }

  .hero__content {
    padding-inline: 16px;
  }

  .hero__headline {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.08;
    margin-bottom: 18px;
  }

  .hero__sub {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .hero__actions .btn-primary,
  .hero__actions .btn-ghost {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
  }

  .stats-bar {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .stats-bar__track {
    animation: none;
    gap: 28px;
    padding-inline: 16px;
  }

  .stats-bar__num {
    font-size: 24px;
  }

  .stats-bar__text {
    font-size: 12px;
  }

  .vc__slides {
    overflow: hidden;
    touch-action: pan-y;
  }

  .vc__slide.active {
    gap: 0;
  }

  .vc__info {
    padding: 22px 18px;
  }

  .vc__num {
    font-size: clamp(60px, 20vw, 92px);
    margin-bottom: 14px;
  }

  .vc__slide-title {
    font-size: clamp(20px, 6vw, 28px);
  }

  .vc__slide-desc {
    max-width: none;
    margin-bottom: 20px;
  }

  .vc__dots {
    margin-top: 20px;
  }

  .ff__item {
    min-height: unset;
  }

  .ff__content {
    padding: 30px 16px 24px;
  }

  .ff__desc {
    margin-bottom: 24px;
  }

  .ff__points {
    margin-bottom: 28px;
  }

  .ff__media {
    height: 64vw;
    min-height: 220px;
  }

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

  .sol__card-body {
    padding: 22px 18px 26px;
  }

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

  .resource-card__body {
    padding: 20px 18px 24px;
  }

  .cta-form__form {
    padding: 22px 16px;
  }

  .form__input,
  .form__select,
  .form__textarea,
  .form__submit {
    font-size: 16px;
  }

  .form__input,
  .form__select,
  .form__submit {
    min-height: 48px;
  }
}

@media (max-width: 1180px) {
  .form__row--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .nav__inner {
    padding-inline: 12px;
  }

  .navbar__logo img {
    height: 34px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero__headline {
    font-size: clamp(30px, 9.6vw, 38px);
  }

  .hero__sub {
    font-size: 15px;
  }

  .hero__actions .btn-primary,
  .hero__actions .btn-ghost {
    min-height: 46px;
    font-size: 14px;
    padding-inline: 14px;
  }

  .stats-bar__track {
    gap: 22px;
  }

  .stats-bar__item {
    gap: 10px;
  }

  .vc__info {
    padding: 20px 14px;
  }

  .vc__slide-link {
    font-size: 13px;
  }

  .ff__content {
    padding-inline: 12px;
  }

  .ff__media {
    min-height: 200px;
  }

  .resource-card__body {
    padding: 18px 14px 22px;
  }
}

/* ============================================================
   WHATSAPP MOBILE BUTTON
   ============================================================ */
.whatsapp-mobile {
  --wa-size: 52px;
  position: fixed;
  right: clamp(10px, 2.4vw, 16px);
  bottom: max(12px, calc(env(safe-area-inset-bottom) + 12px));
  width: var(--wa-size);
  height: var(--wa-size);
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.24);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, bottom 0.2s ease, opacity 0.2s ease;
}

.whatsapp-mobile svg {
  width: 22px;
  height: 22px;
  display: block;
}

.whatsapp-mobile:hover {
  transform: scale(1.05);
  box-shadow: 0 0.65rem 1.4rem rgba(0, 0, 0, 0.28);
}

.whatsapp-mobile--raised {
  box-shadow: 0 0.8rem 1.5rem rgba(0, 0, 0, 0.35);
}

.whatsapp-mobile--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

@media (max-width: 1100px) {
  .nav__links,
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; margin-left: auto; }
}

@media (max-width: 768px) {
  .whatsapp-mobile {
    display: inline-flex;
  }
}

@media (max-width: 420px) {
  .whatsapp-mobile {
    --wa-size: 48px;
    right: 10px;
  }
}

/* ============================================================
   Vehicles page additions
   ============================================================ */
.vehicles-capacity {
  border-top: 1px solid var(--border);
}

.vehicles-capacity__intro {
  margin-bottom: 48px;
}

.vehicles-capacity__title {
  margin-top: 12px;
}

.vehicle-card .resource-card__title {
  flex: 0 0 auto;
  margin-bottom: 14px;
}

.vehicle-card {
  transition: background 0.2s;
}

.vehicle-card__media {
  position: relative;
  isolation: isolate;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  will-change: transform;
}

.vehicle-card__media img {
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: transparent;
  mix-blend-mode: normal;
  filter: none;
  transform: translateZ(0);
  transform-origin: 70% 55%;
  transition: transform 220ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .vehicle-card__media img {
    transition-duration: 1ms;
  }
}

.vehicle-specs {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 8px;
}

.vehicle-specs p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--gray);
}

.vehicle-specs strong {
  color: var(--white);
  font-weight: 500;
  text-align: right;
}

.vehicle-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.vehicle-actions .btn-primary,
.vehicle-actions .btn-ghost {
  font-size: 12px;
  letter-spacing: 0.07em;
  padding: 10px 14px;
  min-height: 44px;
  text-transform: uppercase;
}

.vehicle-actions__wa {
  opacity: 0.88;
}

/* ============================================================
   SPECIALIST FEATURE BLOCK
   ============================================================ */
.specialist-feature {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
}

.specialist-feature__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.specialist-feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 600ms cubic-bezier(0.4, 0.0, 0.2, 1);
  will-change: transform;
}

.specialist-feature__headlights {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 18% 30% at 72% 52%, rgba(255,255,255,0.06) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 250ms cubic-bezier(0.4, 0.0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.specialist-feature__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
    rgba(24,47,48,0.85) 0%,
    rgba(24,47,48,0.65) 40%,
    rgba(24,47,48,0.2)  100%
  );
  transition: background 400ms cubic-bezier(0.4, 0.0, 0.2, 1);
  pointer-events: none;
}

.specialist-feature__content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  padding: var(--section-py) 0;
  margin-left: max(24px, calc((100vw - var(--max-w)) / 2));
  padding-left: 24px;
}

.specialist-feature__content .split__label {
  margin-bottom: 16px;
}

.specialist-feature__content .split__title {
  color: var(--white);
  margin-bottom: 16px;
}

.specialist-feature__content .split__text {
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
}

.specialist-feature__cta {
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  border-color: var(--accent);
  transition: transform 200ms cubic-bezier(0.4, 0.0, 0.2, 1),
              box-shadow 200ms cubic-bezier(0.4, 0.0, 0.2, 1);
}

.specialist-feature__cta:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 6px 20px rgba(171,255,2,0.15);
}

/* --- Hover: image zoom, headlights, shadow --- */
.specialist-feature:hover .specialist-feature__img {
  transform: scale(1.015);
}

.specialist-feature:hover .specialist-feature__headlights {
  opacity: 1;
}

.specialist-feature:hover .specialist-feature__overlay {
  background: linear-gradient(90deg,
    rgba(24,47,48,0.88) 0%,
    rgba(24,47,48,0.68) 40%,
    rgba(24,47,48,0.25) 100%
  );
}

/* --- Touch / coarse pointer fallback --- */
@media (hover: none), (pointer: coarse) {
  .specialist-feature:hover .specialist-feature__img {
    transform: none;
  }
  .specialist-feature:active .specialist-feature__img {
    transform: scale(1.01);
  }
  .specialist-feature__headlights {
    opacity: 0.5;
  }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .specialist-feature__img {
    transition: none;
  }
  .specialist-feature__headlights {
    transition: none;
  }
  .specialist-feature:hover .specialist-feature__img {
    transform: none;
  }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .specialist-feature {
    min-height: 420px;
    flex-direction: column;
    justify-content: flex-end;
  }

  .specialist-feature__overlay {
    background: linear-gradient(180deg,
      rgba(24,47,48,0.3)  0%,
      rgba(24,47,48,0.75) 50%,
      rgba(24,47,48,0.92) 100%
    );
  }

  .specialist-feature__content {
    margin-left: 0;
    padding: 32px 20px 40px;
    max-width: 100%;
  }

  .specialist-feature__img {
    object-position: 65% center;
  }

}

@media (max-width: 480px) {
  .specialist-feature {
    min-height: 380px;
  }
}

@media (max-width: 768px) {
  .vehicle-actions .btn-primary,
  .vehicle-actions .btn-ghost {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    padding: 10px 14px;
  }

  .vehicle-specs p {
    font-size: 11px;
  }
}

/* ============================================================
   Vehicles 3D showroom overlay (layout-safe)
   ============================================================ */
.vehicles-grid .vehicle-card,
.vehicles-grid .vehicle-card:hover,
.vehicles-grid .vehicle-card:focus-within {
  transform: none !important;
  filter: none !important;
  box-shadow: none !important;
}

.vehicles-grid .vehicle-card__media {
  position: relative;
  overflow: hidden;
}

.vehicles-grid .vehicle-card__media::after {
  content: "";
  position: absolute;
  right: clamp(26px, 8%, 56px);
  bottom: clamp(18px, 7%, 40px);
  width: clamp(48px, 12%, 108px);
  height: clamp(14px, 4.5%, 28px);
  border-radius: 6px;
  background: var(--bg);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04);
  pointer-events: none;
  z-index: 2;
}

.vehicles-grid .vehicle-card__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center bottom;
  padding: 12px 18px 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.vehicles-grid .vehicle-card--3d-ready .vehicle-card__media img {
  opacity: 1;
}

.vehicle-3d {
  display: none !important;
}

.vehicle-3d__canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
}

/* ============================================================
   Vehicles page premium hover (no glow)
   ============================================================ */
.vehicles-grid .vehicle-card:hover .vehicle-card__media img,
.vehicles-grid .vehicle-card:focus-within .vehicle-card__media img,
.vehicles-grid .vehicle-card:active .vehicle-card__media img {
  transform: scale(1.015);
}

@media (hover: none), (pointer: coarse) {
  .vehicles-grid .vehicle-card:hover .vehicle-card__media img {
    transform: none;
  }

  .vehicles-grid .vehicle-card:active .vehicle-card__media img,
  .vehicles-grid .vehicle-card:focus-within .vehicle-card__media img {
    transform: scale(1.01);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vehicles-grid .vehicle-card__media img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center bottom;
    transition: opacity 120ms linear;
  }

  .vehicles-grid .vehicle-card:hover .vehicle-card__media img,
  .vehicles-grid .vehicle-card:focus-within .vehicle-card__media img,
  .vehicles-grid .vehicle-card:active .vehicle-card__media img {
    transform: none;
  }
}

@media (max-width: 640px) {
  .vehicles-grid .vehicle-card__media::after {
    right: 9%;
    bottom: 8%;
    width: 13%;
    height: 5%;
  }
}

/* ==== INTRO V2 (GSAP + FLIP) ==== */
#intro {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-dark);
  overflow: hidden;
  pointer-events: all;
}

#introInfraCanvas,
#introInfraNoise {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#introInfraNoise {
  opacity: 0.72;
}

.home-network-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--bg);
}

#homeInfraCanvas,
#homeInfraNoise {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#homeInfraNoise {
  opacity: 0.34;
}

.hero,
.stats-bar,
.ff,
.section,
.page-hero,
.contact-wrap,
.legal-policies,
.footer {
  position: relative;
  z-index: 1;
}

#intro .intro-center {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  pointer-events: none;
}

#introSeed {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(73, 255, 122, 0.5);
  transform: translate(-50%, -50%) scale(0.35);
  opacity: 0;
  filter: blur(1px);
  pointer-events: none;
  will-change: transform, opacity;
}

#introLogo {
  width: min(460px, 60vw);
  height: auto;
  opacity: 0;
  image-rendering: auto;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.26));
  transform: translateZ(0) scale(0.96);
  transform-origin: center center;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

#introMask {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 260px;
  height: 260px;
  border-radius: 56px;
  transform: translate(-50%, -50%);
  overflow: hidden;
  background: transparent;
  box-shadow: 0 0 0 200vmax var(--brand-dark);
  opacity: 0;
  pointer-events: none;
  will-change: width, height, border-radius, opacity;
}

#introBar {
  width: min(300px, 52vw);
  height: 2px;
  background: rgba(73, 255, 122, 0.12);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  flex-shrink: 0;
}

#introBarFill {
  height: 100%;
  width: 0%;
  background: var(--brand-accent);
  border-radius: 2px;
  transform-origin: left center;
}

@media (max-width: 768px) {
  #introLogo {
    width: min(380px, 74vw);
  }

  #introMask {
    width: 220px;
    height: 220px;
    border-radius: 48px;
  }

  #introBar {
    width: min(260px, 64vw);
  }
}

/* ============================================================
   POLISH v2 — Professional visual refinements
   All original rules are preserved above in this file.
   To revert: delete everything from here to end of file.
   ============================================================ */

/* ---- 1. Scrollbar ----------------------------------------- */
::-webkit-scrollbar            { width: 5px; height: 5px; }
::-webkit-scrollbar-track      { background: var(--bg); }
::-webkit-scrollbar-thumb      { background: rgba(255,255,255,0.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover{ background: rgba(171,255,2,0.45); }

/* ---- 2. Nav glass on scroll ------------------------------- */
.nav.scrolled,
.navbar.navbar--scrolled {
  background: rgba(5, 36, 36, 0.75) !important;
  border-bottom-color: rgba(255,255,255,0.07) !important;
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
}

/* ---- 3. Hero overlay — bottom-heavy gradient for legibility */
.hero__overlay {
  background:
    linear-gradient(to top,
      rgba(5,36,36,0.90) 0%,
      rgba(5,36,36,0.45) 35%,
      rgba(0,0,0,0.15)  70%,
      rgba(0,0,0,0.08)  100%);
}

/* Stronger scanline/grain grain on vignette for depth */
.hero__vignette {
  background:
    radial-gradient(ellipse at 50% 56%,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.08) 38%,
      rgba(0,0,0,0.58) 100%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.018) 2px,
      rgba(0,0,0,0.018) 4px);
}

/* ---- 4. Stats bar — fade edges ---------------------------- */
.stats-bar { position: relative; }
.stats-bar::before,
.stats-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(48px, 8vw, 96px);
  z-index: 2;
  pointer-events: none;
}
.stats-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-mid) 20%, transparent 100%);
}
.stats-bar::after {
  right: 0;
  background: linear-gradient(to left,  var(--bg-mid) 20%, transparent 100%);
}

/* ---- 5. Buttons — glow + sharper lift --------------------- */
.btn-primary:hover,
.btn-primary:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(171,255,2,0.55),
    0 8px 28px rgba(171,255,2,0.28),
    0 2px 8px rgba(0,0,0,0.22);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

/* ---- 6. Nav CTA — accent glow on hover -------------------- */
.nav__cta:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(171,255,2,0.30);
}

/* ---- 7. Reveal — micro-scale for premium entrance --------- */
.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition:
    opacity  0.78s var(--ease-out),
    transform 0.78s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ---- 8. Sol cards — accent underline on hover ------------- */
.sol__card {
  transition: background 0.28s, box-shadow 0.28s;
}
.sol__card:hover {
  background: var(--bg-light);
  box-shadow: inset 0 -3px 0 0 var(--accent);
}

/* ---- 9. Value cards — left accent on hover ---------------- */
.value-card {
  transition: background 0.25s, box-shadow 0.25s;
  box-shadow: inset 3px 0 0 0 transparent;
}
.value-card:hover {
  background: var(--bg-light);
  box-shadow: inset 3px 0 0 0 var(--accent);
}

/* ---- 10. Resource cards — subtle lift on hover ------------ */
.resource-card {
  transition: background 0.25s, box-shadow 0.25s;
}
.resource-card:hover {
  background: var(--bg-light);
  box-shadow: 0 -2px 0 0 rgba(171,255,2,0.35) inset;
}

/* ---- 11. Team card — glow ring on hover ------------------- */
.team-card {
  transition: background 0.25s, box-shadow 0.25s;
}
.team-card:hover {
  box-shadow: inset 0 0 0 1px rgba(171,255,2,0.22);
}

/* ---- 12. Quote mark — larger, serif, more gravitas -------- */
.quote__mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 110px;
  line-height: 0.72;
  color: var(--accent);
  opacity: 0.65;
  margin-bottom: 16px;
  display: block;
  letter-spacing: -0.04em;
}

/* ---- 13. Footer — depth gradient + link underline anim ---- */
.footer {
  background: linear-gradient(180deg, var(--bg) 0%, #030f0f 100%);
}

.footer__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__link::after {
  content: '';
  position: absolute;
  bottom: 9px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.22s var(--ease-out);
}
.footer__link:hover { color: var(--white); }
.footer__link:hover::after { width: 100%; }

/* ---- 14. Form inputs — left accent on focus --------------- */
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: rgba(171,255,2,0.55);
  background: rgba(255,255,255,0.07);
  box-shadow: inset 3px 0 0 0 var(--accent);
}

/* ---- 15. Form submit — glow on hover ---------------------- */
.form__submit:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(171,255,2,0.55),
    0 10px 32px rgba(171,255,2,0.30),
    0 2px 8px rgba(0,0,0,0.20);
}

/* ---- 16. WhatsApp — entry animation + pulse --------------- */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0.5rem 1.25rem rgba(0,0,0,0.24), 0 0 0 0 rgba(37,211,102,0); }
  50%       { box-shadow: 0 0.5rem 1.25rem rgba(0,0,0,0.24), 0 0 0 6px rgba(37,211,102,0.14); }
}
.whatsapp-mobile {
  animation: waPulse 3.5s ease-in-out infinite;
}
.whatsapp-mobile:hover {
  transform: scale(1.08);
  box-shadow: 0 0.8rem 1.8rem rgba(0,0,0,0.32), 0 0 0 4px rgba(37,211,102,0.22);
  animation: none;
}

/* ---- 17. Hero scroll indicator — smoother pulse ----------- */
@keyframes scrollLine {
  0%   { transform: scaleY(1)   translateY(0);   opacity: 1; }
  45%  { transform: scaleY(0.3) translateY(8px);  opacity: 0.3; }
  100% { transform: scaleY(1)   translateY(0);   opacity: 1; }
}
.hero__scroll-line {
  background: linear-gradient(to bottom, var(--accent), rgba(171,255,2,0));
  width: 1px;
  height: 52px;
}

/* ---- 18. Vc slide-link — arrow gap spring ----------------- */
.vc__slide-link {
  transition: gap 0.2s var(--ease-out), color 0.2s;
}
.vc__slide-link:hover { gap: 14px; color: #d6ff66; }

/* ---- 19. Sol card link — same spring ---------------------- */
.sol__card-link {
  transition: gap 0.2s var(--ease-out), color 0.2s;
}
.sol__card-link:hover { gap: 12px; color: #d6ff66; }

/* ---- 20. Page hero — richer overlay ----------------------- */
.page-hero__overlay {
  background: linear-gradient(
    135deg,
    rgba(5,36,36,0.92) 0%,
    rgba(5,36,36,0.68) 55%,
    rgba(5,36,36,0.30) 100%);
}

/* ---- 21. Dot nav in vc — active wider transition ---------- */
.vc__dot {
  cursor: pointer;
  transition: width 0.35s var(--ease-out), background 0.3s, transform 0.2s;
}
.vc__dot:hover:not(.active) {
  background: rgba(171,255,2,0.4);
  transform: scale(1.4);
}

/* ---- 22. Intro logo — subtle scale-in shadow -------------- */
#introLogo {
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.52)) drop-shadow(0 0 40px rgba(171,255,2,0.12));
}

/* ---- 23. Section label chips — micro-pulse on reveal ------ */
@keyframes labelGlow {
  from { box-shadow: 0 0 0 0 rgba(171,255,2,0.0); }
  to   { box-shadow: 0 0 0 4px rgba(171,255,2,0.0); }
}

/* ---- 24. FF feature points — stagger on reveal ------------ */
.ff__item .ff__content.visible .ff__point {
  animation: fadeSlideIn 0.45s var(--ease-out) both;
}
.ff__item .ff__content.visible .ff__point:nth-child(1) { animation-delay: 0.18s; }
.ff__item .ff__content.visible .ff__point:nth-child(2) { animation-delay: 0.28s; }
.ff__item .ff__content.visible .ff__point:nth-child(3) { animation-delay: 0.38s; }
.ff__item .ff__content.visible .ff__point:nth-child(4) { animation-delay: 0.48s; }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ---- 25. Selection colour — brand teal/lime -------------- */
::selection {
  background: rgba(171,255,2,0.28);
  color: #ffffff;
}

/* ---- Reduced motion: disable all new animations ----------- */
@media (prefers-reduced-motion: reduce) {
  .whatsapp-mobile { animation: none; }
  .ff__item .ff__content.visible .ff__point { animation: none; }
  .reveal { transform: translateY(0) scale(1); }
  .hero__scroll-line { animation: none; opacity: 1; }
}
