/* =============================================
   CSS VARIABLES – BMW Blue + White Design System
   ============================================= */
:root {
  /* --blue-XXX variables are set dynamically by the theme (functions.php bimmer_output_css) */
  /* Do NOT define them here — they will override the chosen color palette */
  --white:    #FFFFFF;
  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0F172A;
  --red-500:  #EF4444;

  /* --font-display set by theme */
  /* --font-body set by theme */

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

  --shadow-sm:  0 1px 3px color-mix(in srgb,var(--bm-dark-bg,#0A1628) 8%,transparent), 0 1px 2px color-mix(in srgb,var(--bm-dark-bg,#0A1628) 6%,transparent);
  --shadow-md:  0 4px 16px color-mix(in srgb,var(--bm-dark-bg,#0A1628) 10%,transparent), 0 2px 6px color-mix(in srgb,var(--bm-dark-bg,#0A1628) 6%,transparent);
  --shadow-lg:  0 12px 40px color-mix(in srgb,var(--bm-dark-bg,#0A1628) 14%,transparent), 0 4px 12px color-mix(in srgb,var(--bm-dark-bg,#0A1628) 8%,transparent);
  --shadow-blue: 0 8px 32px color-mix(in srgb,var(--bm-primary,#2563EB) 28%,transparent);
}
/* CLS fix — pre-reserve hero height so layout does not shift */
.hero { min-height: 520px; }

/* Offset scroll targets for sticky nav (replaces JS getBoundingClientRect) */
#paslaugos, #automobiliai, #kontaktai, #main {
  scroll-margin-top: 80px;
}
@media (max-width: 768px) { .hero { min-height: 420px; } }



/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =============================================
   UTILITY
   ============================================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* =============================================
   STICKY NAV
   ============================================= */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 800;
  color: var(--blue-900);
  letter-spacing: -0.02em;
}
.nav-logo-badge {
  width: 34px; height: 34px;
  background: var(--blue-700);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-badge svg { width: 20px; height: 20px; fill: var(--white); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--gray-600);
  transition: color 150ms;
}
.nav-links a:hover { color: var(--blue-700); }
.nav-links a.active { color: var(--blue-700); font-weight: 700; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-700);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: var(--t-sm);
  font-weight: 600;
  box-shadow: var(--shadow-blue);
  transition: background 150ms, transform 150ms;
}
.nav-cta:hover { background: var(--blue-800); transform: translateY(-1px); }
.nav-cta svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: 250ms;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  background: var(--blue-950);
  overflow: hidden;
  padding: 80px 0 100px;
}
/* Geometric background pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 50%, color-mix(in srgb,var(--bm-primary,#2563EB) 18%,transparent) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, color-mix(in srgb,var(--bm-dark-bg,#0A1628) 12%,transparent) 0%, transparent 50%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb,var(--bm-primary,#2563EB) 20%,transparent);
  border: 1px solid color-mix(in srgb,var(--bm-accent,#60A5FA) 30%,transparent);
  color: var(--blue-400);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-400);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue-400);
}
.hero-desc {
  color: rgba(255,255,255,0.65);
  font-size: var(--t-base);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--blue-600);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--t-lg);
  font-weight: 600;
  padding: 18px 36px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-blue);
  cursor: pointer;
  border: none;
  transition: background 200ms, transform 200ms, box-shadow 200ms;
  white-space: nowrap;
}
.btn-call:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px color-mix(in srgb,var(--bm-primary,#2563EB) 40%,transparent);
}
.btn-call svg { width: 20px; height: 20px; fill: currentColor; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: var(--t-sm);
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: color 150ms;
}
.btn-secondary:hover { color: var(--white); }
.btn-secondary svg { width: 16px; height: 16px; fill: currentColor; }
.hero-phone-note {
  font-size: var(--t-xs);
  color: rgba(255,255,255,.8);
  margin-top: 4px;
}

/* Hero visual panel */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  min-height: 300px;
  align-content: start;
  /* CLS fix — prevents reflow when grid loads */
}
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  backdrop-filter: blur(8px);
  animation: slideUp 0.6s both;
}
.hero-card:nth-child(2) { animation-delay: 0.1s; }
.hero-card:nth-child(3) { animation-delay: 0.2s; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.hero-card-icon {
  width: 40px; height: 40px;
  background: color-mix(in srgb,var(--bm-primary,#2563EB) 25%,transparent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-card-icon svg { width: 20px; height: 20px; fill: var(--blue-400); }
.hero-card-title {
  font-weight: 600;
  color: var(--white);
  font-size: var(--t-sm);
}
.hero-card-sub {
  font-size: var(--t-xs);
  color: rgba(255,255,255,.45);
}
.hero-card-body {
  font-size: var(--t-xs);
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}
..hero-feature-grid {
  display: contents; /* Pass-through: children go directly into hero-visual grid */
}
.hero-feat-card {
  min-height: 130px;  /* Prevents CLS */
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
}
.hero-feat-icon {
  width: 40px; height: 40px;
  background: color-mix(in srgb,var(--bm-primary,#2563EB) 25%,transparent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}
.hero-feat-icon svg { width: 18px; height: 18px; }
.hero-feat-card h3 {
  font-family: var(--font-display);
  font-size: var(--t-sm);
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  letter-spacing: -.01em;
}
.hero-feat-card p {
  font-size: var(--t-xs);
  color: rgba(255,255,255,.5);
  line-height: 1.5;
  margin: 0;
}
.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.hero-stat {
  background: rgba(255,255,255,.04);
  padding: 18px 16px;
  text-align: center;
}
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: var(--t-xs);
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--gray-600);
}
.trust-item svg {
  width: 18px; height: 18px;
  fill: var(--blue-600);
  flex-shrink: 0;
}

/* =============================================
   SECTION COMMON
   ============================================= */
section { padding: 88px 0; }
.section-label {
  display: inline-block;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: var(--t-base);
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.7;
}
.section-header { margin-bottom: 56px; }

/* =============================================
   SERVICES
   ============================================= */

/* ── SERVICES CARDS — single responsive grid ─────────────────── */
.services-all-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .services-all-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-all-cards {
    grid-template-columns: 1fr;
  }
}

.services-bg { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-bottom: 24px;
  align-items: stretch;
}
.services-grid > .service-card {
  grid-column: span 2;
}
.services-grid-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* default: 3 cols */
  gap: 24px;
  align-items: stretch;
}
/* 2 bottom cards: 2-col centered layout */
.services-grid-2[data-cols="2"] {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
/* 1 bottom card: centered single card */
.services-grid-2[data-cols="1"] {
  grid-template-columns: 380px;
  justify-content: center;
}
.service-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: border-color 200ms, box-shadow 200ms, transform 200ms;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--blue-400);
  box-shadow: 0 8px 32px color-mix(in srgb,var(--bm-primary,#2563EB) 10%,transparent);
  transform: translateY(-2px);
}
.service-card.featured {
  background: var(--blue-950);
  border-color: var(--blue-700);
  color: var(--white);
}
.service-card-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--red-500);
  color: var(--white);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}
.service-icon {
  width: 48px; height: 48px;
  background: var(--blue-50);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-icon svg { width: 24px; height: 24px; fill: var(--blue-700); }
.service-card.featured .service-icon {
  background: color-mix(in srgb,var(--bm-primary,#2563EB) 25%,transparent);
}
.service-card.featured .service-icon svg { fill: var(--blue-400); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--t-base);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-900);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.service-card.featured h3 { color: var(--white); }
.service-card p {
  font-size: var(--t-sm);
  color: var(--gray-600);
  line-height: 1.65;
  flex-shrink: 0;
}
.service-card.featured p { color: rgba(255,255,255,.6); }
.service-list {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--t-xs);
  color: var(--gray-600);
  line-height: 1.5;
}
.service-card.featured .service-list li { color: rgba(255,255,255,.55); }
.service-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
  margin-top: 6px;
  flex-shrink: 0;
}

/* =============================================
   CAR FINDER
   ============================================= */
.finder-bg {
  background: var(--blue-950);
  position: relative;
  overflow: hidden;
}
.finder-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, color-mix(in srgb, var(--bm-primary,#2563EB) 15%, transparent) 0%, transparent 70%);
}
.finder-bg .section-title { color: var(--white); }
.finder-bg .section-sub { color: rgba(255,255,255,.55); }
.finder-bg .section-label { color: var(--blue-400); }

.finder-search {
  position: relative;
  margin-bottom: 32px;
  max-width: 480px;
}
.finder-search input {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  padding: 14px 48px 14px 20px;
  font-family: var(--font-body);
  font-size: var(--t-sm);
  color: var(--white);
  outline: none;
  transition: border-color 200ms, background 200ms;
}
.finder-search input::placeholder { color: rgba(255,255,255,.3); }
.finder-search input:focus {
  border-color: var(--blue-500);
  background: rgba(255,255,255,.12);
}
.finder-search svg {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  fill: rgba(255,255,255,.35);
  pointer-events: none;
}

.finder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.finder-group {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.finder-group-head {
  background: color-mix(in srgb,var(--bm-primary,#2563EB) 20%,transparent);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.finder-group-head svg {
  width: 16px; height: 16px;
  fill: var(--blue-400);
  flex-shrink: 0;
}
.finder-group-title {
  font-weight: 700;
  font-size: var(--t-sm);
  color: var(--white);
  letter-spacing: 0.02em;
}
.finder-group-sub {
  font-size: var(--t-xs);
  color: rgba(255,255,255,.4);
  margin-left: auto;
}
.finder-list {
  padding: 8px 0;
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.1) transparent;
}
.finder-list::-webkit-scrollbar { width: 4px; }
.finder-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 4px; }
.finder-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  font-size: var(--t-xs);
  color: rgba(255,255,255,.65);
  transition: background 150ms;
}
.finder-item:hover { background: rgba(255,255,255,.04); }
.finder-item.hidden { display: none; }
.finder-item svg { width: 14px; height: 14px; fill: var(--blue-500); flex-shrink: 0; }

.finder-no-results {
  padding: 32px 20px;
  text-align: center;
  color: rgba(255,255,255,.8);
  font-size: var(--t-sm);
  display: none;
}
.finder-callout {
  margin-top: 28px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.finder-callout-text {
  font-size: var(--t-sm);
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.finder-callout-text strong { color: var(--white); }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: var(--t-sm);
  font-weight: 600;
  transition: border-color 200ms, background 200ms;
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--font-body);
  background: none;
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}
.btn-outline-white svg { width: 15px; height: 15px; fill: currentColor; }

/* =============================================
   WHY US
   ============================================= */
.why-bg { background: var(--gray-50); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 32px 20px;
}
.why-icon-wrap {
  width: 64px; height: 64px;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: background 200ms;
}
.why-card:hover .why-icon-wrap { background: var(--blue-100); }
.why-icon-wrap svg { width: 28px; height: 28px; fill: var(--blue-700); }
.why-card h3 {
  font-family: var(--font-display);
  font-size: var(--t-base);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.why-card p {
  font-size: var(--t-sm);
  color: var(--gray-600);
  line-height: 1.65;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: var(--blue-700);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,.08) 0%, transparent 60%);
}
.cta-inner {
  position: relative;
  text-align: center;
}
.cta-inner .section-label { color: rgba(255,255,255,.6); }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta-sub {
  color: rgba(255,255,255,.7);
  font-size: var(--t-base);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-call-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--blue-700);
  font-family: var(--font-body);
  font-size: var(--t-lg);
  font-weight: 700;
  padding: 18px 40px;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  transition: transform 200ms, box-shadow 200ms;
  cursor: pointer;
  border: none;
}
.btn-call-white:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(0,0,0,.25); }
.btn-call-white svg { width: 20px; height: 20px; fill: currentColor; }
.cta-hours {
  font-size: var(--t-xs);
  color: rgba(255,255,255,.5);
  margin-top: 20px;
}


/* =============================================
   SOCIAL STRIP
   ============================================= */
.social-strip {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 40px 0;
}
.social-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.social-strip-quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.social-strip-sub {
  font-size: var(--t-sm);
  color: var(--gray-600);
  margin: 0;
}
.social-strip-links {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.social-strip-btn { font-weight: 600 !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: var(--t-sm);
  font-weight: 600;
  cursor: pointer;
  transition: opacity 200ms, transform 200ms;
}
.social-strip-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.social-strip-btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.social-fb { background: #1877F2; color: #fff; font-weight: 700; }
.social-tt { background: #111; color: #fff; font-weight: 700; }
@media (max-width: 600px) {
  .social-strip-inner { flex-direction: column; align-items: flex-start; }
  .social-strip-links { width: 100%; }
  .social-strip-btn { font-weight: 600 !important; flex: 1; justify-content: center; }
}
/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--blue-950);
  color: rgba(255,255,255,.80);
  padding: 56px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.footer-brand-desc {
  font-size: var(--t-sm);
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,.8);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background 150ms;
}
.footer-social a:hover { background: var(--blue-700); }
.footer-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,.7); }
.footer-col-title {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: var(--t-sm);
  color: rgba(255,255,255,.80);
  transition: color 150ms;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item { color: rgba(255,255,255,.85);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--t-sm);
  margin-bottom: 12px;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  fill: var(--blue-400);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: var(--t-xs);
  color: rgba(255,255,255,.75);
}

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 66px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 24px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu .mobile-cta {
  margin-top: 16px;
  background: var(--blue-700);
  color: var(--white);
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  border-bottom: none;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid > .service-card { grid-column: span 2; }
  /* services-grid-2 layout handled by data-cols attribute CSS above */
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero { padding: 60px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { margin-top: 8px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid, .services-grid-2, .services-all-cards { display: block !important; }
  .services-grid > .service-card,
  .services-grid-2 > .service-card,
  .services-all-cards > .service-card { display: block !important; width: 100% !important; margin-bottom: 24px; }
  
  .finder-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .trust-items { gap: 20px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .btn-call-white { text-align: center; justify-content: center; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .why-grid { grid-template-columns: 1fr; }
  .finder-search { max-width: 100%; }
  .services-grid,
  .services-grid-2 { grid-template-columns: 1fr !important; }
  .services-grid > .service-card,
  .services-grid-2 > .service-card { grid-column: 1 / span 1 !important; }
  .services-grid-2 > .service-card:nth-child(n) { grid-column: 1 / span 1 !important; }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-card { animation: none; }
  .hero-eyebrow::before { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}