/* =============================================================
   CARSPOT — Design System & Stylesheet
   ============================================================= */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 16px; line-height: 1.65; color: var(--text); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; }

/* ---- Tokens ---- */
:root {
  /* Palette */
  --hero-bg:         #070f1e;
  --white:           #ffffff;
  --surface:         #f8fafc;
  --surface-alt:     #f1f5f9;
  --text:            #0f172a;
  --text-muted:      #64748b;
  --text-subtle:     #94a3b8;
  --border:          #e2e8f0;

  /* Brand */
  --brand:           #1d4ed8;
  --brand-dark:      #1e40af;
  --brand-light:     #eff6ff;
  --accent:          #0284c7;

  /* Icon swatch palettes */
  --c-blue:     #3b82f6; --c-blue-bg:   #eff6ff;
  --c-amber:    #f59e0b; --c-amber-bg:  #fffbeb;
  --c-purple:   #8b5cf6; --c-purple-bg: #f5f3ff;
  --c-green:    #10b981; --c-green-bg:  #ecfdf5;
  --c-teal:     #06b6d4; --c-teal-bg:   #ecfeff;
  --c-orange:   #f97316; --c-orange-bg: #fff7ed;
  --c-sky:      #0ea5e9; --c-sky-bg:    #f0f9ff;
  --c-slate:    #475569; --c-slate-bg:  #f1f5f9;
  --c-indigo:   #6366f1; --c-indigo-bg: #eef2ff;

  /* Shadows */
  --sh-xs:  0 1px 2px rgba(15,23,42,.05);
  --sh-sm:  0 1px 3px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.04);
  --sh-md:  0 4px 6px rgba(15,23,42,.06), 0 2px 4px rgba(15,23,42,.04);
  --sh-lg:  0 10px 20px rgba(15,23,42,.07), 0 4px 6px rgba(15,23,42,.04);
  --sh-xl:  0 20px 40px rgba(15,23,42,.09), 0 8px 16px rgba(15,23,42,.04);
  --sh-card: 0 0 0 1px rgba(15,23,42,.06), 0 2px 8px rgba(15,23,42,.06);

  /* Geometry */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-2xl:  32px;
  --r-full: 9999px;

  /* Spacing */
  --sec-py: 96px;
  --wrap:   1200px;
  --px:     24px;

  /* Motion */
  --ease-fast:  150ms ease;
  --ease-base:  250ms ease;
  --ease-slow:  400ms ease;
}

/* ---- Helpers ---- */
.container { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--px); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: #e0f2fe;
  padding: 5px 12px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}

.section-header { text-align: center; max-width: 620px; margin: 0 auto 64px; }

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 22px;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--ease-base), box-shadow var(--ease-base), background var(--ease-fast), border-color var(--ease-fast), color var(--ease-fast);
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
}
.btn:focus-visible { outline: 3px solid #60a5fa; outline-offset: 2px; }
.btn--sm  { font-size: 13px; padding: 8px 16px; border-radius: 8px; }
.btn--lg  { font-size: 16px; padding: 15px 28px; border-radius: 12px; }
.btn--full { width: 100%; }

.btn--primary {
  background: linear-gradient(145deg, #1d4ed8 0%, #2563eb 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 1px 3px rgba(29,78,216,.25), 0 4px 14px rgba(29,78,216,.18);
}
.btn--primary:hover {
  background: linear-gradient(145deg, #1e40af 0%, #1d4ed8 100%);
  box-shadow: 0 2px 6px rgba(29,78,216,.3), 0 8px 20px rgba(29,78,216,.25);
  transform: translateY(-1px);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-1px);
}

.btn--white {
  background: #fff;
  color: var(--brand);
  border-color: transparent;
  box-shadow: var(--sh-md);
}
.btn--white:hover {
  background: #f8fafc;
  box-shadow: var(--sh-lg);
  transform: translateY(-1px);
}

.btn--ghost-white {
  background: transparent;
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.32);
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
}

/* =============================================================
   NAV
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 var(--px);
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease-base);
}
.nav.scrolled {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(15,23,42,.08);
}

.nav__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 4px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: 32px;
}

.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
}

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

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 13px;
  border-radius: var(--r-sm);
  transition: color var(--ease-fast), background var(--ease-fast);
}
.nav__link:hover { color: var(--text); background: var(--surface); }
.nav__link:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

.nav__cta { margin-left: auto; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--r-sm);
  transition: background var(--ease-fast);
}
.nav__toggle:hover { background: var(--surface); }
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--ease-base), opacity var(--ease-base);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: #fff;
  padding: 20px 24px 28px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(15,23,42,.08);
  z-index: 999;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform var(--ease-base), opacity var(--ease-base);
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 2px; margin-bottom: 16px; }
.mobile-menu ul a {
  display: block;
  padding: 11px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-sm);
  transition: color var(--ease-fast), background var(--ease-fast);
}
.mobile-menu ul a:hover { color: var(--text); background: var(--surface); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--hero-bg);
  background-image: url('../images/otsonointi.webp');
  background-size: cover;
  background-position: center;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}
.hero__orb--1 {
  width: 700px; height: 700px;
  top: -200px; left: -150px;
  background: radial-gradient(circle, rgba(30,64,175,.38) 0%, transparent 65%);
}
.hero__orb--2 {
  width: 550px; height: 550px;
  bottom: -100px; right: -80px;
  background: radial-gradient(circle, rgba(2,132,199,.28) 0%, transparent 65%);
}
.hero__orb--3 {
  width: 350px; height: 350px;
  top: 50%; left: 60%;
  background: radial-gradient(circle, rgba(99,102,241,.12) 0%, transparent 70%);
}

/* Subtle dot-grid overlay */
.hero__grid-overlay {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Photo overlay — darkens background image for text legibility */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(rgba(7,15,30,.92), rgba(7,15,30,.86)),
    radial-gradient(ellipse at center, transparent 20%, rgba(7,15,30,.7) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 130px var(--px) 80px;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  padding: 7px 16px;
  border-radius: var(--r-full);
  margin-bottom: 36px;
  backdrop-filter: blur(8px);
  letter-spacing: .01em;
}

.hero__badge-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52,211,153,.4);
  animation: badge-pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,211,153,.4); }
  50%       { box-shadow: 0 0 0 6px rgba(52,211,153,.0); }
}

.hero__title {
  font-size: clamp(40px, 7.5vw, 80px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.04;
  color: #fff;
  margin-bottom: 24px;
}

.hero__title-gradient {
  background: linear-gradient(125deg, #60a5fa 10%, #34d399 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(16px, 2.2vw, 19px);
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 44px;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 20px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.42);
}
.hero__trust-item svg { color: #60a5fa; flex-shrink: 0; }
.hero__trust-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.35), transparent);
  animation: scroll-reveal 2.2s ease-in-out infinite;
}
@keyframes scroll-reveal {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  45%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  46%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* =============================================================
   STATS
   ============================================================= */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--px);
}
.stats__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.stats__item {
  flex: 1;
  max-width: 260px;
  text-align: center;
  padding: 52px 24px;
}
.stats__num {
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.stats__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.stats__divider {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
  margin: 32px 0;
}

/* =============================================================
   SERVICES
   ============================================================= */
.services {
  background: var(--surface);
  padding: var(--sec-py) 0;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

/* Wide cards — 3/6 cols = 2 per row */
.service-card--featured {
  grid-column: span 3;
}
.service-card--featured .service-card__img {
  aspect-ratio: 21 / 9;
}

/* Standard cards — 2/6 cols = 3 per row */
.service-card:not(.service-card--featured) {
  grid-column: span 2;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease-base), box-shadow var(--ease-base), border-color var(--ease-base);
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-xl);
  border-color: rgba(29,78,216,.1);
}
.service-card:focus-visible {
  outline: 3px solid #60a5fa;
  outline-offset: 2px;
}

.service-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--surface-alt);
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}
.service-card:hover .service-card__img img {
  transform: scale(1.04);
}

.service-card__body {
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

/* Icon color helpers */
.c-blue   { background: var(--c-blue-bg);   color: var(--c-blue); }
.c-amber  { background: var(--c-amber-bg);  color: var(--c-amber); }
.c-purple { background: var(--c-purple-bg); color: var(--c-purple); }
.c-indigo { background: var(--c-indigo-bg); color: var(--c-indigo); }
.c-green  { background: var(--c-green-bg);  color: var(--c-green); }
.c-teal   { background: var(--c-teal-bg);   color: var(--c-teal); }
.c-orange { background: var(--c-orange-bg); color: var(--c-orange); }
.c-sky    { background: var(--c-sky-bg);    color: var(--c-sky); }
.c-slate  { background: var(--c-slate-bg);  color: var(--c-slate); }

.service-card h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 7px;
}
.service-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
}
.service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  margin-top: auto;
  transition: gap var(--ease-fast);
}
.service-card:hover .service-card__more { gap: 7px; }

/* =============================================================
   HOW IT WORKS
   ============================================================= */
.howitworks {
  background: var(--white);
  padding: var(--sec-py) 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

/* Connecting line between steps */
.steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 16.67%;
  right: 16.67%;
  height: 1px;
  background: linear-gradient(90deg, #2563eb 0%, #bfdbfe 100%);
  opacity: .25;
  z-index: 0;
  pointer-events: none;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__num {
  width: 54px; height: 54px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(29,78,216,.3), 0 0 0 4px rgba(29,78,216,.1);
  letter-spacing: -.02em;
  flex-shrink: 0;
}

.step__body h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 9px;
}
.step__body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 210px;
  margin: 0 auto;
}

/* =============================================================
   LOCATIONS
   ============================================================= */
.locations {
  background: var(--surface);
  padding: var(--sec-py) 0;
}

.locations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.loc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--brand);
  border-radius: var(--r-xl);
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--ease-base), box-shadow var(--ease-base);
}
.loc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-xl);
}

.loc-card__city {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--text);
  margin-bottom: 6px;
}
.loc-card__address {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.loc-card__hours {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  display: flex;
  flex-direction: column;
}
.loc-card__hours-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
}
.loc-card__hours-row dt {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  min-width: 70px;
}
.loc-card__hours-row dd {
  font-size: 13.5px;
  color: var(--text-muted);
}

.loc-card__contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.loc-card__contact a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--ease-fast);
}
.loc-card__contact a:hover { color: var(--brand); }
.loc-card__contact a:focus-visible { outline: 2px solid #60a5fa; border-radius: 2px; }

/* =============================================================
   ABOUT
   ============================================================= */
.about {
  background: var(--white);
  padding: var(--sec-py) 0;
}

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

.about__copy p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.about__checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.about__checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.check-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Card stack visual */
.about__cards {
  position: relative;
  width: 360px;
  height: 360px;
  margin: 0 auto;
}

.about__card {
  position: absolute;
  border-radius: var(--r-xl);
  padding: 28px 30px;
  text-align: center;
  border: 1px solid var(--border);
}

.about__card--accent {
  top: 0; left: 0;
  width: 180px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(29,78,216,.3);
}
.about__card--accent .about__card-num,
.about__card--accent .about__card-lbl { color: #fff; }

.about__card--white {
  background: var(--white);
  box-shadow: var(--sh-xl);
}
.about__card:nth-child(2) { top: 90px; right: 0; width: 168px; }
.about__card--sm { bottom: 0; left: 50%; transform: translateX(-50%); width: 148px; }

.about__card-num {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.about__card-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* =============================================================
   CTA BAND
   ============================================================= */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #07101e 0%, #1a3460 50%, #07101e 100%);
  padding: 96px 0;
  text-align: center;
}
.cta-band__grid-overlay {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.035em;
  line-height: 1.12;
  margin-bottom: 14px;
}
.cta-band p {
  font-size: 18px;
  color: rgba(255,255,255,.55);
  margin-bottom: 44px;
}
.cta-band__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: #070f1e;
  color: rgba(255,255,255,.5);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.6fr 1.6fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer__logo-img {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.38);
}

.footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a {
  font-size: 14px;
  color: rgba(255,255,255,.42);
  transition: color var(--ease-fast);
}
.footer__col ul a:hover { color: rgba(255,255,255,.85); }

.footer__col address {
  font-size: 14px;
  color: rgba(255,255,255,.42);
  line-height: 1.85;
}
.footer__col address a {
  transition: color var(--ease-fast);
}
.footer__col address a:hover { color: #60a5fa; }

.footer__book-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #60a5fa;
  transition: color var(--ease-fast);
}
.footer__book-link:hover { color: #93c5fd; }

.footer__bottom {
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.25);
}

/* =============================================================
   SCROLL ANIMATIONS
   ============================================================= */
[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger siblings */
[data-animate]:nth-child(1) { transition-delay: 0ms; }
[data-animate]:nth-child(2) { transition-delay: 75ms; }
[data-animate]:nth-child(3) { transition-delay: 150ms; }
[data-animate]:nth-child(4) { transition-delay: 225ms; }
[data-animate]:nth-child(5) { transition-delay: 300ms; }
[data-animate]:nth-child(6) { transition-delay: 375ms; }
[data-animate]:nth-child(7) { transition-delay: 450ms; }
[data-animate]:nth-child(8) { transition-delay: 525ms; }

/* =============================================================
   RESPONSIVE — 1024px
   ============================================================= */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(4, 1fr); }
  .service-card--featured { grid-column: span 2; }
  .service-card:not(.service-card--featured) { grid-column: span 2; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .about__grid { gap: 48px; }
  .about__cards { width: 300px; height: 300px; }
  .about__card:nth-child(1) { width: 150px; padding: 22px 24px; }
  .about__card:nth-child(2) { width: 145px; top: 80px; padding: 22px 24px; }
  .about__card:nth-child(3) { width: 130px; padding: 22px 24px; }
  .about__card-num { font-size: 30px; }
}

/* =============================================================
   RESPONSIVE — 768px
   ============================================================= */
@media (max-width: 768px) {
  :root { --sec-py: 64px; }

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

  .hero__content { padding: 110px 20px 72px; }
  .hero__actions { flex-direction: column; gap: 10px; }
  .hero__actions .btn--lg { width: 100%; }
  .hero__trust-dot:first-of-type { display: none; }

  .stats__inner { flex-wrap: wrap; }
  .stats__item { flex: 0 0 50%; max-width: 50%; padding: 36px 16px; }
  .stats__divider { display: none; }

  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .service-card--featured { grid-column: 1 / -1; }
  .service-card:not(.service-card--featured) { grid-column: span 1; }

  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .steps::before { display: none; }
  .step {
    flex-direction: row;
    text-align: left;
    gap: 20px;
  }
  .step__num { margin-bottom: 0; flex-shrink: 0; }
  .step__body p { max-width: none; }

  .locations__grid { grid-template-columns: 1fr; }
  .loc-card { padding: 28px 24px; }

  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__cards { display: none; }

  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
}

/* =============================================================
   RESPONSIVE — 480px
   ============================================================= */
@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
  .service-card--featured, .service-card:not(.service-card--featured) { grid-column: span 1; }
  .stats__item { flex: 0 0 100%; max-width: 100%; }
  .hero__trust { gap: 10px 14px; }
  .hero__trust-dot { display: none; }
}
