/* ================================================================
   LOCALBOOSTER — Design v4 — White & Blue, Mobile-First
   ================================================================ */

/* ── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
  background: #fff;
  color: #1e293b;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  --blue-900: #1e3a8a;
  --blue-800: #1e40af;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
  --white:    #ffffff;
  --green:    #16a34a;
  --font-display: 'Roboto', sans-serif;
  --font-body:    'Roboto', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --nav-h: 64px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 10px 40px rgba(37,99,235,.12);
  --shadow-card: 0 2px 8px rgba(0,0,0,.08);
  --trans: all .25s cubic-bezier(.4,0,.2,1);
}

/* ── TYPOGRAPHY ────────────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--slate-900);
}
h1 { font-size: clamp(1.9rem, 6vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 4vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--slate-700); line-height: 1.8; }

.text-blue   { color: var(--blue-600); }
.text-muted  { color: var(--slate-500); }
.text-white  { color: #fff; }
.lead { font-size: clamp(1rem, 2.5vw, 1.15rem); color: var(--slate-700); }
em.hi {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LAYOUT ────────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 20px; }
section { padding: 64px 0; }
@media (min-width: 768px) { section { padding: 96px 0; } .container { padding: 0 32px; } }

/* ── BACKGROUNDS & SECTIONS ────────────────────────────────────── */
.bg-white   { background: #fff; }
.bg-light   { background: var(--slate-50); }
.bg-blue-light { background: var(--blue-50); }
.bg-blue    { background: var(--blue-800); }
.bg-dark    { background: var(--blue-900); }
.section-white { background: #fff; }
.section-light { background: var(--slate-50); }
.section-blue  { background: var(--blue-50); }

/* ── DIVIDER STRIPE ────────────────────────────────────────────── */
.stripe { height: 3px; background: linear-gradient(90deg, var(--blue-600), var(--blue-400)); }

/* ── NAVBAR ────────────────────────────────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 900;
}
.nav-overlay.active { display: block; }

.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: #fff;
  border-bottom: 1px solid var(--slate-200);
  z-index: 1000;
  display: flex; align-items: center;
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.1); }

.nav-container {
  display: flex; align-items: center; gap: 8px;
  max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%;
}
@media (min-width: 768px) { .nav-container { padding: 0 32px; } }

/* Logo */
.logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 800;
  white-space: nowrap; margin-right: auto; flex-shrink: 0;
  color: var(--slate-900); text-decoration: none;
}
.logo-icon { font-size: 1.25rem; }
.logo-accent { color: var(--blue-600); }

/* Nav links (desktop) */
.nav-menu {
  display: flex; align-items: center; gap: 2px;
}
.nav-link {
  padding: 8px 13px; font-size: .875rem; font-weight: 500;
  color: var(--slate-700); border-radius: var(--radius-sm);
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); white-space: nowrap;
  transition: var(--trans); display: flex; align-items: center; gap: 5px;
}
.nav-link:hover { color: var(--blue-600); background: var(--blue-50); }

/* Chevron */
.chevron { font-size: .65rem; transition: transform .25s; }
.nav-dropdown.open > .nav-link .chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-md); padding: 8px; min-width: 240px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s, transform .2s, visibility .2s;
  box-shadow: var(--shadow-md); z-index: 200;
}
.nav-dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-mega {
  display: flex; gap: 0; min-width: 520px;
  padding: 16px; left: 50%;
}
.mega-col { flex: 1; }
.mega-col + .mega-col { border-left: 1px solid var(--slate-200); padding-left: 12px; margin-left: 12px; }
.mega-heading {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--slate-500);
  padding: 4px 12px 10px; display: block;
}
.mega-heading a { color: var(--blue-600); }
.dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: var(--radius-sm);
  font-size: .85rem; color: var(--slate-700);
  transition: var(--trans);
}
.dropdown-item:hover { background: var(--blue-50); color: var(--blue-600); }
.d-icon { font-size: .95rem; width: 20px; text-align: center; flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 1100; width: 44px; height: 44px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--slate-700); border-radius: 2px;
  transition: var(--trans); transform-origin: center;
}
.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); }

.nav-cta { margin-left: 10px; flex-shrink: 0; }

/* ── MOBILE NAV ────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: 0; right: 0;
    width: min(340px, 88vw); height: 100dvh;
    background: #fff; border-left: 1px solid var(--slate-200);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0; padding: calc(var(--nav-h) + 16px) 16px 32px;
    overflow-y: auto; z-index: 1000;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link {
    padding: 13px 16px; font-size: .97rem; width: 100%;
    justify-content: space-between; border-radius: var(--radius-sm);
  }
  .nav-dropdown { width: 100%; }
  .dropdown-menu {
    position: static; transform: none !important;
    width: 100%; opacity: 1; visibility: visible; pointer-events: all;
    background: var(--slate-50); border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm); margin-top: 4px;
    box-shadow: none; max-height: 0; overflow: hidden; padding: 0;
    transition: max-height .35s ease, padding .25s;
  }
  .nav-dropdown.open .dropdown-menu { max-height: 800px; padding: 8px; }
  .dropdown-mega {
    flex-direction: column; min-width: 0; width: 100%; padding: 8px; gap: 8px;
  }
  .mega-col + .mega-col { border-left: none; border-top: 1px solid var(--slate-200); padding-left: 0; margin-left: 0; padding-top: 8px; margin-top: 8px; }
  .dropdown-item { padding: 10px 12px; font-size: .9rem; }
  .nav-cta { margin: 16px 0 0; width: 100%; justify-content: center; padding: 14px; font-size: .95rem; }
}

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; min-height: 48px;
  font-family: var(--font-body); font-size: .93rem; font-weight: 600;
  border-radius: var(--radius-sm); cursor: pointer; border: none;
  transition: var(--trans); white-space: nowrap; text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary   { background: var(--blue-600); color: #fff; box-shadow: 0 4px 16px rgba(37,99,235,.35); }
.btn-primary:hover { background: var(--blue-800); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(37,99,235,.4); color: #fff; }
.btn-outline   { background: #fff; color: var(--blue-600); border: 2px solid var(--blue-600); }
.btn-outline:hover { background: var(--blue-600); color: #fff; transform: translateY(-1px); }
.btn-white     { background: #fff; color: var(--blue-800); }
.btn-white:hover { background: var(--blue-50); color: var(--blue-800); transform: translateY(-1px); }
.btn-ghost     { background: transparent; color: var(--slate-700); border: 1px solid var(--slate-300); }
.btn-ghost:hover { border-color: var(--blue-600); color: var(--blue-600); }
.btn-lg        { padding: 16px 32px; font-size: 1rem; border-radius: var(--radius-md); min-height: 54px; }
.btn-sm        { padding: 9px 18px; font-size: .83rem; min-height: 38px; }
.btn-block     { width: 100%; }

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  padding: calc(var(--nav-h) + 48px) 0 64px;
  background: linear-gradient(160deg, var(--blue-50) 0%, #fff 60%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, var(--blue-100) 0%, transparent 70%);
  top: -150px; right: -150px; pointer-events: none;
}
.hero-content { max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; background: var(--blue-100); border-radius: 100px;
  font-size: .82rem; font-weight: 700; color: var(--blue-800);
  margin-bottom: 24px; letter-spacing: .04em; text-transform: uppercase;
}
.hero h1 { margin-bottom: 22px; }
.hero .lead { margin-bottom: 36px; max-width: 600px; font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof {
  display: flex; flex-wrap: wrap; gap: 28px;
  margin-top: 52px; padding-top: 40px;
  border-top: 1px solid var(--slate-200);
}
.proof-item-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 800;
  color: var(--blue-600); line-height: 1;
}
.proof-item-label { font-size: .83rem; color: var(--slate-500); margin-top: 3px; }

/* ── SECTION LABEL ─────────────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue-600); margin-bottom: 14px;
}
.section-label::before { content: ''; display: block; width: 20px; height: 2px; background: var(--blue-600); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-label { justify-content: center; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 580px; margin: 0 auto; font-size: 1.02rem; }

/* ── METRICS STRIP ─────────────────────────────────────────────── */
.metrics-strip {
  background: var(--blue-800); color: #fff;
  padding: 48px 0;
}
.metrics-inner {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 20px;
  text-align: center;
}
@media (min-width: 768px) { .metrics-inner { grid-template-columns: repeat(4, 1fr); } }
.metric-num {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 800;
  color: #fff; line-height: 1;
}
.metric-label { font-size: .85rem; color: var(--blue-100); margin-top: 6px; }

/* ── CARDS ─────────────────────────────────────────────────────── */
.card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 28px;
  transition: var(--trans);
}
.card:hover { border-color: var(--blue-400); box-shadow: var(--shadow-lg); }

/* ── SERVICES GRID ─────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 28px;
  transition: var(--trans); text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 12px;
  position: relative; overflow: hidden;
}
.service-card:hover {
  border-color: var(--blue-400);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-icon-wrap {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--blue-50); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem;
  border: 1px solid var(--blue-100);
}
.service-card h3 { font-size: 1.05rem; color: var(--slate-900); }
.service-card p  { font-size: .88rem; }
.service-card .card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .83rem; font-weight: 600; color: var(--blue-600);
  margin-top: auto;
}
.service-card:hover .card-cta { gap: 10px; }

/* ── ACTIVITY & CITY GRIDS ─────────────────────────────────────── */
.activity-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
@media (min-width: 640px) { .activity-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .activity-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; } }

.activity-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-md); padding: 18px 14px;
  text-align: center; transition: var(--trans);
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.activity-card:hover { border-color: var(--blue-400); background: var(--blue-50); transform: translateY(-2px); }
.activity-emoji { font-size: 2rem; }
.activity-name  { font-size: .87rem; font-weight: 600; color: var(--slate-900); }
.activity-arrow { font-size: .78rem; color: var(--blue-600); opacity: 0; transition: var(--trans); }
.activity-card:hover .activity-arrow { opacity: 1; }

.city-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 640px) { .city-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .city-grid { grid-template-columns: repeat(5, 1fr); } }

.city-card {
  background: #fff; border: 2px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 24px 16px;
  text-align: center; transition: var(--trans);
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.city-card:hover { border-color: var(--blue-600); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.city-emoji { font-size: 2.4rem; }
.city-name  { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.city-desc  { font-size: .8rem; color: var(--slate-500); }

/* ── TWO-COL ────────────────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; gap: 64px; } .two-col.reverse > *:first-child { order: 2; } .two-col.reverse > *:last-child { order: 1; } }

/* ── FEATURES LIST ─────────────────────────────────────────────── */
.features-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.features-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .93rem; color: var(--slate-700);
}
.check {
  width: 22px; height: 22px; min-width: 22px; border-radius: 50%;
  background: var(--blue-100); color: var(--blue-700);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}

/* ── ICON GRID ──────────────────────────────────────────────────── */
.icon-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 640px) { .icon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .icon-grid { grid-template-columns: repeat(3, 1fr); } }

.icon-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-md); padding: 24px;
  transition: var(--trans);
}
.icon-card:hover { border-color: var(--blue-400); box-shadow: var(--shadow-md); }
.icon-card .icon { font-size: 1.9rem; margin-bottom: 12px; }
.icon-card h4 { font-size: .97rem; margin-bottom: 8px; }
.icon-card p  { font-size: .85rem; }

/* ── PROCESS STEPS ─────────────────────────────────────────────── */
.process-list { display: flex; flex-direction: column; gap: 0; }
.process-step { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--slate-200); }
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 44px; height: 44px; min-width: 44px; border-radius: 50%;
  background: var(--blue-600); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: .85rem; font-weight: 700;
  flex-shrink: 0;
}
.step-content h4 { color: var(--slate-900); margin-bottom: 6px; }
.step-content p  { font-size: .88rem; }

/* ── CALLOUT / HIGHLIGHT ───────────────────────────────────────── */
.callout {
  background: var(--blue-50); border-left: 3px solid var(--blue-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px; margin: 24px 0;
}
.callout p { color: var(--slate-900); font-weight: 500; margin: 0; font-size: .93rem; }
.highlight-box {
  background: var(--blue-50); border: 1px solid var(--blue-100);
  border-radius: var(--radius-md); padding: 22px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 26px;
  transition: var(--trans);
}
.testimonial-card:hover { border-color: var(--blue-400); box-shadow: var(--shadow-md); }
.stars { color: #f59e0b; font-size: .9rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: .91rem; color: var(--slate-700); font-style: italic; line-height: 1.8; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 11px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .82rem; color: #fff; flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .88rem; }
.author-biz  { font-size: .78rem; color: var(--slate-500); }

/* ── CTA SECTION ─────────────────────────────────────────────────*/
.cta-section { padding: 80px 0; }
.cta-box {
  background: var(--blue-800); border-radius: var(--radius-xl);
  padding: 56px 32px; text-align: center; color: #fff; position: relative; overflow: hidden;
}
@media (min-width: 768px) { .cta-box { padding: 72px 80px; } }
.cta-box::before {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,.05);
  top: -80px; right: -80px; pointer-events: none;
}
.cta-box h2 { color: #fff; margin-bottom: 14px; }
.cta-box p  { color: var(--blue-100); font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── PRICING ─────────────────────────────────────────────────────*/
.pricing-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px; align-items: stretch;
}
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  background: #fff; border: 2px solid var(--slate-200);
  border-radius: var(--radius-xl); padding: 36px 28px;
  display: flex; flex-direction: column; transition: var(--trans);
  position: relative; overflow: hidden;
}
.pricing-card.featured {
  background: var(--blue-800); border-color: var(--blue-800); color: #fff;
  transform: none;
}
@media (min-width: 900px) { .pricing-card.featured { transform: scale(1.03); } }
.pricing-card.featured h3,
.pricing-card.featured p,
.pricing-card.featured .plan-price,
.pricing-card.featured .plan-features li { color: #fff; }
.pricing-card.featured .plan-features li::before { color: var(--blue-300); }

.featured-badge {
  position: absolute; top: 18px; right: -24px;
  background: #f59e0b; color: #fff; font-size: .68rem; font-weight: 800;
  padding: 5px 40px; transform: rotate(45deg);
  letter-spacing: .05em; text-transform: uppercase;
}
.plan-label {
  font-size: .73rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue-600); margin-bottom: 8px;
}
.pricing-card.featured .plan-label { color: var(--blue-200); }
.plan-price {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 800;
  color: var(--slate-900); line-height: 1; margin: 14px 0 4px;
}
.plan-period { font-size: .88rem; color: var(--slate-500); margin-bottom: 8px; }
.pricing-card.featured .plan-period { color: var(--blue-200); }
.plan-monthly {
  display: inline-block; font-size: .82rem; font-weight: 600;
  background: var(--blue-100); color: var(--blue-800);
  padding: 3px 10px; border-radius: 100px; margin-bottom: 20px;
}
.pricing-card.featured .plan-monthly { background: rgba(255,255,255,.15); color: #fff; }
.plan-desc {
  font-size: .87rem; color: var(--slate-500);
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--slate-200);
}
.pricing-card.featured .plan-desc { color: var(--blue-200); border-color: rgba(255,255,255,.15); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .87rem; color: var(--slate-700); line-height: 1.5;
}
.plan-features li::before {
  content: '✓'; color: var(--blue-600);
  font-weight: 800; flex-shrink: 0; margin-top: 1px;
}

/* ── FAQ ─────────────────────────────────────────────────────────*/
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-md); overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--blue-400); }
.faq-q {
  width: 100%; padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  color: var(--slate-900); text-align: left; gap: 14px;
  min-height: 60px;
}
.faq-icon { font-size: 1.1rem; color: var(--blue-600); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s; }
.faq-a p { padding-bottom: 18px; font-size: .92rem; }
.faq-item.open .faq-a { max-height: 400px; }

/* ── CONTACT FORM ────────────────────────────────────────────────*/
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group  { display: flex; flex-direction: column; gap: 6px; }
.form-row    { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--slate-700); }
.form-group input, .form-group textarea, .form-group select {
  background: var(--slate-50); border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm); padding: 13px 16px; min-height: 48px;
  font-family: var(--font-body); font-size: .93rem; color: var(--slate-900);
  transition: border-color .2s; width: 100%; appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
  background: #fff;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--slate-400); }

/* ── BLOG ────────────────────────────────────────────────────────*/
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--trans); text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--blue-400); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-thumb {
  height: 180px; display: flex; align-items: center;
  justify-content: center; font-size: 3.5rem; background: var(--blue-50);
}
.blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: .77rem; color: var(--slate-400); }
.blog-tag  { padding: 3px 10px; border-radius: 100px; background: var(--blue-100); font-size: .73rem; color: var(--blue-700); font-weight: 600; }
.blog-card h3 { font-size: 1rem; color: var(--slate-900); line-height: 1.4; }
.blog-card p  { font-size: .86rem; -webkit-line-clamp: 3; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
.blog-read-more { display: inline-flex; align-items: center; gap: 5px; font-size: .82rem; font-weight: 600; color: var(--blue-600); margin-top: auto; }
.blog-card:hover .blog-read-more { gap: 9px; }

/* ── INNER PAGE HERO ─────────────────────────────────────────────*/
.page-hero {
  padding: calc(var(--nav-h) + 56px) 0 64px;
  background: linear-gradient(160deg, var(--blue-50) 0%, #fff 70%);
  border-bottom: 1px solid var(--slate-200);
}
.page-hero-inner { max-width: 760px; }
.page-hero h1 { margin-bottom: 18px; }
.page-hero .lead { margin-bottom: 32px; }

/* ── BREADCRUMB ──────────────────────────────────────────────────*/
.breadcrumb {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  font-size: .82rem; color: var(--slate-400); margin-bottom: 28px;
}
.breadcrumb a { color: var(--slate-500); }
.breadcrumb a:hover { color: var(--blue-600); }

/* ── BLOG ARTICLE ────────────────────────────────────────────────*/
.blog-article { padding: calc(var(--nav-h) + 48px) 0 80px; }
.blog-article-inner { max-width: 760px; margin: 0 auto; }
.article-header { margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--slate-200); }
.article-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.article-body h2 { font-size: 1.4rem; margin: 32px 0 12px; }
.article-body h3 { font-size: 1.15rem; margin: 24px 0 10px; }
.article-body p  { margin-bottom: 16px; font-size: .95rem; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 16px; }
.article-body li { font-size: .93rem; color: var(--slate-700); margin-bottom: 7px; line-height: 1.7; }
.article-body strong { color: var(--slate-900); }

/* ── CLIENT PAGE ─────────────────────────────────────────────────*/
.client-logo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px)  { .client-logo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .client-logo-grid { grid-template-columns: repeat(4, 1fr); } }
.client-logo-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-md); padding: 22px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center; transition: var(--trans);
}
.client-logo-card:hover { border-color: var(--blue-400); transform: translateY(-2px); }
.client-emoji { font-size: 2.1rem; }
.client-name  { font-size: .84rem; font-weight: 600; color: var(--slate-900); }
.client-city  { font-size: .74rem; color: var(--slate-400); }
.case-study-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl); padding: 32px 24px;
  display: grid; grid-template-columns: 1fr; gap: 28px;
  transition: var(--trans); margin-bottom: 20px;
}
@media (min-width: 900px) { .case-study-card { grid-template-columns: 1fr 1fr; padding: 40px; gap: 40px; } }
.case-study-card:hover { border-color: var(--blue-400); box-shadow: var(--shadow-lg); }
.case-result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.case-result-box { background: var(--blue-50); border-radius: var(--radius-sm); padding: 16px; text-align: center; }
.case-result-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--blue-600); }
.case-result-label { font-size: .79rem; color: var(--slate-500); margin-top: 3px; }

/* ── FOOTER ──────────────────────────────────────────────────────*/
.site-footer {
  background: var(--blue-900); color: #fff; padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 52px;
}
@media (min-width: 768px)  { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2.5fr 1fr 1fr 1.5fr; gap: 56px; } }
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand .logo-accent { color: var(--blue-400); }
.footer-tagline { font-family: var(--font-display); font-size: .95rem; font-weight: 600; color: var(--blue-100); margin-bottom: 8px; }
.footer-desc    { font-size: .84rem; color: var(--blue-200); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 8px; }
.social-icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .67rem; font-weight: 700; letter-spacing: .05em;
  color: var(--blue-200); transition: var(--trans); text-transform: uppercase;
}
.social-icon:hover { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }
.footer-col h4 { font-size: .73rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-300); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: .87rem; color: var(--blue-200); }
.footer-col ul li a:hover { color: #fff; }
.footer-contacts li { display: flex; align-items: flex-start; gap: 9px; font-size: .87rem; color: var(--blue-200); }
.footer-contacts a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: .79rem; color: var(--blue-300); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: .79rem; color: var(--blue-300); }
.footer-legal a:hover { color: #fff; }

/* ── COOKIE BANNER ───────────────────────────────────────────────*/
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 640px; margin: 0 auto;
  background: var(--blue-900); border: 1px solid var(--blue-700);
  border-radius: var(--radius-lg); z-index: 9999;
  box-shadow: var(--shadow-md);
}
.cookie-inner {
  padding: 18px 22px; display: flex; align-items: center;
  gap: 14px; flex-wrap: wrap;
}
.cookie-inner p  { font-size: .87rem; flex: 1; min-width: 200px; color: var(--blue-100); }
.cookie-inner a  { color: var(--blue-300); }
.cookie-actions  { display: flex; gap: 8px; }

/* ── LEGAL ───────────────────────────────────────────────────────*/
.legal-page { padding: calc(var(--nav-h) + 48px) 0 80px; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h1 { margin-bottom: 8px; }
.legal-content .meta { font-size: .82rem; color: var(--slate-400); margin-bottom: 40px; padding-bottom: 28px; border-bottom: 1px solid var(--slate-200); }
.legal-content h2 { font-size: 1.28rem; margin: 32px 0 12px; }
.legal-content h3 { font-size: 1.05rem; margin: 22px 0 8px; }
.legal-content p  { margin-bottom: 13px; font-size: .92rem; }
.legal-content ul { padding-left: 20px; margin-bottom: 13px; }
.legal-content ul li { font-size: .92rem; margin-bottom: 6px; line-height: 1.7; }
.legal-content a  { color: var(--blue-600); }
.legal-content table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.legal-content th, .legal-content td { padding: 10px 13px; border: 1px solid var(--slate-200); font-size: .87rem; text-align: left; }
.legal-content th { background: var(--slate-50); font-weight: 600; }

/* ── ANIMATIONS ──────────────────────────────────────────────────*/
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }

/* ── UTILITY ─────────────────────────────────────────────────────*/
.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mb-4  { margin-bottom: 16px; }
.tags  { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag   { padding: 5px 12px; background: var(--blue-100); border-radius: 100px; font-size: .77rem; color: var(--blue-700); font-weight: 600; }

/* ── ROBOTO TWEAKS ────────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-weight: 900; letter-spacing: -.01em; }
h1 { font-size: clamp(1.8rem, 5.5vw, 3.2rem); font-weight: 900; }
h2 { font-size: clamp(1.45rem, 3.8vw, 2.3rem); font-weight: 700; }
.hero-badge { font-weight: 700; }
.section-label { font-weight: 700; }
.plan-price { font-weight: 900; }
.metric-num { font-weight: 900; }

/* ── ACTIVITY GRID — redesign ─────────────────────────────────── */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 480px)  { .activity-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px)  { .activity-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; } }
@media (min-width: 1024px) { .activity-grid { grid-template-columns: repeat(5, 1fr); } }

.activity-card {
  background: #fff;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 20px 12px 16px;
  text-align: center;
  transition: var(--trans);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
}
.activity-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue-600);
  transform: scaleX(0);
  transition: transform .25s ease;
  transform-origin: left;
}
.activity-card:hover {
  border-color: var(--blue-400);
  box-shadow: 0 4px 20px rgba(37,99,235,.12);
  transform: translateY(-3px);
}
.activity-card:hover::after { transform: scaleX(1); }

.activity-emoji {
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: 2px;
}
.activity-name {
  font-size: .82rem;
  font-weight: 700;
  color: var(--slate-800);
  line-height: 1.3;
}
.activity-cta {
  font-size: .73rem;
  color: var(--blue-600);
  font-weight: 500;
  margin-top: 2px;
}
/* Hide old arrow span if present */
.activity-arrow { display: none; }


/* ── MEGA MENU SCROLL FIX ─────────────────────────────────────── */
.dropdown-mega {
  max-height: 80vh;
  overflow-y: auto;
}
.dropdown-mega .mega-col {
  min-width: 0;
}
/* On desktop, limit height so it doesn't go off screen */
@media (min-width: 1001px) {
  .dropdown-mega {
    max-height: 70vh;
    overflow-y: auto;
  }
}

/* ── ACTIVITY CARD on homepage inside hero proof section ────────── */
.hero-proof .proof-item-num { font-weight: 900; }

/* ── NAV LINK active state ────────────────────────────────────── */
.nav-link[aria-current="page"],
.nav-link.active {
  color: var(--blue-600);
  background: var(--blue-50);
}

/* ── ENSURE Roboto is applied everywhere ─────────────────────── */
* { font-family: inherit; }
body { font-family: 'Roboto', system-ui, sans-serif; }
h1,h2,h3,h4,h5,h6 { font-family: 'Roboto', system-ui, sans-serif; }
button, input, textarea, select { font-family: 'Roboto', system-ui, sans-serif; }


/* ================================================================
   DROPDOWN — Desktop: pure CSS :hover (no JS delay, no gap issues)
   ================================================================ */

/* Remove the old .open-based opacity rules on desktop */
@media (min-width: 1001px) {

  /* The trigger area wraps button + menu so hover is seamless */
  .nav-dropdown { position: relative; }

  /* Bridge: fills the 8px gap between button bottom and menu top
     so moving the mouse into the menu doesn't trigger mouseleave */
  .nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    height: 12px;          /* covers the gap + a little extra */
    background: transparent;
    pointer-events: auto;  /* keeps the hover chain alive */
    z-index: 199;
  }

  /* Show dropdown on hover of the entire .nav-dropdown */
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    transform: translateX(-50%) translateY(0) !important;
  }

  /* Rotate chevron on hover */
  .nav-dropdown:hover .chevron,
  .nav-dropdown:focus-within .chevron {
    transform: rotate(180deg);
  }

  /* Tighter gap — the bridge covers it */
  .dropdown-menu {
    top: calc(100% + 4px);
  }
}

/* ── MOBILE: accordion still uses .open class from JS ──────────── */
@media (max-width: 1000px) {
  .nav-dropdown.open .dropdown-menu {
    max-height: 800px !important;
    padding: 8px !important;
  }
  .nav-dropdown.open .chevron {
    transform: rotate(180deg);
  }
}
