/* ============================================
   BANNER RECOVERY — Main Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --clr-bg:        #080c10;
  --clr-bg-2:      #0d1117;
  --clr-bg-3:      #111820;
  --clr-card:      #121a23;
  --clr-border:    rgba(255,255,255,0.07);

  --clr-ice:       #00c2e0;
  --clr-ice-dim:   #008fa3;
  --clr-ice-glow:  rgba(0, 194, 224, 0.15);

  --clr-white:     #ffffff;
  --clr-off-white: #d4dde8;
  --clr-muted:     #6b7c93;
  --clr-subtle:    #3a4a5c;

  --font:          'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;

  --shadow-card:   0 2px 20px rgba(0,0,0,0.4);
  --shadow-glow:   0 0 40px rgba(0, 194, 224, 0.12);

  --transition:    0.25s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h:         72px;
  --container:     1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--clr-bg);
  color: var(--clr-off-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Scroll Bar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-subtle); border-radius: 3px; }


/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(8, 12, 16, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--clr-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-img { height: 72px; width: auto; filter: drop-shadow(0 0 1px rgba(255,255,255,0.1)); }
.nav__logo-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--clr-white);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-off-white);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.nav__links li a:hover { color: var(--clr-white); }

.nav__cta {
  padding: 9px 22px;
  background: var(--clr-ice);
  color: var(--clr-bg) !important;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav__cta:hover {
  background: #33ccee !important;
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(8, 12, 16, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  border-bottom: 1px solid var(--clr-border);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
  display: block;
}

.nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav__mobile ul li a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-off-white);
  border-bottom: 1px solid var(--clr-border);
  transition: color var(--transition);
}

.nav__mobile ul li:last-child a {
  color: var(--clr-ice);
  border-bottom: none;
}


/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: var(--clr-ice);
  color: var(--clr-bg);
}

.btn--primary:hover {
  background: #33ccee;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 194, 224, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-white);
  border: 1.5px solid rgba(255,255,255,0.25);
}

.btn--ghost:hover {
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn--full { width: 100%; }


/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-ice);
  margin-bottom: 14px;
  padding: 5px 14px;
  border: 1px solid rgba(0, 194, 224, 0.3);
  border-radius: 100px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 17px;
  color: var(--clr-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

/* Fallback gradient when no video */
.hero__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0, 60, 90, 0.6) 0%, transparent 70%),
              linear-gradient(135deg, #0a1628 0%, #040810 100%);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,12,16,0.0) 0%, rgba(8,12,16,0.0) 50%, rgba(8,12,16,0.55) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-ice);
  margin-bottom: 24px;
  padding: 7px 16px;
  border: 1px solid rgba(0, 194, 224, 0.35);
  border-radius: 100px;
  background: rgba(0, 194, 224, 0.08);
}

.hero__badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--clr-ice);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero__title {
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--clr-white);
  margin-bottom: 24px;
  max-width: 700px;
}

.hero__title--accent {
  color: var(--clr-ice);
  display: block;
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--clr-off-white);
  opacity: 0.8;
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

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

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ============================================
   STATS BAR
   ============================================ */
.stats {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 32px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 8px 0;
}

.stats__item + .stats__item {
  border-left: 1px solid var(--clr-border);
}

.stats__number {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--clr-white);
  letter-spacing: -0.02em;
}

.stats__label {
  font-size: 13px;
  color: var(--clr-muted);
  font-weight: 500;
}


/* ============================================
   LOGO TICKER
   ============================================ */
.logo-ticker {
  padding: 72px 0;
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
}

.logo-ticker .section-header {
  margin-bottom: 40px;
}

.ticker__wrapper {
  position: relative;
  overflow: hidden;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.ticker__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

@media (hover: hover) {
  .ticker__track:hover {
    animation-play-state: paused;
  }
}

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

.ticker__item {
  flex-shrink: 0;
}

.ticker__logo-slot {
  width: 120px;
  height: 120px;
  background: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: transform var(--transition), box-shadow var(--transition);
}

.ticker__logo-slot:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* When real logos are added */
.ticker__logo-slot img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: opacity var(--transition);
}

.ticker__logo-slot:hover img {
  filter: none;
  opacity: 1;
}

.ticker__logo-slot span {
  font-size: 12px;
  font-weight: 500;
  color: var(--clr-subtle);
  letter-spacing: 0.05em;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--clr-bg);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.service-card {
  position: relative;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-ice), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(0, 194, 224, 0.2);
}

.service-card:hover::before { opacity: 1; }

.service-card--featured {
  background: linear-gradient(145deg, #0d1e2d, #091520);
  border-color: rgba(0, 194, 224, 0.3);
  box-shadow: var(--shadow-glow);
}

.service-card--featured::before { opacity: 1; }

.service-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-bg);
  background: var(--clr-ice);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.service-card__icon {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 28px;
}

.service-card__number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--clr-subtle);
  margin-bottom: 10px;
}

.service-card__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: 15px;
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card__benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__benefits li {
  font-size: 14px;
  color: var(--clr-off-white);
  padding-left: 20px;
  position: relative;
}

.service-card__benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-ice);
  opacity: 0.7;
}


/* ============================================
   THE VAN — FULL WIDTH HORIZONTAL VIDEO
   ============================================ */
/* ---- The Van section ---- */
.the-van {
  background: var(--clr-bg);
}

/* Info bar */
.van-info {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.van-info__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 52px 24px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.van-info__title {
  flex-shrink: 0;
}

.van-info__title .section-tag { display: inline-flex; margin-bottom: 8px; }
.van-info__title .section-title { text-align: left; margin-bottom: 0; font-size: clamp(22px, 2.2vw, 32px); }

.van-split__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
  flex: 1;
}

.van-info__btn { flex-shrink: 0; }

/* Feature items */
.van-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.van-feature-item__icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 194, 224, 0.12);
  border: 1px solid rgba(0, 194, 224, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-ice);
  flex-shrink: 0;
}

.van-feature-item__icon svg { width: 16px; height: 16px; }

.van-feature-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 1px;
}

.van-feature-item span {
  font-size: 12px;
  color: var(--clr-off-white);
  opacity: 0.7;
}

/* Full-width video */
.van-video-block {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}

.van-video-block video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .van-info__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 40px 24px;
  }
  .van-split__features { grid-template-columns: 1fr 1fr; }
  .van-video-block { aspect-ratio: 4 / 3; }
}


/* ============================================
   WHO WE SERVE
   ============================================ */
.who-we-serve {
  padding: 100px 0;
  background: var(--clr-bg);
}

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

.audience-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), border-color var(--transition);
}

.audience-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 194, 224, 0.2);
}

.audience-card--highlight {
  background: linear-gradient(145deg, #0d1e2d, #091520);
  border-color: rgba(0, 194, 224, 0.3);
}

.audience-card__icon {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.8;
}

.audience-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.audience-card p {
  font-size: 14px;
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.audience-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-ice);
  border: 1px solid rgba(0, 194, 224, 0.3);
  padding: 4px 12px;
  border-radius: 100px;
}


/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 100px 0;
  background: var(--clr-bg-2);
}

.steps__grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.step__connector {
  flex: 0 0 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-ice-dim), transparent);
  margin-top: 52px;
  opacity: 0.4;
}

.step__number {
  font-size: 48px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 194, 224, 0.35);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.step__content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 12px;
}

.step__content p {
  font-size: 15px;
  color: var(--clr-muted);
  line-height: 1.7;
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--clr-bg);
}

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

.testimonial-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform var(--transition);
}

.testimonial-card:hover { transform: translateY(-3px); }

.testimonial-card--video {
  padding: 0;
  overflow: hidden;
}

.testimonial-card__stars {
  color: var(--clr-ice);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-size: 17px;
  line-height: 1.75;
  color: var(--clr-off-white);
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
}

.testimonial-card blockquote::before {
  content: '\201C';
  font-size: 64px;
  color: var(--clr-ice);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -8px;
  line-height: 1;
  font-style: normal;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-ice-dim), #004d5e);
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-white);
}

.testimonial-card__author span {
  font-size: 13px;
  color: var(--clr-muted);
}

.testimonial-card__video-placeholder {
  background: #080e14;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--clr-subtle);
  cursor: pointer;
  transition: background var(--transition);
}

.testimonial-card__video-placeholder:hover { background: #0c1520; }

.play-btn {
  width: 72px;
  height: 72px;
  color: var(--clr-ice);
  opacity: 0.7;
  transition: opacity var(--transition), transform var(--transition);
}

.testimonial-card__video-placeholder:hover .play-btn {
  opacity: 1;
  transform: scale(1.08);
}

.testimonial-card__video-placeholder p {
  font-size: 14px;
  color: var(--clr-muted);
}

.testimonial-card__video-placeholder code {
  font-size: 12px;
  color: var(--clr-subtle);
  font-family: monospace;
  background: rgba(255,255,255,0.04);
  padding: 4px 10px;
  border-radius: 4px;
}


/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--clr-bg-2);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__text .section-title { text-align: left; }
.contact__text .section-tag { display: inline-flex; }
.contact__text p {
  font-size: 16px;
  color: var(--clr-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact__options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), transform var(--transition);
}

.contact__option:hover {
  border-color: rgba(0, 194, 224, 0.3);
  transform: translateX(4px);
}

.contact__option-icon {
  width: 40px;
  height: 40px;
  background: var(--clr-ice-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-ice);
  flex-shrink: 0;
}

.contact__option-icon svg { width: 20px; height: 20px; }

.contact__option strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 2px;
}

.contact__option span {
  font-size: 13px;
  color: var(--clr-muted);
}

/* Form */
.contact__form-wrap {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
}

.contact__form h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-off-white);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--clr-white);
  transition: border-color var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--clr-ice-dim);
  background: rgba(0, 194, 224, 0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--clr-subtle);
}

.form-group select option {
  background: var(--clr-card);
  color: var(--clr-white);
}

.form-note {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--clr-subtle);
}


/* ============================================
   CLUB MODAL
   ============================================ */
.club-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.club-modal.open {
  pointer-events: all;
  opacity: 1;
}

.club-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.club-modal__card {
  position: relative;
  z-index: 1;
  background: var(--clr-card);
  border: 1px solid rgba(0, 194, 224, 0.2);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px var(--clr-border);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.club-modal.open .club-modal__card {
  transform: translateY(0) scale(1);
}

.club-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  transition: background var(--transition), color var(--transition);
}

.club-modal__close:hover {
  background: rgba(255,255,255,0.12);
  color: var(--clr-white);
}

.club-modal__close svg { width: 16px; height: 16px; }

.club-modal__logo-wrap {
  width: 140px;
  height: 140px;
  background: #ffffff;
  border: none;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.club-modal__logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.club-modal__name {
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-white);
  letter-spacing: -0.01em;
}

.club-modal__desc {
  font-size: 15px;
  color: var(--clr-muted);
  line-height: 1.75;
}

/* Clickable ticker items */
.ticker__item--clickable {
  cursor: pointer;
}

.ticker__item--clickable .ticker__logo-slot {
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.ticker__item--clickable:hover .ticker__logo-slot {
  border-color: rgba(0, 194, 224, 0.4);
  background: rgba(0, 194, 224, 0.06);
  transform: translateY(-3px);
}

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

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo { height: 120px; width: auto; margin-bottom: 8px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer__logo-text {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--clr-white);
  margin-bottom: 14px;
}

.footer__brand p {
  font-size: 14px;
  color: var(--clr-muted);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  transition: color var(--transition), border-color var(--transition);
}

.footer__social a svg { width: 18px; height: 18px; }
.footer__social a:hover { color: var(--clr-ice); border-color: rgba(0, 194, 224, 0.3); }

.footer__links h4,
.footer__contact h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 20px;
}

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

.footer__links ul li a {
  font-size: 14px;
  color: var(--clr-muted);
  transition: color var(--transition);
}

.footer__links ul li a:hover { color: var(--clr-ice); }

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

.footer__contact a,
.footer__contact span {
  font-size: 14px;
  color: var(--clr-muted);
  transition: color var(--transition);
}

.footer__contact a:hover { color: var(--clr-ice); }

.footer__bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 28px;
  text-align: center;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--clr-subtle);
}


/* ============================================
   ANIMATIONS (Scroll-triggered via JS)
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }


/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .audience__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .van__showcase { grid-template-columns: 1fr; }
  .van__feature { grid-row: auto; }
  .van__media-placeholder--large { min-height: 320px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item + .stats__item { border-left: none; }
  .stats__item:nth-child(3),
  .stats__item:nth-child(4) { border-top: 1px solid var(--clr-border); }
}

/* Mobile */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero__title { font-size: clamp(36px, 10vw, 56px); }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__ctas .btn { width: 100%; max-width: 320px; justify-content: center; }

  .section-header { margin-bottom: 40px; }

  .audience__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }

  .steps__grid { flex-direction: column; align-items: center; }
  .step__connector { width: 2px; height: 40px; margin: 0; background: linear-gradient(to bottom, var(--clr-ice-dim), transparent); }

  .contact__form-wrap { padding: 28px 20px; }

  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand p { max-width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats__item { padding: 12px 8px; }
  .stats__item:nth-child(2) { border-left: 1px solid var(--clr-border); }
  .stats__item:nth-child(3),
  .stats__item:nth-child(4) { border-top: 1px solid var(--clr-border); }
}
