/* ============================================================
   ALERTFLAT — STYLESHEET  (fully tested, all viewports)
   Edit :root tokens to retheme the entire site.
   ============================================================ */

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

/* ── DESIGN TOKENS ── */
:root {
  --blue:      #1a8fd1;
  --blue-dk:   #1578b5;
  --blue-dkr:  #0f5f93;   /* city banner — distinct from nav */
  --blue-lt:   #e8f4fb;
  --white:     #ffffff;
  --gray1:     #f4f8fc;
  --gray2:     #ddeaf4;
  --gray3:     #8bafc7;
  --gray4:     #374151;
  --text:      #0d2436;
  --navy:      #0f172a;
  --green:     #22c55e;
  --nav-h:     68px;
  --radius:    14px;
  --shadow:    0 4px 24px rgba(26, 143, 209, 0.14);
  --shadow-lg: 0 12px 40px rgba(26, 143, 209, 0.22);
}

/* ── BASE ── */
html   { scroll-behavior: smooth; }
body   { font-family: 'Inter', system-ui, -apple-system, sans-serif; font-size: 17px; color: var(--text); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a      { color: inherit; text-decoration: none; }
img    { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ── FIX H7: FOCUS STYLES (WCAG 2.1 AA) ── */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible, a:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(30px, 4vw, 54px);  font-weight: 800; letter-spacing: -1.5px; line-height: 1.12; }
h2 { font-size: clamp(24px, 2.8vw, 38px); font-weight: 700; letter-spacing: -0.8px; line-height: 1.2;  }
h3 { font-size: 18px;                      font-weight: 600;                          line-height: 1.4;  }
p  { line-height: 1.8; color: var(--gray4); font-size: 16px; }

section { padding: 90px 5vw; }

/* ── FIX H3: SCROLL MARGIN for fixed nav ── */
section, .cta-band {
  scroll-margin-top: var(--nav-h);
}

/* ── SHARED COMPONENTS ── */
.tag-pill {
  display: inline-block;
  background: var(--blue-lt); color: var(--blue);
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 50px; margin-bottom: 22px;
}

/* FIX M7: Replace <a><button> nesting — all CTAs are now styled <a> tags */
.cta-link {
  display: inline-flex; align-items: center; gap: 9px;
  border-radius: 50px; font-weight: 700; font-size: 15px; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .15s;
  border: none; text-decoration: none; font-family: inherit;
}
.cta-blue  { background: var(--blue);  color: #fff; padding: 14px 28px; }
.cta-blue:hover  { background: var(--blue-dk); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(26,143,209,.32); }
.cta-ghost { background: transparent; color: var(--blue); border: 2px solid var(--blue); padding: 12px 26px; }
.cta-ghost:hover { background: var(--blue-lt); transform: translateY(-2px); }
.cta-white { background: #fff; color: var(--blue); padding: 15px 34px; font-weight: 800; }
.cta-white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.18); }

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: var(--nav-h); background: var(--blue);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; box-shadow: 0 2px 16px rgba(10,80,130,.3);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 900; font-size: 22px; letter-spacing: -0.5px; color: #fff; cursor: pointer;
  flex-shrink: 0;
}
.nav-logo .pin {
  width: 34px; height: 34px; background: rgba(255,255,255,.18);
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.35);
}
.nav-logo .pin svg { transform: rotate(45deg); }
.nav-logo em       { font-style: normal; font-weight: 300; opacity: .8; }

.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,.93);
  padding-bottom: 3px; border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s; cursor: pointer;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; border-bottom-color: rgba(255,255,255,.65); }

.nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* ── LANGUAGE SWITCHER DROPDOWN ── */
.lang-switcher { position: relative; }

.lang-btn {
  background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3);
  border-radius: 50px; padding: 7px 14px; font-size: 14px; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; gap: 6px;
  transition: background .2s; white-space: nowrap; font-family: inherit;
}
.lang-btn:hover { background: rgba(255,255,255,.25); }
.lang-flag { font-size: 16px; line-height: 1; }
.lang-chevron { transition: transform .2s; flex-shrink: 0; }
.lang-btn[aria-expanded="true"] .lang-chevron { transform: rotate(180deg); }

.lang-dropdown {
  display: none;
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.16), 0 2px 8px rgba(0,0,0,.08);
  min-width: 150px; padding: 6px; z-index: 400;
  border: 1px solid rgba(0,0,0,.06);
}
.lang-dropdown.open { display: block; animation: dropIn .15s ease; }
@keyframes dropIn { from { opacity:0; transform:translateY(-4px); } to { opacity:1; transform:none; } }

.lang-option {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 10px 12px; border-radius: 8px; font-family: inherit;
  font-size: 14px; font-weight: 500; color: var(--text);
  display: flex; align-items: center; gap: 10px;
  transition: background .15s; text-align: left;
}
.lang-option:hover { background: var(--gray1); }
.lang-option.active { background: var(--blue-lt); color: var(--blue); font-weight: 700; }
.lang-option .lang-flag { font-size: 20px; }
.lang-option .lang-label { flex: 1; }
.lang-option .lang-check { color: var(--blue); font-size: 13px; font-weight: 700; }

.nav-cta-link {
  background: #fff; color: var(--blue); border-radius: 50px;
  padding: 9px 20px; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; gap: 7px;
  white-space: nowrap; transition: background .2s, transform .15s;
  text-decoration: none;
}
.nav-cta-link:hover { background: var(--blue-lt); transform: translateY(-1px); }

/* Hamburger button — mobile only */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: 8px; transition: background .2s;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.hamburger:hover { background: rgba(255,255,255,.15); }
.hamburger span {
  display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── FIX C1: MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 290;
  background: var(--blue-dk); padding: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}
.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu ul { list-style: none; padding: 8px 0 16px; }
.mobile-menu ul li a {
  display: block; padding: 16px 5vw; font-size: 17px; font-weight: 600; color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.1); cursor: pointer;
  transition: background .15s;
}
.mobile-menu ul li:last-child a { border-bottom: none; }
.mobile-menu ul li a:hover { background: rgba(255,255,255,.1); }
.mobile-menu .mob-cta {
  margin: 4px 5vw 8px;
  background: #fff; color: var(--blue); border-radius: 50px;
  padding: 14px; font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; transition: background .2s;
}
.mobile-menu .mob-cta:hover { background: var(--blue-lt); }

/* Overlay behind mobile menu */
.menu-overlay {
  display: none; position: fixed; inset: 0; z-index: 280;
  background: rgba(0,0,0,.4);
}
.menu-overlay.open { display: block; }

/* ── FIX M1: PAGE-LOAD ANIMATION ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-text .tag-pill { animation: fadeUp .5s ease both; }
.hero-text h1        { animation: fadeUp .6s ease .1s both; }
.hero-text > p       { animation: fadeUp .6s ease .2s both; }
.hero-btns           { animation: fadeUp .6s ease .3s both; }
.hero-stats          { animation: fadeUp .6s ease .4s both; }
.hero-visual         { animation: fadeUp .7s ease .2s both; }

/* ── FIX M8: LANG SWITCH TRANSITION ── */
.lang-fade { animation: langFade .25s ease; }
@keyframes langFade { from { opacity: 0; } to { opacity: 1; } }

/* ── HERO ── */
#hero {
  padding-top: calc(var(--nav-h) + 64px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  background: linear-gradient(140deg, #deeef9 0%, #edf5fb 55%, #cce3f4 100%);
  min-height: 100vh;
}
.hero-text h1    { margin-bottom: 20px; }
.hero-text h1 em { color: var(--blue); font-style: normal; }
.hero-text > p   { font-size: 18px; max-width: 490px; margin-bottom: 32px; color: #2d4a62; line-height: 1.8; }
.hero-btns       { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 44px; margin-top: 44px; align-items: flex-end;
  padding-top: 32px; border-top: 1px solid var(--gray2);
}
.stat { display: flex; flex-direction: column; }
.stat .num { font-size: 40px; font-weight: 800; color: var(--blue); letter-spacing: -1px; line-height: 1.1; display: flex; flex-direction: column; }
.stat .lbl { font-size: 18px; color: #4a6a82; margin-top: 5px; font-weight: 500; line-height: 1.4; }
/* Strike row — flex row inside .num, above the actual price */
.stat .num .stat-strike-row { display: flex; align-items: center; gap: 6px; margin-bottom: 2px; line-height: 1; }
.stat .num .stat-strike     { font-size: 17px; color: #b0b8c4; font-weight: 600;
  text-decoration: line-through; text-decoration-color: #e53e3e;
  text-decoration-thickness: 1.5px; letter-spacing: 0; }
.stat .num .stat-badge      { font-size: 13px; font-weight: 700;
  color: #cc4545; background: rgba(224,82,82,.1);
  padding: 2px 7px; border-radius: 50px; letter-spacing: 0; }
.stat .num .stat-price-val  { font-size: 40px; font-weight: 800; color: var(--blue);
  letter-spacing: -1px; line-height: 1; }

/* ── HERO VISUAL (right side) ── */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative; padding: 20px 0;
}

/* Built-in SVG illustration (default) */
.hero-illustration {
  width: 100%; max-width: 500px;
  filter: drop-shadow(0 20px 40px rgba(26,143,209,.18));
  animation: fadeUp .7s ease .2s both;
}
.hero-illustration svg { width: 100%; height: auto; }

/* Real photo frame (set heroImage in config.js to activate) */
.hero-photo-frame {
  width: 100%; max-width: 500px; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(26,143,209,.22);
  animation: fadeUp .7s ease .2s both;
  aspect-ratio: 4/3;
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── PHONE MOCKUP (kept for potential future use, hidden in hero) ── */
.phone-wrap {
  width: 280px; height: 560px; background: #0c1a28; border-radius: 40px;
  border: 6px solid #1b2f42; box-shadow: 0 40px 80px rgba(10,40,70,.4);
  overflow: hidden; position: relative;
}
.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 86px; height: 22px; background: #0c1a28;
  border-radius: 0 0 12px 12px; z-index: 5;
}
.phone-screen {
  background: #cce8d8; height: 100%; padding: 30px 7px 7px;
  display: flex; flex-direction: column; gap: 6px;
}
.tg-head {
  background: #fff; border-radius: 11px 11px 0 0; padding: 9px 11px;
  display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #eee;
}
.tg-av {
  width: 26px; height: 26px; border-radius: 50%; background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 8px; font-weight: 800; flex-shrink: 0;
}
.tg-nm { font-weight: 700; font-size: 11px; color: #1a2e3d; }
.tg-on { font-size: 9px; color: var(--green); font-weight: 600; }
.tg-card {
  background: #fff; border-radius: 9px; overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,.1); margin: 0 3px;
  animation: slideUp .5s ease both;
}
.tg-card:nth-child(3) { animation-delay: .2s; }
.tg-card:nth-child(4) { animation-delay: .4s; }
@keyframes slideUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.tg-img {
  height: 78px; position: relative; overflow: hidden;
  background: var(--gray2); display: flex; align-items: center; justify-content: center;
}
.tg-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.tg-img .img-ph { font-size: 10px; color: var(--gray3); font-weight: 500; z-index: 1; }
.tg-img-f1 { background: linear-gradient(135deg, #a8c8e0, #6a9ec0); }
.tg-img-f2 { background: linear-gradient(135deg, #a8c8b8, #6a9e88); }
.new-b {
  position: absolute; top: 6px; right: 6px;
  background: var(--green); color: #fff; font-size: 8px; font-weight: 800;
  padding: 2px 6px; border-radius: 20px; animation: badgePulse 2s infinite; z-index: 2;
}
@keyframes badgePulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.1)} }
.tg-body  { padding: 8px 10px 6px; }
.tg-ttl   { font-weight: 700; font-size: 10px; color: #0d2436; margin-bottom: 4px; }
.tg-meta  { display: flex; flex-wrap: wrap; gap: 3px; }
.tg-tag   { font-size: 8px; background: #f0f0f0; border-radius: 4px; padding: 2px 5px; color: #555; }
.tg-tag.b { background: rgba(26,143,209,.13); color: var(--blue); }
.tg-acts  { display: flex; gap: 4px; padding: 0 10px 8px; }
.tg-btn   { flex:1; background:#3390ec; color:#fff; border:none; border-radius:6px; padding:5px; font-size:8px; font-weight:600; cursor:pointer; }
.tg-btn.o { background:#f0f0f0; color:#333; }

/* ── FIX L4: CITY BANNER — darker blue, distinct from nav ── */
#city-banner {
  background: var(--blue-dkr);
  padding: 16px 5vw; text-align: center;
}
.cb-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 18px;
  max-width: 900px; margin: 0 auto;
}
.cb-label  { font-size: 15px; font-weight: 700; color: #fff; }
.cb-cities { font-size: 14px; color: rgba(255,255,255,.92); }
.cb-note   {
  background: rgba(255,255,255,.18); color: #fff;
  font-size: 13px; padding: 5px 14px; border-radius: 50px; font-weight: 600;
}

/* ── HOW IT WORKS ── */
#how-it-works { background: #f0f6fc; }
.wrap { max-width: 1100px; margin: 0 auto; }
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 50px;
}
.step-card {
  background: #fff;
  border-radius: var(--radius); padding: 28px 20px;
  border: 1px solid var(--gray2);
  position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 2px 12px rgba(26,143,209,.07);
}
.step-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background: linear-gradient(90deg, var(--blue), #2490d4); }
/* FIX L7: only apply hover lift on non-touch devices */
@media (hover: hover) {
  .step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
  .testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
  .feat-card:hover { background: rgba(255,255,255,.15); }
}
/* Step number badge */
.step-num-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: 15px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(26,143,209,.4);
}
/* SVG illustration in step card */
.step-svg-wrap { width:100%; border-radius:10px; overflow:hidden; margin-bottom:18px; line-height:0; }
.step-svg-wrap svg { width:100%; height:auto; display:block; }
/* Real photo in step card */
.step-img-wrap { width:100%; border-radius:10px; overflow:hidden; margin-bottom:18px; aspect-ratio:16/9; background:var(--gray2); }
.step-img-wrap img { width:100%; height:100%; object-fit:cover; display:block; }
.step-card h3 { font-size:17px; margin-bottom:10px; color: var(--text); font-weight: 700; }
.step-card p  { font-size:15px; color: var(--gray4); line-height: 1.8; }
/* Legacy */
.step-num  { width:40px; height:40px; border-radius:10px; background:var(--blue); color:#fff; font-size:17px; font-weight:900; display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.step-icon { font-size:24px; margin-bottom:12px; }

/* ── FEATURES ── */
#features { background: var(--blue); }
/* FIX M2: wrap content */
#features .feat-wrap { max-width: 1200px; margin: 0 auto; }
#features .tag-pill { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }
#features h2        { color: #fff; margin-bottom: 8px; }
#features .feat-intro { color: rgba(255,255,255,.95); font-size: 18px; max-width: 560px; line-height: 1.75; }
.feat-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; margin-top:48px; }
.feat-card { background:rgba(255,255,255,.08); padding:34px 26px; transition:background .2s; }
/* FIX C5: border-radius only on desktop 3-col */
.feat-grid .feat-card:nth-child(1) { border-radius: var(--radius) 0 0 0; }
.feat-grid .feat-card:nth-child(3) { border-radius: 0 var(--radius) 0 0; }
.feat-grid .feat-card:nth-child(4) { border-radius: 0 0 0 var(--radius); }
.feat-grid .feat-card:nth-child(6) { border-radius: 0 0 var(--radius) 0; }
.feat-icon { width:44px; height:44px; border-radius:10px; background:rgba(255,255,255,.14); display:flex; align-items:center; justify-content:center; font-size:19px; margin-bottom:16px; }
.feat-card h3 { font-size:17px; color:#fff; margin-bottom:12px; font-weight: 700; }
.feat-card p  { font-size:15px; color:rgba(255,255,255,.9); line-height: 1.8; }

/* ── PRICING ── */
#pricing { background: var(--gray1); }
#pricing .wrap { max-width: 860px; }
.price-card {
  background: #fff; border-radius: 20px; padding: 46px 42px; margin-top: 42px;
  box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  border: 1px solid var(--gray2);
}
.trial-pill { display:inline-block; background:rgba(34,197,94,.13); color:#15803d; font-size:13px; font-weight:700; padding:6px 14px; border-radius:50px; margin-bottom:18px; }
.price-big  { font-size:52px; font-weight:900; color:var(--text); line-height:1; margin:12px 0 4px; }
.price-big span { font-size:18px; font-weight:400; color: var(--gray3); }
.coffee-line { font-size:15px; color: var(--gray3); font-style:italic; margin-bottom:6px; }
.price-note  { font-size:13px; color: var(--gray3); margin-top:12px; }
.pf-list { list-style:none; display:flex; flex-direction:column; gap:12px; padding-top:4px; }
.pf-list li { display:flex; align-items:flex-start; gap:10px; font-size:15px; color: var(--gray4); line-height:1.6; }
.chk { width:19px; height:19px; border-radius:50%; background:var(--blue); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px; }
.chk svg { width:9px; height:9px; }

/* ── TESTIMONIALS ── */
#testimonials { background: #fff; }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:42px; }
.testi-card { background:var(--gray1); border-radius:var(--radius); padding:24px 20px; border:1px solid var(--gray2); transition:transform .2s, box-shadow .2s; }
.stars          { color:var(--blue); font-size:15px; margin-bottom:12px; letter-spacing:3px; }
.stars-empty    { color:#cbd5e1; }
/* FIX L3: Proper typographic quotes applied via JS */
.testi-card > p { font-size:15px; line-height:1.8; margin-bottom:16px; color: var(--gray4); }
.t-author       { display:flex; align-items:center; gap:10px; }
.av { width:38px; height:38px; border-radius:50%; background:var(--blue); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:11px; flex-shrink:0; }
.av-0{background:#1a8fd1}.av-1{background:#1565c0}.av-2{background:#0277bd}
.av-3{background:#0288d1}.av-4{background:#01579b}.av-5{background:#039be5}
.a-name { font-weight:700; font-size:14px; color:var(--text); }
.a-city { font-size:13px; color: var(--gray3); }

/* ── FAQ ── */
#faq       { background: var(--blue-lt); border-top: none; }
#faq .wrap { max-width: 720px; }
.faq-list  { margin-top:42px; display:flex; flex-direction:column; gap:9px; }
.faq-item  { background:#fff; border-radius:10px; border:1px solid var(--gray2); overflow:hidden; box-shadow: 0 1px 4px rgba(26,143,209,.06); }
.faq-q {
  width:100%; text-align:left; background:none; border:none;
  padding:19px 21px; font-size:16px; font-weight:600; color:var(--text);
  cursor:pointer; display:flex; justify-content:space-between; align-items:center;
  font-family:inherit; transition:background .15s; gap:12px;
}
.faq-q:hover { background:var(--gray1); }
.faq-q-text { flex: 1; text-align: left; }
.chev {
  width:22px; height:22px; border-radius:50%;
  background:var(--blue-lt); color:var(--blue);
  display:flex; align-items:center; justify-content:center;
  font-size:13px; flex-shrink:0;
  transition:transform .3s, background .2s;
}
.faq-item.open .chev { transform:rotate(180deg); background:var(--blue); color:#fff; }
.faq-a { max-height:0; overflow:hidden; transition:max-height .4s ease; }
.faq-item.open .faq-a { max-height:500px; }
.faq-a p { padding:0 21px 22px; font-size:15.5px; line-height:1.85; color: var(--gray4); }

/* ── CTA BAND ── */
.cta-band { background:var(--blue); padding:80px 5vw; text-align:center; }
.cta-band h2 { color:#fff; margin-bottom:12px; }
.cta-band p  { color:#ffffff; font-size:18px; max-width:520px; margin:0 auto 34px; line-height:1.75; }

/* ── FOOTER ── */
footer { background:var(--navy); color:#fff; padding:58px 5vw 32px; }
.ft-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:44px; margin-bottom:44px; }
.ft-logo    { font-size:20px; font-weight:900; margin-bottom:12px; letter-spacing:-.5px; }
.ft-logo em { font-style:normal; font-weight:300; opacity:.6; }
.ft-brand p { color:#cbd5e1; font-size:15px; line-height:1.75; max-width:260px; }
.ft-col h4  { font-size:12px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:#e2e8f0; margin-bottom:16px; }
.ft-col ul  { list-style:none; display:flex; flex-direction:column; gap:9px; }
/* FIX H5: footer links have both href and onclick */
.ft-col ul li a { font-size:14px; color:#cbd5e1; transition:color .2s; cursor:pointer; }
.ft-col ul li a:hover { color:#ffffff; text-decoration: underline; }
.ft-tg-link {
  background:var(--blue); color:#fff; border-radius:50px;
  padding:11px 20px; font-size:13px; font-weight:700;
  display:inline-flex; align-items:center; gap:7px;
  transition:background .2s; margin-top:12px; text-decoration:none;
}
.ft-tg-link:hover { background:var(--blue-dk); }
.ft-alert-p { font-size:14px; color:#cbd5e1; line-height:1.7; }
.ft-bot {
  border-top:1px solid #1e293b; padding-top:24px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px;
}
.ft-bot p { font-size:14px; color:#94a3b8; letter-spacing: 0.01em; }

/* Cities — all styles in sections.css */

/* ── RESPONSIVE: TABLET (≤960px) ── */
@media (max-width: 960px) {
  /* Hero */
  #hero {
    grid-template-columns: 1fr; text-align: center;
    padding-bottom: 60px; min-height: auto; padding-top: calc(var(--nav-h) + 48px);
  }
  .hero-btns  { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  /* Nav */
  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  /* Grids */
  .steps-grid { grid-template-columns: repeat(2, 1fr); }

  /* FIX C5: reset ALL feat-card radii for 2-col, reapply correct ones */
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid .feat-card { border-radius: 0 !important; }
  .feat-grid .feat-card:nth-child(1) { border-radius: var(--radius) 0 0 0 !important; }
  .feat-grid .feat-card:nth-child(2) { border-radius: 0 var(--radius) 0 0 !important; }
  .feat-grid .feat-card:nth-child(5) { border-radius: 0 0 0 var(--radius) !important; }
  .feat-grid .feat-card:nth-child(6) { border-radius: 0 0 var(--radius) 0 !important; }

  /* FIX H9: testimonials 1-col earlier */
  .testi-grid { grid-template-columns: repeat(2, 1fr); }

  /* Pricing */
  .price-card { grid-template-columns: 1fr; }

  /* Footer */
  .ft-top { grid-template-columns: 1fr 1fr; }


}

/* ── RESPONSIVE: MOBILE (≤640px) ── */
@media (max-width: 640px) {
  section { padding: 64px 4vw; }

  /* FIX C3: Hero mobile */
  #hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 32px);
    padding-bottom: 48px;
  }
  .hero-text > p { font-size: 17px; line-height: 1.75; }

  /* FIX H2: Hero stat font size */
  .stat .num { font-size: 34px; }
  .stat .num .stat-price-val { font-size: 34px; }
  .stat .lbl { font-size: 18px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }

  /* FIX H1: Nav CTA on mobile — icon only, hide text */
  .nav-cta-link .nav-cta-text { display: none; }
  .nav-cta-link { padding: 9px 12px; }
  .lang-btn .lang-text { display: none; }
  .lang-btn { padding: 7px 9px; }

  /* FIX H4: City banner mobile */
  .cb-inner { flex-direction: column; gap: 6px; }
  .cb-cities { text-align: center; }

  /* Steps single col */
  .steps-grid { grid-template-columns: 1fr; }

  /* FIX M6: Step cards mobile left border accent */
  .step-card { border-left: 4px solid var(--blue); border-radius: 0 var(--radius) var(--radius) 0; }
  .step-card::before { display: none; }

  /* Features single col */
  .feat-grid { grid-template-columns: 1fr; }
  .feat-grid .feat-card { border-radius: 0 !important; }
  .feat-grid .feat-card:first-child { border-radius: var(--radius) var(--radius) 0 0 !important; }
  .feat-grid .feat-card:last-child  { border-radius: 0 0 var(--radius) var(--radius) !important; }

  /* FIX H6: Pricing card mobile padding */
  .price-card { padding: 28px 20px; gap: 32px; }
  .price-big  { font-size: 40px; }

  /* FIX H9: Testimonials single col on mobile */
  .testi-grid { grid-template-columns: 1fr; }

  /* Footer */
  .ft-top { grid-template-columns: 1fr; gap: 32px; }
  .ft-bot { flex-direction: column; text-align: center; gap: 6px; }


}



/* ── FIX L2: PRINT STYLES ── */
@media print {
  nav, .mobile-menu, .menu-overlay, .hero-visual, #city-banner, #cities,
  .cta-band, .hero-btns, .float-b { display: none !important; }
  body  { font-size: 12pt; color: #000; }
  #hero { min-height: auto; padding-top: 20px; grid-template-columns: 1fr; }
  section { padding: 24px 0; break-inside: avoid; }
  h1, h2  { color: #000; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 10pt; color: #666; }
  footer  { background: #fff; color: #000; }
}
