/* ============================================================
   HITECH COMPUTER & IT SOLUTIONS — Stylesheet
   Brand: bold blue (#1E5BD8) / navy (#0A2A5E) / red (#E63946) / gold (#FFC93C)
   ============================================================ */

:root {
  --blue: #1e5bd8;
  --blue-bright: #2f78ff;
  --blue-light: #e8f0ff;
  --blue-50: #f4f8ff;
  --navy: #0a2a5e;
  --navy-deep: #061a3d;
  --red: #e63946;
  --red-dark: #c2293a;
  --gold: #ffc93c;
  --green: #25d366;
  --ink: #0c1933;
  --ink-2: #364463;
  --ink-3: #6b7896;
  --line: #dfe6f5;
  --line-2: #eef2fb;
  --bg: #ffffff;
  --bg-soft: #f4f8ff;
  --shadow-sm: 0 2px 6px rgba(10, 42, 94, 0.06);
  --shadow-md: 0 12px 30px -8px rgba(10, 42, 94, 0.18);
  --shadow-lg: 0 24px 60px -12px rgba(10, 42, 94, 0.28);
  --radius: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

img, svg { display: block; max-width: 100%; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--lg { padding: 16px 28px; font-size: 16px; }

.btn--primary {
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  color: #fff;
  box-shadow: 0 8px 22px -6px rgba(30, 91, 216, 0.55);
}
.btn--primary:hover { box-shadow: 0 14px 30px -6px rgba(30, 91, 216, 0.6); }

.btn--ghost {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }

.btn--white {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-md);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); }

/* ============ TOPBAR ============ */
.topbar {
  background: var(--navy-deep);
  color: #cdd9f0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-top: env(safe-area-inset-top, 0);
}
.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; }
.topbar__sep { opacity: 0.4; }
.topbar__right { display: flex; gap: 8px; }
.topbar__chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}
.topbar__chip--green { background: var(--green); color: #fff; }
.topbar__chip--red { background: var(--red); color: #fff; }
.topbar__chip:hover { transform: translateY(-1px); }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-2);
}
.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}
.nav__logo { display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.nav__logo-img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 220px;
}
.nav__logo--footer {
  display: inline-block;
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
}
.nav__logo-img--footer {
  height: 48px;
}
.nav__logo-mark {
  font-family: "Archivo Black", sans-serif;
  font-size: 30px;
  letter-spacing: -0.02em;
  position: relative;
}
.nav__logo-hi { color: var(--blue); }
.nav__logo-tech { color: var(--navy); }
.nav__logo-tech--light { color: #fff; }
.nav__logo-tm {
  position: absolute;
  font-size: 9px;
  top: 0;
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  color: var(--blue);
  margin-left: 2px;
}
.nav__logo-sub {
  font-size: 9px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.18em;
  margin-top: 2px;
}
.nav__logo-sub--light { color: #cdd9f0; }
.nav__menu { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav__menu a {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
  transition: color .15s ease;
  position: relative;
  padding: 6px 0;
}
.nav__menu a:hover { color: var(--blue); }
.nav__menu a:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.nav__cta { display: inline-flex; }
.nav__burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  width: 24px; height: 2px; background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
  border-radius: 2px;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--line-2);
  background: #fff;
}
.nav__mobile a {
  padding: 12px 4px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line-2);
}
.nav__mobile a.btn { border-bottom: none; margin-top: 12px; }
.nav__mobile.is-open { display: flex; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 60px 0 90px;
  background:
    radial-gradient(1100px 600px at 80% 0%, #d6e6ff 0%, transparent 60%),
    linear-gradient(180deg, #f5f9ff 0%, #ffffff 80%);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__circuit {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(transparent 95%, rgba(30,91,216,0.06) 95%),
    linear-gradient(90deg, transparent 95%, rgba(30,91,216,0.06) 95%);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 30% 30%, #000, transparent 70%);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero__glow--1 { width: 500px; height: 500px; background: #b6cfff; top: -100px; right: -100px; }
.hero__glow--2 { width: 400px; height: 400px; background: #ffd6da; bottom: -150px; left: -100px; opacity: 0.4; }

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.hero__pill-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
}

.hero__title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 22px 0 24px;
}
.hero__title-red {
  display: inline-block;
  color: var(--navy);
  font-size: 1.25em;
  background: linear-gradient(180deg, #2f78ff 0%, #1e5bd8 50%, #0a2a5e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 0 rgba(10,42,94,0.08);
  letter-spacing: -0.04em;
}
.hero__title-script {
  display: inline-block;
  font-family: "Caveat Brush", cursive;
  font-size: 0.55em;
  color: #fff;
  background: var(--red);
  padding: 0 18px 4px;
  margin-left: 8px;
  transform: rotate(-3deg) translateY(-10px);
  letter-spacing: 0.02em;
  border-radius: 4px;
  box-shadow: 0 8px 20px -6px rgba(230, 57, 70, 0.4);
  position: relative;
}
.hero__title-script::before, .hero__title-script::after {
  content: "";
  position: absolute;
  width: 16px; height: 16px;
  background: var(--red-dark);
  bottom: -8px;
}
.hero__title-script::before { left: -8px; clip-path: polygon(100% 0, 100% 100%, 50% 50%); }
.hero__title-script::after { right: -8px; clip-path: polygon(0 0, 0 100%, 50% 50%); }

.hero__lead {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 540px;
  margin-bottom: 28px;
}

.hero__perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
  max-width: 540px;
}
.perk {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.perk__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.perk__icon svg { width: 20px; height: 20px; }
.perk__text strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}
.perk__text span {
  font-size: 12px;
  color: var(--ink-3);
}

.hero__cta {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero__google {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 14px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.hero__google-g {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
}
.hero__google-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.hero__google-text { font-size: 13px; color: var(--ink-2); }
.hero__google-text strong { color: var(--navy); }

/* hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 560px;
  width: 100%;
  justify-self: end;
}
.hero__photo {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #e8f0ff;
}
.hero__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__badge {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 3;
  width: 120px;
  height: 140px;
  background: linear-gradient(180deg, var(--navy), var(--navy-deep));
  color: #fff;
  text-align: center;
  padding: 16px 8px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 88%, 0 100%);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold);
}
.hero__badge-num {
  font-family: "Archivo Black", sans-serif;
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.04em;
}
.hero__badge-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.hero__badge-stars {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 1px;
  margin-top: 6px;
}
.hero__floater {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  z-index: 4;
  border: 1.5px solid var(--line);
}
.hero__floater--customers {
  bottom: 28px; left: -20px;
}
.hero__floater--branches {
  top: 40%;
  right: -24px;
}
.hero__floater-num {
  font-family: "Archivo Black", sans-serif;
  font-size: 28px;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero__floater-num span { color: var(--red); }
.hero__floater-label {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 600;
  margin-top: 2px;
}

/* ============ TRUST STRIP ============ */
.trust {
  background: var(--navy);
  color: #fff;
  padding: 22px 0;
}
.trust__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: #cdd9f0;
}
.trust__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--gold);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.trust__icon svg { width: 20px; height: 20px; }
.trust__item strong {
  display: block;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
}

/* ============ SECTION HEADERS ============ */
.sec-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.sec-head__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--blue);
  padding: 6px 14px;
  background: var(--blue-light);
  border-radius: 999px;
  margin-bottom: 18px;
}
.sec-head__eyebrow--light {
  background: rgba(255,255,255,0.12);
  color: var(--gold);
}
.sec-head__title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.025em;
}
.sec-head__lead {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-2);
}

/* ============ SERVICES ============ */
.services {
  padding: 90px 0;
  background: var(--bg);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  padding: 28px;
  background: #fff;
  border: 1.5px solid var(--line-2);
  border-radius: var(--radius-lg);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, var(--blue-light), transparent 70%);
  opacity: 0;
  transition: opacity .2s;
}
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--blue-light), #fff);
  color: var(--blue);
  display: grid; place-items: center;
  margin-bottom: 18px;
  border: 1.5px solid var(--line);
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 16px;
}
.service-card__meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--blue);
  font-weight: 700;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
}
.service-card__meta span:nth-child(2) { color: var(--line); }
.service-card__meta a { color: var(--red); font-weight: 800; }

.service-card--accent {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff;
  border-color: transparent;
}
.service-card--accent::before { display: none; }
.service-card--accent h3, .service-card--accent p { color: #fff; }
.service-card--accent p { color: rgba(255,255,255,0.85); }
.service-card--accent .service-card__meta { color: var(--gold); border-top-color: rgba(255,255,255,0.15); }
.service-card--accent .service-card__meta a { color: var(--gold); }
.service-card__icon--white {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}

/* ============ WHY US ============ */
.why {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,91,216,0.4), transparent 60%);
}
.why::after {
  content: "";
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,0.18), transparent 60%);
}
.why__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why__title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 18px 0 24px;
}
.why__title-accent { color: var(--gold); }
.why__lead {
  font-size: 17px;
  color: #cdd9f0;
  max-width: 480px;
  margin-bottom: 36px;
}
.why__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 460px;
}
.stat {
  padding: 16px 0;
  border-top: 2px solid rgba(255,255,255,0.15);
}
.stat__num {
  font-family: "Archivo Black", sans-serif;
  font-size: 48px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.04em;
}
.stat__num span { color: var(--gold); }
.stat__label {
  font-size: 13px;
  color: #cdd9f0;
  margin-top: 4px;
  font-weight: 600;
}
.why__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  transition: transform .2s ease, background .2s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.08);
}
.why-card__num {
  font-family: "Archivo Black", sans-serif;
  font-size: 28px;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.why-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.why-card p {
  font-size: 14px;
  color: #cdd9f0;
  line-height: 1.5;
}

/* ============ BRANDS ============ */
.brands {
  padding: 80px 0;
  background: var(--bg-soft);
}
.brands__head { text-align: center; margin-bottom: 40px; }
.brands__title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--navy);
  margin-top: 12px;
  letter-spacing: -0.02em;
}
.brands__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, border-color .15s ease;
}
.brand-pill:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
}
.brand-pill svg { width: 22px; height: 22px; }

/* ============ BOOK ============ */
.book {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--blue) 0%, var(--navy) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.book::before {
  content: "";
  position: absolute;
  top: 50%; left: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 60%);
}
.book__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.book__title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 18px 0 22px;
}
.book__lead {
  font-size: 17px;
  color: #cdd9f0;
  margin-bottom: 32px;
}
.book__contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.book__contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  transition: background .15s ease, transform .15s ease;
}
.book__contact:hover { background: rgba(255,255,255,0.12); transform: translateX(4px); }
.book__contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.book__contact-icon svg { width: 20px; height: 20px; }
.book__contact-icon--red { background: var(--red); color: #fff; }
.book__contact-icon--green { background: var(--green); color: #fff; }
.book__contact-icon--blue { background: var(--blue-bright); color: #fff; }
.book__contact-label { font-size: 12px; color: #9eb3d9; font-weight: 600; }
.book__contact-value { font-size: 17px; font-weight: 800; color: #fff; }

.book__form {
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.book__form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.book__form h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: 26px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.book__form-badge {
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
}
.book__note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fff8e1;
  border: 1px solid #fde68a;
  color: #78350f;
  font-size: 13px;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: 12px;
  margin-top: 16px;
}
.book__note svg {
  color: #d97706;
  flex-shrink: 0;
  margin-top: 1px;
}
.book__note strong { color: #92400e; font-weight: 800; }
.book__steps {
  display: flex;
  gap: 4px;
  margin-bottom: 22px;
  padding: 4px;
  background: var(--bg-soft);
  border-radius: 12px;
}
.book__step {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-3);
  border-radius: 8px;
  transition: all .2s ease;
}
.book__step span {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--line);
  color: var(--ink-3);
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 800;
}
.book__step.is-active {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.book__step.is-active span {
  background: var(--blue);
  color: #fff;
}
.book__step.is-done span {
  background: var(--green);
  color: #fff;
}

.book__panel { display: none; }
.book__panel.is-active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.book__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin: 16px 0 8px;
}
.book__label:first-child { margin-top: 0; }
.book__input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.book__input:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}
.book__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip { cursor: pointer; }
.chip input { display: none; }
.chip span {
  display: inline-block;
  padding: 9px 14px;
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  transition: all .15s ease;
}
.chip:hover span { border-color: var(--blue); color: var(--blue); }
.chip input:checked + span {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.book__row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.book__next { margin-top: 20px; width: 100%; }
.book__fineprint { font-size: 12px; color: var(--ink-3); margin-top: 12px; }

.book__success { text-align: center; padding: 20px 0; }
.book__success-icon {
  width: 64px; height: 64px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 18px;
}
.book__success-icon svg { width: 36px; height: 36px; }
.book__success h3 { margin-bottom: 8px; }
.book__success p {
  color: var(--ink-2);
  margin-bottom: 20px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ REVIEWS ============ */
.reviews { padding: 100px 0; background: var(--bg); }
.reviews__rating {
  display: inline-block;
  color: var(--gold);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
  margin-right: 8px;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  background: var(--bg-soft);
  border: 1.5px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.review__stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review p {
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 18px;
  text-wrap: pretty;
}
.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.review__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.review__author strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}
.review__author span {
  display: block;
  font-size: 12px;
  color: var(--ink-3);
}
.review--cta {
  background: linear-gradient(180deg, var(--navy), var(--navy-deep));
  color: #fff;
  border-color: transparent;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.review--cta p { color: #cdd9f0; margin-bottom: 14px; }
.review--cta p strong { color: #fff; }
.review--cta .review__stars { letter-spacing: 3px; font-size: 18px; }
.review__g { margin: 8px 0 4px; }
.review__cta-num {
  font-family: "Archivo Black", sans-serif;
  font-size: 56px;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}

/* ============ LOCATION ============ */
.location { padding: 100px 0; background: var(--bg-soft); }
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.location__title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
  margin: 14px 0 24px;
  letter-spacing: -0.025em;
  line-height: 1;
}
.location__address {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: #fff;
  border-radius: 20px;
  padding: 20px 24px;
  margin-bottom: 16px;
}
.location__pin {
  width: 52px; height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(230,57,70,0.4);
}
.location__pin svg { width: 24px; height: 24px; }
.location__new {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.location__addr1 {
  font-family: "Archivo Black", sans-serif;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-top: 2px;
}
.location__addr1::first-letter, .location__addr1 {
  /* keep simple */
}
.location__addr2 {
  font-size: 15px;
  color: #cdd9f0;
  font-weight: 600;
}
.location__hint {
  font-size: 13px;
  color: #9eb3d9;
  margin-top: 8px;
}
.location__detail {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 10px;
}
.location__detail-icon {
  width: 40px; height: 40px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 12px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.location__detail-icon svg { width: 20px; height: 20px; }
.location__detail strong {
  display: block;
  font-size: 13px;
  color: var(--navy);
  font-weight: 800;
}
.location__detail div div {
  font-size: 15px;
  color: var(--ink-2);
  margin-top: 1px;
}
.location__detail a { color: var(--blue); font-weight: 700; }
.location__cta {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* === BRANCHES === */
.branches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.branch {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.branch::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #25d366, #1baf52);
}
.branch:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.branch__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.branch__name {
  font-family: "Archivo Black", sans-serif;
  font-size: 28px;
  color: #1baf52;
  letter-spacing: -0.02em;
  line-height: 1;
}
.branch__badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  background: var(--blue);
  padding: 5px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.branch__badge--late { background: var(--red); }
.branch__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.45;
}
.branch__row svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.branch__row--phone {
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--navy);
  text-decoration: none;
}
.branch__row--phone svg { color: var(--red); }
.branch__row--phone:hover { color: var(--blue); }
.branch__row--mail {
  color: var(--ink-2);
  word-break: break-word;
  text-decoration: none;
}
.branch__row--mail:hover { color: var(--blue); }
.branch__row--hours strong {
  color: var(--navy);
  font-weight: 800;
}
.branch__map {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 12px 16px;
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.branch__map svg:last-child { margin-left: auto; }
.branch__map:hover {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .branches { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .branch { padding: 22px 20px; }
  .branch__name { font-size: 24px; }
}

/* === BRANCH MAPS GRID === */
.branchmaps__heading {
  text-align: center;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-top: 48px;
  margin-bottom: 6px;
}
.branchmaps__heading::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
  margin: 14px auto 0;
}
.branchmaps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.branchmap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.branchmap__frame {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--navy);
  box-shadow: var(--shadow-md);
}
.branchmap__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.branchmap__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy);
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 7px 12px;
  border-radius: 8px;
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.branchmap__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 16px -6px rgba(30,91,216,0.55);
  transition: transform .15s ease, box-shadow .15s ease;
}
.branchmap__btn svg:first-child { color: #fff; }
.branchmap__btn:hover { transform: translateY(-2px); box-shadow: 0 12px 22px -6px rgba(30,91,216,0.6); }

@media (max-width: 1024px) {
  .branchmaps { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .branchmap__frame { aspect-ratio: 16/10; }
}
.location__map {
  position: relative;
  aspect-ratio: 1.05/1;
  background: #e8f0ff;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid var(--navy);
  box-shadow: var(--shadow-lg);
}
.location__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.map__open {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(10,42,94,0.18);
  z-index: 4;
  transition: transform .15s ease, background .15s ease;
}
.map__open:hover { transform: translateY(-2px); background: var(--blue); color: #fff; }
.map {
  position: relative;
  width: 100%; height: 100%;
  font-family: "Plus Jakarta Sans";
}
.map::before {
  /* light grid */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map__compass {
  position: absolute;
  top: 12px; right: 12px;
  width: 30px; height: 30px;
  background: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: "Archivo Black";
  color: var(--red);
  font-size: 14px;
  border: 2px solid var(--navy);
  z-index: 4;
}
.map__here {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--navy);
  color: var(--gold);
  font-family: "Archivo Black";
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 10px;
  letter-spacing: 0.05em;
  z-index: 4;
}
.map__road {
  position: absolute;
  background: #fff;
  border-top: 2px dashed rgba(0,0,0,0.15);
  border-bottom: 2px dashed rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Archivo Black";
  color: var(--navy);
  font-size: 11px;
  letter-spacing: 0.2em;
}
.map__road--main {
  top: 56%;
  left: 0;
  width: 100%;
  height: 36px;
}
.map__road--main::before, .map__road--main::after {
  content: "»»»";
  position: absolute;
  color: var(--blue);
  font-size: 14px;
  letter-spacing: 4px;
}
.map__road--main::before { left: 8px; }
.map__road--main::after { right: 8px; }
.map__poi {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.map__poi-icon {
  font-size: 28px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}
.map__poi-icon--mrt {
  background: var(--green);
  color: #fff;
  font-family: "Archivo Black";
  font-size: 12px;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  letter-spacing: 0.05em;
}
.map__poi-label {
  font-family: "Archivo Black";
  font-size: 10px;
  text-align: center;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.9);
  padding: 2px 6px;
  border-radius: 4px;
}
.map__poi--park { top: 18%; left: 12%; }
.map__poi--mosque { top: 22%; left: 42%; }
.map__poi--hotel { top: 18%; right: 18%; }
.map__poi--mrt { bottom: 12%; left: 12%; }
.map__walk {
  position: absolute;
  bottom: 24%;
  left: 36%;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--navy);
  font-weight: 600;
  background: rgba(255,255,255,0.9);
  padding: 6px 10px;
  border-radius: 8px;
}
.map__walk span:first-child { font-size: 18px; }
.map__us {
  position: absolute;
  top: 38%;
  right: 6%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 3;
}
.map__us-pin {
  width: 44px; height: 44px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(230,57,70,0.45);
  border: 3px solid #fff;
  animation: bounce 2s infinite;
}
.map__us-pin svg { width: 22px; height: 22px; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.map__us-label {
  background: var(--red);
  color: #fff;
  font-family: "Archivo Black";
  font-size: 10px;
  text-align: center;
  padding: 6px 10px;
  border-radius: 6px;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.map__us-label strong { font-size: 12px; }

/* ============ FAQ ============ */
.faq { padding: 100px 0; background: var(--bg); }
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__item {
  background: var(--bg-soft);
  border: 1.5px solid var(--line-2);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .15s ease;
}
.faq__item[open] {
  background: #fff;
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}
.faq__item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: "Archivo Black";
  font-size: 22px;
  color: var(--blue);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq__item[open] summary::after { content: "−"; }
.faq__body {
  padding: 0 22px 18px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ============ CTA BAND ============ */
.cta-band {
  background:
    linear-gradient(135deg, var(--red) 0%, #b22a36 100%);
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 80% -20%, rgba(255,255,255,0.15), transparent),
    radial-gradient(400px 200px at 20% 120%, rgba(255,255,255,0.1), transparent);
}
.cta-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}
.cta-band__eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}
.cta-band__title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.cta-band__lead {
  margin-top: 12px;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
}
.cta-band__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-deep);
  color: #cdd9f0;
  padding: 70px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer__brand p {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.65;
  max-width: 320px;
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: #fff;
  transition: background .15s ease, transform .15s ease;
}
.footer__social a svg { width: 18px; height: 18px; }
.footer__social a:hover { background: var(--blue); transform: translateY(-2px); }
.footer__col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__col a {
  font-size: 14px;
  color: #9eb3d9;
  transition: color .15s ease;
}
.footer__col a:hover { color: #fff; }
.footer__col--contact p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer__col--contact a { color: #cdd9f0; }
.footer__col--contact a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  font-size: 13px;
  color: #6b7896;
}
.footer__bottom-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom a:hover { color: #fff; }

/* ============ FLOATING WHATSAPP ============ */
.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px; height: 60px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(37,211,102,0.5);
  z-index: 100;
  transition: transform .2s ease;
}
.fab:hover { transform: scale(1.05); }
.fab svg { width: 28px; height: 28px; }
.fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
  z-index: -1;
  animation: fabpulse 2s infinite;
}
@keyframes fabpulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 520px; margin: 0 auto; justify-self: center; }
  .why__grid { grid-template-columns: 1fr; gap: 48px; }
  .book__inner { grid-template-columns: 1fr; gap: 48px; }
  .location__grid { grid-template-columns: 1fr; gap: 40px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__row { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cta-band__inner { grid-template-columns: 1fr; text-align: center; }
  .cta-band__actions { justify-content: center; }
}

@media (max-width: 768px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .topbar { padding-top: max(env(safe-area-inset-top, 0px), 8px); }
  .topbar__row { font-size: 12px; min-height: 38px; flex-wrap: nowrap; gap: 8px; }
  .topbar__left { flex: 1; min-width: 0; }
  .topbar__left .topbar__sep, .topbar__left .topbar__item:nth-child(3) { display: none; }
  .topbar__chip--green { display: none; }
  .topbar__chip { padding: 4px 10px; font-size: 12px; }
  .hero { padding: 40px 0 60px; }
  .hero__perks { grid-template-columns: 1fr; }
  .services, .why, .reviews, .location, .faq, .book { padding: 64px 0; }
  .services__grid, .reviews__grid, .why__right { grid-template-columns: 1fr; }
  .trust__row { grid-template-columns: 1fr; gap: 12px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .why__stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .book__form { padding: 24px 20px; }
  .book__steps { font-size: 11px; }
  .book__step span { width: 18px; height: 18px; font-size: 10px; }
  .book__step { font-size: 11px; padding: 8px 6px; }
  .location__map { aspect-ratio: 1/1; }
  .map__poi-icon { font-size: 22px; }
  .map__poi-label { font-size: 9px; }
  .map__here { font-size: 11px; padding: 6px 10px; }
  .map__us-label strong { font-size: 11px; }
  .map__us-label { font-size: 9px; padding: 4px 8px; }
  .map__walk { font-size: 9px; bottom: 22%; left: 32%; }
  .cta-band__inner { gap: 20px; }
  .footer__bottom-row { justify-content: flex-start; flex-direction: column; gap: 6px; }
  .fab { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}
