/* =================================================================
   ApexPro Appliance Repair — Premium Conversion Landing Page
   Color System: Turquoise (sea-wave) · Deep Black · Pure White
   Author: ApexPro · 2026
   ================================================================= */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px; line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-width: 320px;
}
body.no-scroll { overflow: hidden; }
img, svg { max-width: 100%; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font: inherit; outline: none; }

/* ===== TOKENS ===== */
:root {
  /* Brand */
  --teal-50:   #ECFEFF;
  --teal-100:  #CFFAFE;
  --teal-200:  #A5F3FC;
  --teal-300:  #67E8F9;
  --teal-400:  #22D3EE;
  --teal-500:  #06B6D4;   /* primary */
  --teal-600:  #0891B2;
  --teal-700:  #0E7490;
  --teal-800:  #155E75;
  --teal-900:  #164E63;

  --aqua:      #14B8B8;   /* sea wave accent */
  --aqua-deep: #0EA5A4;
  --aqua-glow: #5EEAD4;

  /* Neutrals */
  --black:     #06080F;
  --ink:       #0F1521;
  --ink-2:     #161D2C;
  --slate:     #475569;
  --gray:      #6B7280;
  --gray-2:    #9CA3AF;
  --line:      #E5E7EB;
  --soft:      #F1F5F9;
  --soft-2:    #F8FAFC;
  --white:     #FFFFFF;

  /* Semantics */
  --bg:        #FAFCFE;
  --text:      #0F1521;
  --muted:     #5A6675;

  /* Effects */
  --grad-primary: linear-gradient(135deg, var(--teal-500) 0%, var(--aqua) 50%, var(--aqua-deep) 100%);
  --grad-dark:    linear-gradient(135deg, #0A1220 0%, #0F1A2E 50%, #061A22 100%);
  --grad-glow:    linear-gradient(135deg, var(--aqua-glow) 0%, var(--teal-400) 100%);
  --shadow-sm:    0 2px 8px rgba(6, 8, 15, 0.06);
  --shadow-md:    0 8px 24px rgba(6, 8, 15, 0.08);
  --shadow-lg:    0 16px 48px rgba(6, 8, 15, 0.12);
  --shadow-xl:    0 24px 64px rgba(6, 8, 15, 0.18);
  --shadow-teal:  0 12px 32px rgba(20, 184, 184, 0.32);
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    20px;
  --radius-xl:    28px;
}

/* ===== HELPERS ===== */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.text-accent { color: var(--aqua); }
.text-glow {
  background: var(--grad-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.link { color: var(--aqua-deep); font-weight: 600; }
.link:hover { color: var(--teal-700); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  font-weight: 700; font-size: 15px; letter-spacing: .01em;
  border-radius: 999px;
  cursor: pointer;
  transition: all .3s cubic-bezier(.2,.7,.3,1);
  white-space: nowrap;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn--lg { padding: 18px 34px; font-size: 16px; }
.btn--block { width: 100%; }
.btn i { font-size: 1em; }

.btn--primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn--primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--aqua-deep) 0%, var(--teal-700) 100%);
  opacity: 0; transition: opacity .3s ease;
}
.btn--primary span, .btn--primary i { position: relative; z-index: 1; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(14, 165, 164, 0.45); }
.btn--primary:hover::before { opacity: 1; }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line);
}
.btn--ghost:hover {
  border-color: var(--aqua);
  color: var(--aqua-deep);
  background: var(--teal-50);
}

.btn--white {
  background: var(--white);
  color: var(--ink);
}
.btn--white:hover { background: var(--soft); transform: translateY(-2px); }

/* =================================================================
   TOP BAR
   ================================================================= */
.topbar {
  background: var(--ink);
  color: var(--white);
  font-size: 13.5px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar__inner {
  display: flex; justify-content: space-between; align-items: center;
  height: 44px;
  gap: 16px;
}
.topbar__promo {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.92);
}
.topbar__promo i {
  color: var(--aqua-glow);
  animation: bolt 2s infinite;
}
.topbar__promo strong { color: var(--aqua-glow); font-weight: 800; }

@keyframes bolt {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: .8; }
}

.topbar__contact { display: flex; align-items: center; gap: 18px; }
.topbar__phone, .topbar__book {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700;
  transition: color .25s ease;
}
.topbar__phone:hover, .topbar__book:hover { color: var(--aqua-glow); }
.topbar__phone i, .topbar__book i { color: var(--aqua); }

/* =================================================================
   HEADER
   ================================================================= */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(15,21,33,0.06);
  transition: background .25s ease, box-shadow .25s ease;
}
.header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 20px rgba(6, 8, 15, 0.06);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 92px; gap: 14px;
  flex-wrap: nowrap;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 72px; width: auto; }

.nav {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: center;
  min-width: 0;
}
.nav a {
  padding: 9px 12px;
  font-size: 14px; font-weight: 600;
  color: var(--ink-2);
  border-radius: 999px;
  transition: all .25s ease;
  position: relative;
  white-space: nowrap;
}
.nav a:hover { color: var(--aqua-deep); background: var(--teal-50); }
.nav a.active { color: var(--aqua-deep); background: var(--teal-50); }

.header__right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header__phone {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 4px 10px;
  border-radius: var(--radius);
  transition: background .25s ease;
}
.header__phone:hover { background: var(--teal-50); }
.header__phone i {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--grad-primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 13px;
  box-shadow: var(--shadow-teal);
}
.header__phone span { display: flex; flex-direction: column; line-height: 1.1; }
.header__phone small { font-size: 10.5px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.header__phone strong { font-size: 15.5px; color: var(--ink); font-weight: 800; white-space: nowrap; }
.header__cta { padding: 11px 18px; font-size: 14px; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  border-radius: 10px;
  transition: background .25s ease;
}
.burger:hover { background: var(--teal-50); }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s ease; }
.header.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header.menu-open .burger span:nth-child(2) { opacity: 0; }
.header.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  background: var(--grad-dark);
  color: var(--white);
  overflow: hidden;
  padding: 80px 0 0;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(20, 184, 184, 0.28), transparent 70%),
    radial-gradient(ellipse 60% 60% at 85% 20%, rgba(94, 234, 212, 0.18), transparent 70%),
    radial-gradient(ellipse 70% 60% at 60% 90%, rgba(8, 145, 178, 0.25), transparent 70%);
  pointer-events: none;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><path d='M0 39.5h40M39.5 0v40' stroke='rgba(255,255,255,0.04)' stroke-width='1' fill='none'/></svg>");
  background-size: 40px 40px;
  opacity: .4;
}
.hero__overlay {
  position: absolute; bottom: -60%; left: 50%; transform: translateX(-50%);
  width: 1400px; height: 1400px;
  background: radial-gradient(circle, rgba(20, 184, 184, 0.16) 0%, transparent 60%);
  pointer-events: none;
  animation: floatGlow 12s ease-in-out infinite;
}
@keyframes floatGlow {
  0%, 100% { transform: translate(-50%, 0) scale(1); }
  50% { transform: translate(-50%, -40px) scale(1.05); }
}

.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr); gap: 60px;
  align-items: center;
  padding-bottom: 80px;
}
.hero__content { max-width: 720px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.92);
  margin-bottom: 24px;
}
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34,197,94,.55);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.55); }
  70% { box-shadow: 0 0 0 12px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hero__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 22px;
}
.hero__sub {
  font-size: clamp(16px, 1.4vw, 18px);
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin-bottom: 28px;
}

.hero__bullets {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px;
  margin-bottom: 32px;
}
.hero__bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.hero__bullets i {
  color: var(--aqua-glow);
  font-size: 18px;
  flex-shrink: 0;
}

.hero__cta {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 36px;
}
.hero__cta .btn--ghost {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  color: var(--white);
  backdrop-filter: blur(10px);
}
.hero__cta .btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--aqua);
  color: var(--white);
}

.hero__trust {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.trust__item {
  display: flex; align-items: center; gap: 12px;
}
.trust__item i {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(20, 184, 184, 0.18);
  color: var(--aqua-glow);
  border-radius: 12px;
  font-size: 18px;
  flex-shrink: 0;
}
.trust__item strong { display: block; font-size: 14.5px; color: var(--white); }
.trust__item small { display: block; font-size: 12.5px; color: rgba(255,255,255,0.6); }

/* Hero visual (technician photo) */
.hero__visual {
  position: relative;
  display: flex; flex-direction: column; gap: 22px;
  align-items: stretch;
}
.hero__visual-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(6, 8, 15, 0.55), 0 0 0 1px rgba(255,255,255,0.06) inset;
  background: linear-gradient(135deg, rgba(20, 184, 184, 0.2), rgba(94, 234, 212, 0.05));
  border: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 4/3.2;
}
.hero__visual-frame::before {
  content: '';
  position: absolute; inset: -2px;
  background: var(--grad-primary);
  border-radius: inherit;
  z-index: -1;
  opacity: .45;
  filter: blur(20px);
}
.hero__visual-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__visual-tag {
  position: absolute;
  top: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(6, 8, 15, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__visual-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34,197,94,.55);
  animation: pulse 1.6s infinite;
}
.hero__visual-card {
  position: absolute;
  right: 16px; bottom: 16px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-xl);
  z-index: 2;
  text-align: center;
  min-width: 152px;
}
.hero__visual-card-stars {
  color: #FBBF24;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 4px;
}
.hero__visual-card strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
}
.hero__visual-card span {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 600;
}

/* Bottom CTA card */
.hero__visual-cta {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  color: var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.6);
  transition: all .35s cubic-bezier(.2,.7,.3,1);
  position: relative;
  overflow: hidden;
}
.hero__visual-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity .35s ease;
}
.hero__visual-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(14, 165, 164, 0.5);
}
.hero__visual-cta:hover::before { opacity: 1; }
.hero__visual-cta:hover .hero__visual-cta-icon { background: rgba(255,255,255,0.22); color: #fff; }
.hero__visual-cta:hover strong { color: #fff; }
.hero__visual-cta:hover span { color: rgba(255,255,255,0.86); }
.hero__visual-cta:hover .hero__visual-cta-arrow { color: #fff; transform: translateX(4px); }

.hero__visual-cta-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--teal-50);
  color: var(--aqua-deep);
  border-radius: 12px;
  font-size: 18px;
  flex-shrink: 0;
  position: relative; z-index: 1;
  transition: all .35s ease;
}
.hero__visual-cta-text {
  flex: 1; line-height: 1.2;
  position: relative; z-index: 1;
}
.hero__visual-cta-text strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 3px;
  transition: color .35s ease;
}
.hero__visual-cta-text span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  transition: color .35s ease;
}
.hero__visual-cta-arrow {
  color: var(--aqua-deep);
  font-size: 16px;
  position: relative; z-index: 1;
  transition: all .3s ease;
}

/* Hero Stats Strip */
.hero__stats {
  position: relative; z-index: 3;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.hero__stats-inner {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px;
  text-align: center;
}
.stat strong {
  display: block;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  color: var(--aqua-glow);
  line-height: 1;
}
.stat span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* =================================================================
   GENERIC SECTION
   ================================================================= */
.section { padding: 100px 0; }
.section__head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}
.section__head.light * { color: var(--white); }
.section__head.light .section__sub { color: rgba(255,255,255,0.78); }

.section__tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--teal-50);
  color: var(--aqua-deep);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section__tag.light {
  background: rgba(255,255,255,0.08);
  color: var(--aqua-glow);
  border: 1px solid rgba(255,255,255,0.14);
}
.section__title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.section__sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
}
.section__sub.light { color: rgba(255,255,255,0.78); }
.section__sub i { color: #FBBF24; }

/* =================================================================
   SERVICES
   ================================================================= */
.services { background: var(--bg); }
.services__grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all .35s cubic-bezier(.2,.7,.3,1);
  display: flex; flex-direction: column;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  border: 2px solid transparent;
  background: var(--grad-primary) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-card__cta { color: var(--white); background: var(--aqua-deep); }
.service-card:hover .service-card__cta i { transform: translateX(4px); }

.service-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--soft-2), var(--teal-50));
}
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.service-card:hover .service-card__img img { transform: scale(1.06); }

.service-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card__body h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink);
}
.service-card__body p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 18px;
  flex: 1;
}
.service-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--teal-50);
  color: var(--aqua-deep);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  align-self: flex-start;
  transition: all .25s ease;
}
.service-card__cta i { transition: transform .25s ease; }

.services__cta {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  margin-top: 50px;
}

/* =================================================================
   WHY CHOOSE US
   ================================================================= */
.why { background: var(--soft-2); }
.why__grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
  transition: all .35s cubic-bezier(.2,.7,.3,1);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: -50%; right: -50%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(20, 184, 184, 0.08), transparent 70%);
  border-radius: 50%;
  transition: all .5s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--aqua);
}
.why-card:hover::after { bottom: -30%; right: -30%; }
.why-card.highlighted {
  background: var(--grad-primary);
  color: var(--white);
  border-color: transparent;
}
.why-card.highlighted .why-card__icon { background: rgba(255,255,255,0.18); color: var(--white); }
.why-card.highlighted h3 { color: var(--white); }
.why-card.highlighted p { color: rgba(255,255,255,0.92); }
.why-card.highlighted strong { color: var(--white); background: rgba(255,255,255,0.22); padding: 2px 8px; border-radius: 6px; }

.why-card__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--teal-50);
  color: var(--aqua-deep);
  border-radius: 14px;
  font-size: 22px;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.why-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--ink);
  position: relative; z-index: 1;
}
.why-card p {
  font-size: 14.5px;
  color: var(--muted);
  position: relative; z-index: 1;
}

/* =================================================================
   OFFERS (DARK)
   ================================================================= */
.offers {
  background: var(--grad-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.offers::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(20, 184, 184, 0.25), transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(94, 234, 212, 0.15), transparent 70%);
  pointer-events: none;
}

.offers__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px;
}
.offer-card {
  min-width: 0;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  text-align: center;
  position: relative;
  transition: all .35s cubic-bezier(.2,.7,.3,1);
}
.offer-card:hover {
  transform: translateY(-6px);
  border-color: var(--aqua);
  background: rgba(20, 184, 184, 0.08);
}
.offer-card--featured {
  background: var(--grad-primary);
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(14, 165, 164, 0.4);
  transform: scale(1.04);
}
.offer-card--featured:hover { transform: scale(1.04) translateY(-6px); background: var(--grad-primary); }

.offer-card__ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #FBBF24;
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(251, 191, 36, 0.4);
}
.offer-card__amount {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  background: var(--grad-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.offer-card--featured .offer-card__amount {
  background: none;
  -webkit-text-fill-color: var(--white);
  color: var(--white);
}
.offer-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
}
.offer-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 18px;
  min-height: 60px;
}
.offer-card--featured p { color: rgba(255,255,255,0.92); }
.offer-card__code {
  display: block;
  margin-bottom: 18px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.08);
  border: 1.5px dashed rgba(255,255,255,0.3);
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--aqua-glow);
}
.offer-card--featured .offer-card__code {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
}
.offer-card .btn--ghost {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  color: var(--white);
}
.offer-card .btn--ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: var(--aqua);
}
.offer-card--featured .btn { background: var(--white); color: var(--aqua-deep); }
.offer-card--featured .btn:hover { background: var(--ink); color: var(--white); }

.offers__disclaimer {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  position: relative; z-index: 1;
}

/* =================================================================
   ABOUT
   ================================================================= */
.about { background: var(--bg); }
.about__inner {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 70px;
  align-items: center;
}
.about__media {
  position: relative;
  height: 100%;
  min-height: 540px;
}
.about__media-main {
  width: 80%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  position: relative; z-index: 1;
}
.about__media-main img {
  width: 100%; height: 100%; object-fit: cover;
}
.about__media-secondary {
  position: absolute;
  bottom: 30px; right: 0;
  width: 55%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  border: 6px solid var(--white);
  z-index: 2;
}
.about__media-secondary img {
  width: 100%; height: 100%; object-fit: cover;
}
.about__media-stamp {
  position: absolute;
  top: 30px; right: -10px;
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.about__media-stamp i {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--grad-primary);
  color: var(--white);
  border-radius: 12px;
  font-size: 18px;
}
.about__media-stamp strong { display: block; font-size: 17px; color: var(--ink); font-weight: 800; }
.about__media-stamp span { display: block; font-size: 12.5px; color: var(--muted); }

.about__content .section__title { text-align: left; }
.about__content { text-align: left; }
.about__content p {
  margin-top: 14px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}
.about__perks {
  margin: 26px 0 28px;
  display: grid; gap: 10px;
}
.about__perks li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
}
.about__perks i {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: var(--grad-primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  flex-shrink: 0;
}
.about__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* =================================================================
   EMERGENCY
   ================================================================= */
.emergency {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--aqua);
  border-bottom: 4px solid var(--aqua);
}
.emergency::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20, 184, 184, 0.15) 0%, transparent 60%);
}
.emergency__inner {
  position: relative; z-index: 1;
  padding: 56px 24px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 30px;
  align-items: center;
}
.emergency__icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  background: var(--grad-primary);
  color: var(--white);
  border-radius: 16px;
  font-size: 26px;
  flex-shrink: 0;
  box-shadow: var(--shadow-teal);
  animation: shake 3s infinite;
}
@keyframes shake {
  0%, 90%, 100% { transform: rotate(0); }
  92% { transform: rotate(6deg); }
  94% { transform: rotate(-6deg); }
  96% { transform: rotate(4deg); }
  98% { transform: rotate(-4deg); }
}
.emergency__text h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
}
.emergency__text p {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
}
.emergency__text strong { color: var(--aqua-glow); }

/* =================================================================
   PROCESS
   ================================================================= */
.process { background: var(--soft-2); }
.process__grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px;
  position: relative;
}
.process__grid::before {
  content: '';
  position: absolute;
  top: 60px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--aqua) 0 8px, transparent 8px 16px);
  opacity: .35;
  z-index: 0;
}
.process-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
  transition: all .35s ease;
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--aqua);
}
.process-step__num {
  position: absolute;
  top: -16px; right: 20px;
  font-size: 14px;
  font-weight: 800;
  padding: 6px 14px;
  background: var(--grad-primary);
  color: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow-teal);
}
.process-step__icon {
  width: 76px; height: 76px;
  display: grid; place-items: center;
  background: var(--teal-50);
  color: var(--aqua-deep);
  border-radius: 50%;
  font-size: 28px;
  margin: 0 auto 18px;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 6px var(--teal-50);
}
.process-step h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink);
}
.process-step p {
  font-size: 14px;
  color: var(--muted);
}

/* =================================================================
   GALLERY
   ================================================================= */
.gallery { background: var(--bg); }
.gallery__grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px;
}
.gallery__item {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .4s ease;
  cursor: zoom-in;
}
.gallery__item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery__item:hover img { transform: scale(1.1); }
.gallery__cap {
  position: absolute;
  bottom: 12px; left: 12px;
  padding: 6px 12px;
  background: rgba(6, 8, 15, 0.78);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition: all .35s ease;
}
.gallery__item:hover .gallery__cap { opacity: 1; transform: translateY(0); }

/* =================================================================
   BRANDS
   ================================================================= */
.brands { background: var(--soft-2); }
.brands__grid {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px;
  margin-bottom: 30px;
}
.brand {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 110px;
  display: grid; place-items: center;
  padding: 18px;
  transition: all .35s ease;
}
.brand:hover {
  border-color: var(--aqua);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.brand img {
  max-height: 54px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .7;
  transition: all .3s ease;
}
.brand:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.brands__note {
  text-align: center;
  font-size: 15.5px;
  color: var(--muted);
  margin-top: 30px;
}
.brands__note strong { color: var(--ink); }

/* =================================================================
   MID CTA
   ================================================================= */
.midcta {
  position: relative;
  padding: 80px 0;
  background: var(--grad-primary);
  color: var(--white);
  overflow: hidden;
}
.midcta__bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(255,255,255,0.15), transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(255,255,255,0.1), transparent 50%);
  pointer-events: none;
}
.midcta__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><circle cx='40' cy='40' r='1.5' fill='rgba(255,255,255,0.2)'/></svg>");
  background-size: 80px 80px;
  opacity: .5;
}
.midcta__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto; gap: 40px;
  align-items: center;
}
.midcta__text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.midcta__text p {
  font-size: 18px;
  color: rgba(255,255,255,0.92);
}
.midcta__buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.midcta .btn--primary {
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(6,8,15,0.3);
}
.midcta .btn--primary:hover { background: var(--black); }

/* =================================================================
   REVIEWS
   ================================================================= */
.reviews { background: var(--bg); }
.reviews__grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px;
}
.review {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all .35s ease;
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--aqua);
}
.review::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: Georgia, serif;
  font-size: 80px;
  font-weight: 800;
  color: var(--teal-100);
  line-height: 1;
  z-index: 0;
}
.review__head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.review__avatar {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}
.review__head strong { display: block; font-size: 15.5px; color: var(--ink); }
.review__head span { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted); }
.review__head .fa-google { color: #4285F4; }
.review__stars {
  font-size: 18px;
  color: #FBBF24;
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.review p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.review__date {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
  position: relative; z-index: 1;
}
.reviews__cta { text-align: center; margin-top: 40px; }

/* =================================================================
   FAQ
   ================================================================= */
.faq { background: var(--soft-2); }
.faq__inner {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  column-gap: 60px;
  row-gap: 24px;
  align-items: start;
}
.faq__head    { grid-column: 1; grid-row: 1; align-self: start; }
.faq__sidebar { grid-column: 1; grid-row: 2; align-self: start; }
.faq__media   { grid-column: 1; grid-row: 3; align-self: stretch; }
.faq__list    { grid-column: 2; grid-row: 1 / span 3; align-self: start; }

/* FAQ media photo — fills the left column below the sidebar (desktop only) */
.faq__media {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.faq__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.faq__media-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(6, 8, 15, 0.78) 0%, rgba(6, 8, 15, 0.12) 45%, transparent 70%);
}
.faq__media-badge {
  display: flex; align-items: center; gap: 12px;
  color: #fff;
}
.faq__media-badge i {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--grad-primary);
  color: #fff;
  border-radius: 12px;
  font-size: 17px;
  box-shadow: var(--shadow-teal);
}
.faq__media-badge strong { display: block; font-size: 15px; font-weight: 800; line-height: 1.2; }
.faq__media-badge span { display: block; font-size: 12.5px; color: rgba(255,255,255,0.82); margin-top: 2px; }

.faq__head .section__tag,
.faq__head .section__title,
.faq__head .section__sub { text-align: left; margin-left: 0; }
.faq__head .section__title { font-size: clamp(28px, 3vw, 38px); }
.faq__head .section__sub { font-size: 16px; }

.faq__sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.faq__sidebar h4 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.faq__sidebar p { font-size: 14.5px; color: var(--muted); margin-bottom: 18px; }
.faq__sidebar .btn { margin-bottom: 10px; }

.faq__list { display: grid; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all .25s ease;
}
.faq-item:hover { border-color: var(--aqua); }
.faq-item summary {
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none;
  position: relative;
  padding-right: 60px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--teal-50);
  color: var(--aqua-deep);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
  transition: transform .3s ease, background .3s ease;
}
.faq-item[open] summary::after {
  content: '−';
  background: var(--aqua-deep);
  color: var(--white);
  transform: translateY(-50%) rotate(180deg);
}
.faq-item p {
  padding: 0 26px 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* =================================================================
   SERVICE AREAS
   ================================================================= */
.areas { background: var(--bg); }
.areas__grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin: 0 auto 50px;
  max-width: 980px;
}
.area {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: all .25s ease;
  cursor: default;
}
.area::before {
  content: '\f3c5';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--aqua-deep);
  font-size: 13px;
}
.area:hover {
  background: var(--grad-primary);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}
.area:hover::before { color: var(--white); }

.areas__cta {
  text-align: center;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center;
}
.areas__cta p {
  width: 100%;
  margin-bottom: 8px;
  font-size: 15.5px;
  color: var(--muted);
}
.areas__cta strong { color: var(--ink); }

/* =================================================================
   BOOK SECTION
   ================================================================= */
.book { background: var(--soft-2); }
.bookcard {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--grad-dark);
  color: var(--white);
  box-shadow: var(--shadow-xl);
}
.bookcard__bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(20, 184, 184, 0.35), transparent 65%),
    radial-gradient(ellipse 50% 50% at 90% 100%, rgba(94, 234, 212, 0.25), transparent 65%);
}
.bookcard__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><path d='M0 39.5h40M39.5 0v40' stroke='rgba(255,255,255,0.04)' stroke-width='1' fill='none'/></svg>");
  background-size: 40px 40px;
}
.bookcard__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 50px;
  padding: 56px;
  align-items: center;
}
.bookcard__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--aqua-glow);
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
}
.bookcard__left h3 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 12px;
}
.bookcard__left > p {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 22px;
  max-width: 520px;
}
.bookcard__perks {
  display: grid; gap: 10px;
  margin-bottom: 28px;
}
.bookcard__perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.92);
}
.bookcard__perks i { color: var(--aqua-glow); font-size: 16px; flex-shrink: 0; }
.bookcard__perks strong {
  background: rgba(20, 184, 184, 0.2);
  color: var(--aqua-glow);
  padding: 1px 7px;
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: .03em;
}

.bookcard__cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 16px;
}
.bookcard__cta .btn--white { background: var(--white); color: var(--ink); }
.bookcard__cta .btn--white:hover { background: var(--aqua-glow); color: var(--ink); transform: translateY(-2px); }
.bookcard__cta .btn--ghost {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  color: var(--white);
  backdrop-filter: blur(10px);
}
.bookcard__cta .btn--ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: var(--aqua);
  color: var(--white);
}
.bookcard__note {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 8px;
}
.bookcard__note i { color: var(--aqua-glow); }

/* Right side: numbered steps */
.bookcard__right {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.bookcard__steps { display: grid; gap: 16px; margin-bottom: 22px; }
.bookcard__step {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: all .25s ease;
}
.bookcard__step:hover {
  background: rgba(20, 184, 184, 0.1);
  border-color: rgba(20, 184, 184, 0.3);
}
.bookcard__step span {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.1);
  color: var(--aqua-glow);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}
.bookcard__step--final span {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.bookcard__step strong {
  display: block;
  font-size: 15px;
  color: var(--white);
  font-weight: 700;
}
.bookcard__step small {
  display: block;
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  margin-top: 1px;
}
.bookcard__rating {
  text-align: center;
  padding-top: 20px;
  border-top: 1px dashed rgba(255,255,255,0.14);
}
.bookcard__stars {
  font-size: 22px;
  color: #FBBF24;
  letter-spacing: 3px;
  margin-bottom: 4px;
}
.bookcard__rating strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  display: block;
}
.bookcard__rating span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .bookcard__inner { grid-template-columns: 1fr; padding: 40px; gap: 32px; }
}
@media (max-width: 720px) {
  .bookcard__inner { padding: 28px 22px; }
  .bookcard__cta { flex-direction: column; }
  .bookcard__cta .btn { width: 100%; }
}

/* =================================================================
   CONTACT
   ================================================================= */
.contact { background: var(--bg); }
.contact__inner {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 60px;
  align-items: center;
}
.contact__info .section__tag,
.contact__info .section__title { text-align: left; margin-left: 0; }
.contact__info > p { font-size: 16px; color: var(--muted); margin-bottom: 26px; }
.contact__list { display: grid; gap: 18px; margin-bottom: 26px; }
.contact__list li {
  display: flex; gap: 16px; align-items: flex-start;
}
.contact__list i {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--grad-primary);
  color: var(--white);
  border-radius: 12px;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: var(--shadow-teal);
}
.contact__list small {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.contact__list strong, .contact__list a strong {
  font-size: 16.5px;
  color: var(--ink);
  font-weight: 700;
  display: block;
}
.contact__list a:hover strong { color: var(--aqua-deep); }
.contact__list span { display: block; font-size: 13.5px; color: var(--muted); margin-top: 2px; }

.contact__social { display: flex; gap: 12px; }
.contact__social a {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 50%;
  font-size: 16px;
  color: var(--ink);
  transition: all .3s ease;
}
.contact__social a:hover {
  background: var(--grad-primary);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-teal);
}

.contact__map {
  height: 460px;
  perspective: 1200px;
}

/* ---- Premium map card ---- */
.map-card {
  position: relative;
  width: 100%; height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 30px 70px -24px rgba(6, 8, 15, 0.45),
    0 0 0 1px rgba(20, 184, 184, 0.18) inset;
  border: 1.5px solid rgba(20, 184, 184, 0.25);
  isolation: isolate;
}
.map-card::before {
  /* animated gradient glow ring */
  content: '';
  position: absolute; inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(130deg, var(--teal-400), transparent 35%, transparent 65%, var(--aqua-glow));
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: mapGlow 7s ease infinite;
  pointer-events: none;
  z-index: 4;
}
@keyframes mapGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.map-card iframe {
  width: 100%; height: 100%; border: 0; display: block;
  filter: saturate(1.05) contrast(1.02);
}

/* Top-right live badge */
.map-card__badge {
  position: absolute; top: 16px; left: 16px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(6, 8, 15, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: #fff;
  font-size: 12px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
}
.map-card__live {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34,197,94,.55);
  animation: pulse 1.6s infinite;
}

/* Decorative pulsing pin (center-ish) */
.map-card__pin {
  position: absolute; top: 38%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
}
.map-card__pin-dot {
  position: relative; z-index: 2;
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(14, 165, 164, 0.55);
  border: 2px solid #fff;
  animation: pinBob 2.6s ease-in-out infinite;
}
.map-card__pin-dot i { transform: rotate(45deg); font-size: 16px; }
.map-card__pin-pulse {
  position: absolute; top: 50%; left: 50%;
  width: 44px; height: 44px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(20, 184, 184, 0.4);
  animation: pinPulse 2.4s ease-out infinite;
}
@keyframes pinBob {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-7px); }
}
@keyframes pinPulse {
  0% { opacity: .7; transform: translate(-50%, -50%) scale(.6); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(2.6); }
}

/* Floating info card */
.map-card__info {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  z-index: 3;
  display: flex; flex-direction: column; gap: 12px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(6, 8, 15, 0.22);
}
.map-card__info-head { display: flex; align-items: center; gap: 12px; }
.map-card__logo {
  width: 42px; height: 42px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--grad-primary);
  color: #fff; border-radius: 12px;
  font-size: 17px;
  box-shadow: var(--shadow-teal);
}
.map-card__title strong { display: block; font-size: 15.5px; font-weight: 800; color: var(--ink); line-height: 1.2; }
.map-card__title span { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.map-card__title .fa-google { color: #4285F4; }
.map-card__rating { display: flex; align-items: center; gap: 8px; }
.map-card__stars { color: #FBBF24; font-size: 15px; letter-spacing: 1.5px; }
.map-card__rating b { font-size: 15px; font-weight: 800; color: var(--ink); }
.map-card__reviews { font-size: 12.5px; color: var(--muted); }
.map-card__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px;
  background: var(--grad-primary);
  color: #fff;
  border-radius: 12px;
  font-size: 14px; font-weight: 800;
  box-shadow: var(--shadow-teal);
  transition: all .3s cubic-bezier(.2,.7,.3,1);
}
.map-card__btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(14, 165, 164, 0.5); color: #fff; }

/* =================================================================
   FOOTER
   ================================================================= */
.footer { background: var(--ink); color: rgba(255,255,255,0.78); }
.footer__inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 50px;
  padding: 80px 24px 50px;
}
.footer__col h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col ul a {
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  transition: color .25s ease;
}
.footer__col ul a:hover { color: var(--aqua-glow); }

.footer__col--brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer__col--brand p {
  font-size: 14.5px;
  margin: 18px auto 22px;
  line-height: 1.7;
  max-width: 340px;
}
.footer__col--brand .footer__social { justify-content: center; }
.footer__logo {
  height: 70px;
  width: auto;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 12px;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-radius: 50%;
  font-size: 15px;
  transition: all .3s ease;
}
.footer__social a:hover {
  background: var(--grad-primary);
  transform: translateY(-3px);
}

.footer__contact li, .footer__hours li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px;
}
.footer__contact i {
  width: 26px;
  color: var(--aqua-glow);
  text-align: center;
}
.footer__hours li {
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.footer__hours strong { color: var(--white); font-weight: 600; }
.footer__hours .footer__emerg {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(20, 184, 184, 0.12);
  border: 1px solid rgba(20, 184, 184, 0.3);
  border-radius: 8px;
  color: var(--aqua-glow);
  font-weight: 700;
  font-size: 13.5px;
  border-bottom: none;
  justify-content: flex-start;
}
.footer__hours .footer__emerg i { color: var(--aqua-glow); }

.footer__bottom {
  background: rgba(0,0,0,0.3);
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 12px;
}
.footer__legal-link {
  color: rgba(255,255,255,0.72);
  font-weight: 600;
  transition: color .25s ease;
  white-space: nowrap;
}
.footer__legal-link:hover { color: var(--aqua-glow); }

/* ===== Subtle Kvoka credit ===== */
.footer__credit {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.42);
  letter-spacing: .01em;
  user-select: none;
}
.footer__heart {
  display: inline-flex; align-items: center;
  color: #FF5A7A;
  filter: drop-shadow(0 0 4px rgba(255, 90, 122, 0.4));
  animation: heartBeat 1.6s ease-in-out infinite;
}
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.18); }
  30% { transform: scale(1); }
  45% { transform: scale(1.12); }
  60% { transform: scale(1); }
}
.footer__kvoka {
  position: relative;
  display: inline-block;
  padding: 2px 2px 3px;
  font-weight: 700;
  background: linear-gradient(120deg, #67E8F9 0%, #5EEAD4 50%, #22D3EE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  cursor: pointer;
  transition: all .4s ease;
}
.footer__kvoka::after {
  content: '';
  position: absolute;
  left: 2px; right: 2px; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(94, 234, 212, 0.6) 50%, transparent 100%);
  transform: scaleX(0);
  transition: transform .45s cubic-bezier(.2,.7,.3,1);
  transform-origin: center;
}
.footer__kvoka:hover {
  background-position: right center;
  filter: drop-shadow(0 0 8px rgba(94, 234, 212, 0.5));
}
.footer__kvoka:hover::after { transform: scaleX(1); }
.footer__kvoka-text { position: relative; z-index: 2; }
.footer__kvoka-glow {
  position: absolute;
  inset: -4px -8px;
  background: radial-gradient(ellipse, rgba(94, 234, 212, 0.18) 0%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
  z-index: 1;
  border-radius: 8px;
}
.footer__kvoka:hover .footer__kvoka-glow { opacity: 1; }

/* =================================================================
   KVOKA STUDIO MODAL
   ================================================================= */
.kvoka {
  position: fixed; inset: 0;
  display: grid; place-items: center;
  z-index: 1000;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.kvoka.show {
  opacity: 1;
  pointer-events: auto;
}
.kvoka__backdrop {
  position: absolute; inset: 0;
  background: rgba(6, 8, 15, 0.78);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}
.kvoka__dialog {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(20, 184, 184, 0.22), transparent 60%),
    radial-gradient(ellipse 80% 50% at 100% 100%, rgba(94, 234, 212, 0.14), transparent 60%),
    linear-gradient(180deg, #0B121F 0%, #06080F 100%);
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 50px 100px -20px rgba(0,0,0,0.6),
    0 30px 60px -30px rgba(20, 184, 184, 0.45),
    0 0 0 1px rgba(20, 184, 184, 0.06) inset;
  padding: 40px 36px 32px;
  color: #fff;
  transform: scale(.92) translateY(20px);
  opacity: 0;
  transition: all .55s cubic-bezier(.2,.85,.25,1);
  -webkit-overflow-scrolling: touch;
}
.kvoka.show .kvoka__dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.kvoka__dialog::-webkit-scrollbar { width: 8px; }
.kvoka__dialog::-webkit-scrollbar-track { background: transparent; }
.kvoka__dialog::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 4px; }

/* Glowing orbs decoration */
.kvoka__orbs {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
  border-radius: inherit;
}
.kvoka__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .5;
}
.kvoka__orb--1 {
  width: 240px; height: 240px;
  top: -100px; left: -80px;
  background: radial-gradient(circle, #14B8B8 0%, transparent 70%);
  animation: orbFloat 8s ease-in-out infinite;
}
.kvoka__orb--2 {
  width: 200px; height: 200px;
  top: 40%; right: -80px;
  background: radial-gradient(circle, #5EEAD4 0%, transparent 70%);
  animation: orbFloat 9s ease-in-out infinite 2s;
}
.kvoka__orb--3 {
  width: 180px; height: 180px;
  bottom: -60px; left: 30%;
  background: radial-gradient(circle, #22D3EE 0%, transparent 70%);
  animation: orbFloat 10s ease-in-out infinite 4s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -16px) scale(1.1); }
}

/* Close button */
.kvoka__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  z-index: 10;
  transition: all .25s ease;
}
.kvoka__close:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  transform: rotate(90deg);
  border-color: rgba(255,255,255,0.2);
}

/* Hero of modal */
.kvoka__hero {
  position: relative; z-index: 2;
  text-align: left;
  margin-bottom: 26px;
}
.kvoka__brand {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.kvoka__monogram {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #06B6D4 0%, #14B8B8 50%, #0EA5A4 100%);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 12px 28px rgba(20, 184, 184, 0.4), inset 0 1px 0 rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
}
.kvoka__monogram::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: shine 4s ease-in-out infinite;
}
@keyframes shine {
  0%, 60% { transform: translateX(-100%); }
  80%, 100% { transform: translateX(100%); }
}
.kvoka__brandtxt { line-height: 1.1; }
.kvoka__brandtxt small {
  display: block;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #5EEAD4;
  font-weight: 700;
  margin-bottom: 4px;
}
.kvoka__brandtxt strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .04em;
}

.kvoka__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.kvoka__title-grad {
  background: linear-gradient(120deg, #67E8F9 0%, #5EEAD4 50%, #22D3EE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradShift 6s ease-in-out infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.kvoka__lead {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
}
.kvoka__lead strong {
  color: #fff;
  font-weight: 700;
}

/* Stats */
.kvoka__stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px;
  margin-bottom: 24px;
  padding: 18px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}
.kvoka__stat { text-align: center; }
.kvoka__stat strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, #5EEAD4 0%, #22D3EE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.kvoka__stat span {
  display: block;
  font-size: 10.5px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.25;
}

/* Features */
.kvoka__features {
  position: relative; z-index: 2;
  display: grid; gap: 10px;
  margin-bottom: 26px;
}
.kvoka__features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
}
.kvoka__check {
  width: 22px; height: 22px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #14B8B8 0%, #0EA5A4 100%);
  color: #fff;
  box-shadow: 0 4px 10px rgba(20, 184, 184, 0.35);
}

/* CTA */
.kvoka__cta {
  position: relative; z-index: 2;
  margin-bottom: 22px;
}
.kvoka__btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  padding: 17px 24px;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: .01em;
  color: #06080F;
  background: linear-gradient(135deg, #67E8F9 0%, #5EEAD4 50%, #22D3EE 100%);
  background-size: 200% auto;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 16px 36px rgba(94, 234, 212, 0.35),
    0 0 0 1px rgba(255,255,255,0.1) inset;
  transition: all .35s cubic-bezier(.2,.7,.3,1);
}
.kvoka__btn:hover {
  transform: translateY(-2px);
  background-position: right center;
  box-shadow:
    0 22px 48px rgba(94, 234, 212, 0.5),
    0 0 0 1px rgba(255,255,255,0.2) inset;
}
.kvoka__btn:active { transform: translateY(0); }
.kvoka__btn svg { position: relative; z-index: 2; transition: transform .3s ease; }
.kvoka__btn:hover svg { transform: translateX(4px); }
.kvoka__btn span { position: relative; z-index: 2; }
.kvoka__btn-shine {
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  animation: btnShine 3.5s ease-in-out infinite;
}
@keyframes btnShine {
  0%, 50% { left: -100%; }
  100% { left: 200%; }
}

.kvoka__note {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
}
.kvoka__note svg { color: #5EEAD4; }

/* Footer of modal */
.kvoka__footer {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding-top: 22px;
  border-top: 1px dashed rgba(255,255,255,0.1);
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}
.kvoka__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34,197,94,.55);
  animation: pulse 1.8s infinite;
}

/* Responsive modal */
@media (max-width: 540px) {
  .kvoka { padding: 12px; }
  .kvoka__dialog { padding: 32px 22px 24px; border-radius: 22px; }
  .kvoka__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; padding: 16px 12px; }
  .kvoka__title { font-size: 24px; }
  .kvoka__features li { font-size: 13.5px; }
  .kvoka__brand { gap: 10px; margin-bottom: 18px; }
  .kvoka__monogram { width: 42px; height: 42px; font-size: 21px; border-radius: 12px; }
  .kvoka__close { width: 44px; height: 44px; }
}

/* Lock scroll when modal open */
body.kvoka-open { overflow: hidden; }

/* =================================================================
   FLOATING ACTIONS
   ================================================================= */
.floating {
  position: fixed;
  right: 24px; bottom: 28px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 90;
}
.floating__btn {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 22px;
  box-shadow: 0 12px 30px rgba(6, 8, 15, 0.3);
  transition: all .3s ease;
  position: relative;
}
.floating__btn:hover { transform: scale(1.1); }
.floating__btn--call { background: var(--grad-primary); }
.floating__btn--sms { background: var(--ink); }
.floating__pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--aqua);
  animation: ping 2s infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: 1; }
  80%, 100% { transform: scale(1.6); opacity: 0; }
}

/* Mobile bottom bar */
.mobilebar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(6,8,15,0.08);
  z-index: 95;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
}
.mobilebar__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px;
  font-size: 15px; font-weight: 700;
  border-radius: 12px;
  transition: all .25s ease;
}
.mobilebar__btn--call {
  background: var(--ink);
  color: var(--white);
}
.mobilebar__btn--book {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}

/* =================================================================
   LIVE ACTIVITY (SOCIAL PROOF)
   ================================================================= */
.activity {
  position: fixed;
  left: 24px; bottom: 28px;
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--line);
  max-width: 340px;
  z-index: 90;
  transform: translateY(140%) scale(.95);
  opacity: 0;
  transition: all .5s cubic-bezier(.2,.7,.3,1);
}
.activity.show {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.activity__avatar {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--grad-primary);
  color: var(--white);
  border-radius: 12px;
  font-size: 18px;
  box-shadow: var(--shadow-teal);
}
.activity__body { line-height: 1.3; }
.activity__body strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  font-weight: 700;
}
.activity__body span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin: 2px 0;
}
.activity__body small {
  display: flex; align-items: center; gap: 6px;
  font-size: 11.5px;
  color: var(--aqua-deep);
  font-weight: 600;
}
.activity__body small::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: pulse 1.6s infinite;
}
.activity__close {
  position: absolute;
  top: 4px; right: 4px;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--gray-2);
  font-size: 13px;
  background: transparent;
  transition: all .2s ease;
}
.activity__close:hover {
  background: var(--soft);
  color: var(--ink);
}

@media (max-width: 720px) {
  .activity {
    left: 12px; right: 12px; bottom: 90px;
    max-width: none;
  }
}

/* =================================================================
   ANIMATIONS ON SCROLL
   ================================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.3,1);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* =================================================================
   RESPONSIVE — Mobile-First Polish
   Breakpoints:
     ≤1180  laptop  — tighten header phone widget
     ≤1024  tablet  — collapse nav into burger, single-col heros
     ≤900   small tablet / large phone — refine layouts
     ≤720   phone   — full mobile stack, sticky mobilebar
     ≤480   small phone — extra compaction
     ≤380   xs phone — emergency squeeze
   ================================================================= */

/* ---- 1180px: laptop ---- */
@media (max-width: 1180px) {
  .header__phone span { display: none; }
  .header__phone { padding: 4px 6px; }
}

/* ---- 1024px: tablet — burger menu kicks in ---- */
@media (max-width: 1024px) {
  /* Header */
  .nav { display: none; }
  .header__inner { height: 76px; gap: 10px; }
  .logo img { height: 60px; }
  .header__phone span { display: none; }
  .header__cta { padding: 11px 16px; font-size: 14px; }
  .burger { display: flex; padding: 12px 8px; }

  .header.menu-open .nav {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    gap: 2px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--line);
    max-height: calc(100vh - 76px - 44px);
    overflow-y: auto;
  }
  .header.menu-open .nav a {
    padding: 16px 18px;
    font-size: 15.5px;
    border-radius: 12px;
  }

  /* Hero */
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding-bottom: 60px; }
  .hero { padding: 60px 0 0; }
  .hero__content { max-width: 100%; }
  .hero__bullets { grid-template-columns: 1fr 1fr; gap: 10px 20px; }
  .hero__trust { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .hero__visual { max-width: 600px; margin: 0 auto; width: 100%; }
  .hero__visual-frame { aspect-ratio: 16/10; }

  /* Grids */
  .services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offers__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
  .offer-card--featured { transform: none; }
  .process__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .process__grid::before { display: none; }
  .gallery__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
  .brands__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
  .reviews__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* About */
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__media { min-height: auto; max-width: 560px; margin: 0 auto; width: 100%; }

  /* Contact */
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact__map { height: 360px; }

  /* FAQ — mobile stacking, sidebar after questions */
  .faq__inner { grid-template-columns: 1fr; grid-template-rows: none; row-gap: 24px; }
  .faq__head    { grid-column: 1; grid-row: auto; align-self: auto; }
  .faq__list    { grid-column: 1; grid-row: auto; align-self: auto; }
  .faq__sidebar { grid-column: 1; grid-row: auto; align-self: auto; }
  .faq__media   { display: none; }

  /* Footer — brand on top (full width), Quick Links + Our Services side by side */
  .footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 28px; padding: 60px 24px 36px; }
  .footer__col--brand { grid-column: span 2; text-align: center; }
  .footer__col--brand p { margin-left: auto; margin-right: auto; max-width: 420px; }
  .footer__col--brand .footer__social { justify-content: center; }
  .footer__col:last-child { grid-column: span 2; }

  /* Mid CTA + Emergency */
  .midcta__inner { grid-template-columns: 1fr; text-align: center; }
  .midcta__buttons { justify-content: center; }
  .emergency__inner { grid-template-columns: 1fr; text-align: center; gap: 18px; padding: 30px 20px; }
  .emergency__icon { margin: 0 auto; }
}

/* ---- 900px: refine spacing ---- */
@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .section__head { margin-bottom: 48px; }
  .hero__title { font-size: clamp(30px, 7vw, 44px); }
  .hero__sub { font-size: 16px; }
  .about__media-stamp { top: 20px; padding: 12px 16px; }
  .about__media-stamp i { width: 40px; height: 40px; font-size: 16px; }
  .about__media-stamp strong { font-size: 16px; }
  .bookcard__inner { padding: 40px 32px; }
  .container { padding: 0 20px; }
}

/* ---- 720px: phone — sticky mobilebar, single-col layouts ---- */
@media (max-width: 720px) {
  /* Topbar — hidden on mobile (phone gets sticky header + bottom call/book bar instead) */
  .topbar { display: none; }

  /* Header — compact, larger touch targets */
  .header__inner { height: 70px; gap: 8px; }
  .logo img { height: 54px; }
  .header__phone i { width: 42px; height: 42px; font-size: 14px; }
  .header__cta { padding: 12px 16px; font-size: 13.5px; min-height: 44px; }
  .header__cta i { font-size: 13px; }
  .burger { padding: 12px 8px; }

  /* Sections */
  .section { padding: 64px 0; }
  .section__head { margin-bottom: 36px; }
  .section__title { font-size: clamp(26px, 6vw, 34px); }
  .section__sub { font-size: 15.5px; }
  .container { padding: 0 16px; }

  /* Hero */
  .hero { padding: 44px 0 0; }
  .hero__inner { gap: 30px; padding-bottom: 50px; }
  .hero__title { font-size: clamp(28px, 8vw, 40px); line-height: 1.1; margin-bottom: 18px; }
  .hero__sub { font-size: 15.5px; margin-bottom: 24px; }
  .hero__bullets { grid-template-columns: 1fr; gap: 10px; margin-bottom: 26px; }
  .hero__bullets li { font-size: 14.5px; }
  .hero__badge { font-size: 12px; padding: 7px 13px; margin-bottom: 18px; }
  .hero__cta { flex-direction: column; gap: 12px; margin-bottom: 28px; }
  .hero__cta .btn { width: 100%; min-height: 52px; }
  .hero__trust { grid-template-columns: 1fr; gap: 12px; padding-top: 22px; }
  .trust__item i { width: 40px; height: 40px; font-size: 16px; }
  .trust__item strong { font-size: 14px; }
  .trust__item small { font-size: 12px; }

  /* Hero visual */
  .hero__visual { gap: 16px; }
  .hero__visual-frame { aspect-ratio: 4/3; }
  .hero__visual-tag { top: 12px; left: 12px; padding: 6px 11px; font-size: 11px; }
  .hero__visual-card { right: 10px; bottom: 10px; padding: 10px 14px; min-width: 124px; border-radius: 12px; }
  .hero__visual-card strong { font-size: 16px; }
  .hero__visual-card-stars { font-size: 14px; }
  .hero__visual-card span { font-size: 11px; }
  .hero__visual-cta { padding: 13px 14px; gap: 12px; border-radius: 14px; }
  .hero__visual-cta-icon { width: 40px; height: 40px; font-size: 16px; }
  .hero__visual-cta-text strong { font-size: 14px; }
  .hero__visual-cta-text span { font-size: 11.5px; }

  /* Hero stats — 2x2 + 1 centered */
  .hero__stats { padding: 18px 0; }
  .hero__stats-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 12px; }
  .stat strong { font-size: 19px; }
  .stat span { font-size: 11.5px; margin-top: 4px; }
  .stat:nth-child(5) { grid-column: 1 / -1; }

  /* Service cards — 1 col, compact */
  .services__grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card__img { aspect-ratio: 16/9; }
  .service-card__body { padding: 20px; }
  .service-card__body h3 { font-size: 19px; }
  .services__cta { flex-direction: column; gap: 12px; }
  .services__cta .btn { width: 100%; }

  /* Why */
  .why__grid { grid-template-columns: 1fr; gap: 14px; }
  .why-card { padding: 24px; }
  .why-card h3 { font-size: 18px; }
  .why-card__icon { width: 52px; height: 52px; font-size: 20px; margin-bottom: 14px; }

  /* Offers */
  .offers__grid { grid-template-columns: 1fr; gap: 20px; }
  .offer-card { padding: 28px 22px; }
  .offer-card__amount { font-size: 48px; }
  .offer-card h3 { font-size: 17px; }
  .offer-card p { min-height: 0; font-size: 14px; }

  /* About */
  .about__media { max-width: 100%; }
  .about__media-main { width: 100%; aspect-ratio: 4/3; }
  .about__media-secondary { width: 55%; right: 6px; bottom: 16px; aspect-ratio: 4/3; }
  .about__media-stamp { top: 14px; right: 6px; padding: 10px 14px; }
  .about__media-stamp i { width: 36px; height: 36px; font-size: 15px; }
  .about__media-stamp strong { font-size: 14px; }
  .about__media-stamp span { font-size: 11.5px; }
  .about__cta { gap: 10px; }
  .about__cta .btn { width: 100%; min-height: 50px; }
  .about__perks li { font-size: 14.5px; }

  /* Emergency */
  .emergency__inner { padding: 26px 18px; }
  .emergency__text h3 { font-size: 20px; }
  .emergency__text p { font-size: 14.5px; }
  .emergency__icon { width: 56px; height: 56px; font-size: 22px; }

  /* Process — vertical card with side-by-side number */
  .process__grid { grid-template-columns: 1fr; gap: 18px; }
  .process-step { padding: 28px 22px; }
  .process-step__icon { width: 64px; height: 64px; font-size: 24px; }
  .process-step h3 { font-size: 17px; }

  /* Gallery */
  .gallery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .gallery__cap { font-size: 11.5px; padding: 5px 10px; bottom: 8px; left: 8px; opacity: 1; transform: none; }

  /* Brands */
  .brands__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .brand { height: 86px; padding: 14px; }
  .brand img { max-height: 40px; opacity: 1; filter: grayscale(40%); }

  /* Mid-CTA */
  .midcta { padding: 60px 0; }
  .midcta__buttons { flex-direction: column; width: 100%; }
  .midcta__buttons .btn { width: 100%; min-height: 52px; }

  /* Reviews */
  .reviews__grid { grid-template-columns: 1fr; gap: 16px; }
  .review { padding: 24px; }
  .review::before { font-size: 60px; top: 12px; right: 18px; }
  .review p { font-size: 14px; }
  .reviews__cta .btn { width: 100%; }

  /* FAQ */
  .faq-item summary { font-size: 15px; padding: 18px 22px; padding-right: 52px; line-height: 1.4; }
  .faq-item summary::after { right: 18px; width: 26px; height: 26px; font-size: 16px; }
  .faq-item p { padding: 0 22px 18px; font-size: 14.5px; }
  .faq__sidebar { padding: 24px; }

  /* Areas */
  .areas__grid { gap: 8px; }
  .area { padding: 10px 16px; font-size: 14px; }
  .areas__cta { flex-direction: column; gap: 12px; }
  .areas__cta .btn { width: 100%; min-height: 52px; }

  /* Bookcard */
  .bookcard__inner { padding: 30px 22px; gap: 26px; }
  .bookcard__left h3 { font-size: 24px; }
  .bookcard__left > p { font-size: 15px; margin-bottom: 18px; }
  .bookcard__perks li { font-size: 13.5px; }
  .bookcard__cta { flex-direction: column; }
  .bookcard__cta .btn { width: 100%; min-height: 52px; }
  .bookcard__right { padding: 22px 18px; }
  .bookcard__step { padding: 12px 14px; gap: 12px; }
  .bookcard__step strong { font-size: 14px; }
  .bookcard__step small { font-size: 12px; }
  .bookcard__step span { width: 32px; height: 32px; font-size: 14px; }

  /* Contact */
  .contact__list i { width: 44px; height: 44px; font-size: 16px; }
  .contact__list strong, .contact__list a strong { font-size: 15.5px; }
  .contact__map { height: 440px; }
  .contact__social a { width: 42px; height: 42px; font-size: 15px; }
  /* Map card compaction on phones */
  .map-card__info { left: 10px; right: 10px; bottom: 10px; padding: 14px 16px; gap: 10px; border-radius: 16px; }
  .map-card__logo { width: 38px; height: 38px; font-size: 15px; }
  .map-card__title strong { font-size: 14.5px; }
  .map-card__title span { font-size: 11.5px; }
  .map-card__btn { padding: 11px 16px; font-size: 13.5px; }
  .map-card__badge { top: 12px; left: 12px; padding: 7px 12px; font-size: 11px; }
  .map-card__pin { top: 30%; }

  /* Footer — 2 cols (QL+OS), brand and GIT full width */
  .footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 20px; padding: 48px 16px 28px; }
  .footer__col--brand { grid-column: span 2; text-align: center; }
  .footer__col--brand p { margin: 16px auto 18px; max-width: 360px; }
  .footer__col--brand .footer__social { justify-content: center; }
  .footer__col:last-child { grid-column: span 2; }
  .footer__col h4 { font-size: 14px; margin-bottom: 12px; }
  .footer__col ul { gap: 8px; }
  .footer__col ul a { font-size: 13.5px; }
  .footer__contact li, .footer__hours li { font-size: 13.5px; }
  .footer__logo { height: 64px; }
  .footer__bottom { padding: 18px 0; }
  .footer__bottom-inner { flex-direction: column; text-align: center; font-size: 12px; }

  /* Floating + Mobilebar */
  .floating { display: none; }
  .mobilebar { display: grid; }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .mobilebar__btn { min-height: 50px; font-size: 15.5px; }

  /* Activity popup — sit above mobilebar */
  .activity {
    left: 10px; right: 10px; bottom: calc(82px + env(safe-area-inset-bottom));
    max-width: none; padding: 12px 14px; gap: 10px;
  }
  .activity__avatar { width: 40px; height: 40px; font-size: 16px; }
  .activity__body strong { font-size: 13.5px; }
  .activity__body span { font-size: 12.5px; }
  .activity__body small { font-size: 11px; }
}

/* ---- 480px: small phones ---- */
@media (max-width: 480px) {
  .section { padding: 52px 0; }
  .section__head { margin-bottom: 30px; }
  .section__title { font-size: clamp(24px, 7vw, 30px); }
  .section__sub { font-size: 14.5px; }
  .section__tag { font-size: 11.5px; padding: 5px 12px; }
  .container { padding: 0 14px; }

  /* Hero compact */
  .hero { padding: 36px 0 0; }
  .hero__inner { gap: 24px; padding-bottom: 40px; }
  .hero__title { font-size: 28px; line-height: 1.1; }
  .hero__sub { font-size: 15px; margin-bottom: 22px; }
  .hero__bullets li { font-size: 14px; }
  .hero__cta .btn { font-size: 14.5px; padding: 14px 22px; }

  .hero__visual-frame { aspect-ratio: 4/3.2; border-radius: 20px; }
  .hero__visual-card { padding: 8px 12px; min-width: 110px; }
  .hero__visual-card strong { font-size: 14.5px; }
  .hero__visual-card-stars { font-size: 12.5px; letter-spacing: 1.5px; }
  .hero__visual-card span { font-size: 10.5px; }
  .hero__visual-cta-text strong { font-size: 13.5px; }
  .hero__visual-cta-text span { font-size: 11px; }

  /* Hero stats — 2x2 + 1 centered */
  .hero__stats-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .stat:nth-child(4) { grid-column: 1 / span 1; }
  .stat:nth-child(5) { grid-column: 1 / span 2; }
  .stat strong { font-size: 19px; }

  /* Service card */
  .service-card__body { padding: 18px; }
  .service-card__body h3 { font-size: 18px; }
  .service-card__body p { font-size: 13.5px; }

  /* Offer card */
  .offer-card { padding: 26px 20px; }
  .offer-card__amount { font-size: 44px; }

  /* About — fix overlap on small phones */
  .about__media-secondary { width: 50%; right: 4px; bottom: 12px; border-width: 4px; }
  .about__media-stamp { right: 4px; padding: 8px 12px; }
  .about__media-stamp strong { font-size: 13px; }
  .about__media-stamp span { font-size: 11px; }
  .about__media-stamp i { width: 32px; height: 32px; font-size: 14px; border-radius: 10px; }

  /* Emergency */
  .emergency__icon { width: 52px; height: 52px; font-size: 20px; border-radius: 14px; }
  .emergency__text h3 { font-size: 19px; }
  .emergency__text p { font-size: 14px; }

  /* Brands */
  .brands__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .brand { height: 78px; }

  /* Process */
  .process-step__num { padding: 5px 12px; font-size: 13px; }
  .process-step__icon { width: 58px; height: 58px; font-size: 22px; }

  /* Bookcard */
  .bookcard__inner { padding: 26px 18px; }
  .bookcard__badge { font-size: 11px; padding: 6px 12px; margin-bottom: 14px; }
  .bookcard__left h3 { font-size: 21px; }
  .bookcard__steps { gap: 12px; }
  .bookcard__rating strong { font-size: 19px; }
  .bookcard__stars { font-size: 18px; letter-spacing: 2px; }

  /* Contact list */
  .contact__list li { gap: 12px; }
  .contact__list small { font-size: 11.5px; }
  .contact__list span { font-size: 13px; }

  /* Reviews */
  .review { padding: 22px 20px; }
  .review__avatar { width: 44px; height: 44px; font-size: 15px; }
  .review p { font-size: 13.5px; }

  /* FAQ */
  .faq-item summary { font-size: 14.5px; padding: 16px 18px; padding-right: 48px; }
  .faq-item summary::after { right: 14px; width: 24px; height: 24px; font-size: 14px; }
  .faq-item p { padding: 0 18px 16px; font-size: 14px; }
  .faq__sidebar { padding: 22px 20px; }

  /* Areas */
  .area { padding: 9px 14px; font-size: 13.5px; }

  /* Footer */
  .footer__inner { gap: 24px 16px; padding: 40px 14px 24px; }
  .footer__col h4 { font-size: 13.5px; }
  .footer__col ul a { font-size: 13px; }
  .footer__logo { height: 58px; }

  /* Topbar — make promo single-line if tiny */
  .topbar__promo span { font-size: 11px; }

  /* Mobilebar */
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .mobilebar__btn { font-size: 14.5px; min-height: 48px; }
  .mobilebar { padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); gap: 8px; }
}

/* ---- 380px: xs phones (iPhone SE etc.) ---- */
@media (max-width: 380px) {
  .container { padding: 0 12px; }
  .hero__title { font-size: 26px; }
  .section__title { font-size: 24px; }
  .topbar__promo span { font-size: 10.5px; }
  .header__cta { padding: 10px 14px; font-size: 13px; }
  .header__cta i { font-size: 12px; }
  .logo img { height: 50px; }

  .hero__visual-card { min-width: 100px; padding: 7px 11px; }
  .hero__visual-card strong { font-size: 14px; }

  .stat strong { font-size: 17px; }
  .stat span { font-size: 10.5px; }

  .offer-card__amount { font-size: 40px; }
  .why-card { padding: 22px; }
  .service-card__body h3 { font-size: 17px; }

  .midcta__text h2 { font-size: 26px; }

  .brands__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .brand { height: 72px; padding: 12px; }
  .brand img { max-height: 36px; }

  .about__media-secondary { width: 45%; }
  .about__media-stamp { right: -2px; padding: 7px 10px; gap: 8px; }
  .about__media-stamp strong { font-size: 12px; }
  .about__media-stamp span { font-size: 10.5px; }

  /* Kvoka modal — extra compaction */
  .kvoka { padding: 10px; }
  .kvoka__dialog { padding: 28px 18px 20px; border-radius: 20px; }
  .kvoka__title { font-size: 22px; }
  .kvoka__monogram { width: 38px; height: 38px; font-size: 19px; }
  .kvoka__brandtxt strong { font-size: 15px; }
  .kvoka__brandtxt small { font-size: 10px; }
  .kvoka__stat strong { font-size: 16px; }
  .kvoka__stat span { font-size: 10px; }
  .kvoka__features li { font-size: 13px; }
  .kvoka__btn { padding: 15px 20px; font-size: 14.5px; }
  .kvoka__close { width: 34px; height: 34px; top: 12px; right: 12px; }
}

/* Landscape phones (e.g. when user rotates) — keep hero readable */
@media (max-height: 480px) and (orientation: landscape) {
  .hero { padding: 30px 0 0; }
  .hero__inner { padding-bottom: 30px; }
  .kvoka__dialog { max-height: 96vh; }
}

/* =================================================================
   ✦ WOW MOTION & DESIGN SYSTEM ✦
   Premium organic animations — all respect prefers-reduced-motion
   ================================================================= */

/* ---- Scroll progress bar ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  z-index: 200;
  background: linear-gradient(90deg, var(--teal-500) 0%, var(--aqua) 40%, var(--aqua-glow) 100%);
  box-shadow: 0 0 12px rgba(20, 184, 184, 0.7);
  transition: width .12s linear;
  border-radius: 0 3px 3px 0;
  pointer-events: none;
}

/* ---- Animated gradient shimmer for accent headings ---- */
.text-glow,
.text-shimmer {
  background: linear-gradient(100deg, var(--aqua-glow) 0%, var(--teal-400) 25%, var(--aqua-glow) 50%, var(--teal-400) 75%, var(--aqua-glow) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerFlow 6s linear infinite;
}
@keyframes shimmerFlow {
  to { background-position: 220% center; }
}
/* ---- Directional reveals (richer than the base fade) ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }

[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="zoom"]  { transform: scale(.9); }
[data-reveal="up"]    { transform: translateY(40px); }

/* Count-up number pop when activated */
.stat strong.counted {
  animation: numberPop .6s cubic-bezier(.2,.8,.3,1.2);
}
@keyframes numberPop {
  0% { transform: scale(.7); opacity: .4; }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}

/* ---- 3D Tilt on cards ---- */
.tilt {
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(var(--ry, 0deg)) rotateY(var(--rx, 0deg));
  transition: transform .25s cubic-bezier(.2,.7,.3,1);
  will-change: transform;
}

/* ---- Magnetic buttons ---- */
.btn, .hero__visual-cta, .mobilebar__btn {
  will-change: transform;
}

/* ---- Shine sweep on primary buttons (sits under the label) ---- */
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  transform: skewX(-20deg);
  z-index: 0;
  pointer-events: none;
}
.btn--primary:hover::after { animation: btnSweep .85s ease; }
@keyframes btnSweep {
  to { left: 130%; }
}

/* ---- Brands infinite marquee ---- */
.brands__marquee {
  display: none;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brands--marquee-on .brands__grid { display: none; }
.brands--marquee-on .brands__marquee { display: block; }

.brands__track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 6px 8px;
  animation: marqueeScroll 38s linear infinite;
}
.brands__track:nth-child(2) {
  animation-direction: reverse;
  animation-duration: 46s;
  margin-top: 16px;
}
.brands__marquee:hover .brands__track { animation-play-state: paused; }
.brands__track .brand {
  flex: 0 0 auto;
  width: 168px;
  height: 104px;
}
@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}
@media (max-width: 720px) {
  .brands__track .brand { width: 130px; height: 84px; }
  .brands__track { gap: 12px; animation-duration: 28s; }
  .brands__track:nth-child(2) { animation-duration: 34s; }
}

/* ---- Floating call button gentle bob ---- */
.floating__btn--call { animation: floatBob 3s ease-in-out infinite; }
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ---- Service card icon arrow nudge already exists; add image zoom shine ---- */
.service-card__img { position: relative; }
.service-card__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s ease;
  pointer-events: none;
}
.service-card:hover .service-card__img::after { transform: translateX(100%); }

/* ---- Why-card icon bounce on hover ---- */
.why-card:hover .why-card__icon { animation: iconWobble .6s ease; }
@keyframes iconWobble {
  0%, 100% { transform: translateY(0) rotate(0); }
  30% { transform: translateY(-5px) rotate(-6deg); }
  60% { transform: translateY(-2px) rotate(4deg); }
}

/* ---- Process step icon pulse ring ---- */
.process-step__icon { position: relative; }
.process-step__icon::after {
  content: '';
  position: absolute; inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--aqua);
  opacity: 0;
}
.process-step:hover .process-step__icon::after { animation: ringPulse 1s ease-out; }
@keyframes ringPulse {
  0% { opacity: .8; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.35); }
}

/* ---- Area pills stagger float on hover (handled by existing hover) + subtle entrance ---- */

/* ---- Hero scroll-cue ---- */
.hero__scrollcue {
  position: absolute;
  bottom: 96px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 600;
  pointer-events: none;
}
.hero__scrollcue-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}
.hero__scrollcue-mouse::before {
  content: '';
  position: absolute; top: 7px; left: 50%;
  width: 3px; height: 7px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--aqua-glow);
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  60% { opacity: 1; transform: translateY(10px); }
  100% { opacity: 0; transform: translateY(12px); }
}
@media (max-width: 1024px) { .hero__scrollcue { display: none; } }

/* ---- Parallax target ---- */
.hero__bg, .hero__overlay { will-change: transform; }

/* ---- Gallery item shimmer load ---- */
.gallery__item img,
.service-card__img img,
.hero__visual-frame img { backface-visibility: hidden; }

/* ---- Reveal: emergency icon continuous already; add CTA glow pulse ---- */
.emergency .btn--primary { position: relative; }
.emergency .btn--primary::before { z-index: 0; }

/* =================================================================
   ✦ THANK YOU / CONVERSION PAGE ✦
   ================================================================= */
.ty-page {
  min-height: 100vh;
  display: flex; flex-direction: column;
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
}
.ty-page__bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 55% 45% at 20% 15%, rgba(20, 184, 184, 0.30), transparent 65%),
    radial-gradient(ellipse 55% 50% at 85% 90%, rgba(94, 234, 212, 0.18), transparent 65%);
  pointer-events: none;
}
.ty-page__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><path d='M0 39.5h40M39.5 0v40' stroke='rgba(255,255,255,0.04)' stroke-width='1' fill='none'/></svg>");
  background-size: 40px 40px;
  opacity: .5;
}

/* Minimal header */
.ty-header {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.ty-header .logo img { height: 56px; width: auto; }
.ty-header__phone {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  color: #fff; font-weight: 800; font-size: 15px;
  transition: all .25s ease;
}
.ty-header__phone:hover { background: rgba(20,184,184,0.18); border-color: var(--aqua); color: #fff; }
.ty-header__phone i { color: var(--aqua-glow); }

/* Body / centered card */
.ty-main {
  position: relative; z-index: 2;
  flex: 1;
  display: grid; place-items: center;
  padding: 40px 20px 64px;
}
.ty-card {
  width: 100%; max-width: 660px;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-radius: 28px;
  padding: 56px 44px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.6), 0 0 0 1px rgba(20,184,184,0.08) inset;
  color: #fff;
  animation: tyCardIn .7s cubic-bezier(.2,.8,.25,1) both;
}
@keyframes tyCardIn {
  from { opacity: 0; transform: translateY(26px) scale(.97); }
  to { opacity: 1; transform: none; }
}

/* Animated check */
.ty-check {
  width: 104px; height: 104px;
  margin: 0 auto 28px;
  position: relative;
}
.ty-check svg { width: 100%; height: 100%; }
.ty-check__circle {
  fill: none;
  stroke: url(#tyGrad);
  stroke-width: 5;
  stroke-dasharray: 295;
  stroke-dashoffset: 295;
  animation: tyDraw .8s ease forwards .2s;
}
.ty-check__tick {
  fill: none;
  stroke: #fff;
  stroke-width: 7;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: tyDraw .45s ease forwards .9s;
}
@keyframes tyDraw { to { stroke-dashoffset: 0; } }
.ty-check__halo {
  position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
  animation: tyHalo 2.4s ease-out infinite 1.3s;
}
@keyframes tyHalo {
  0% { box-shadow: 0 0 0 0 rgba(20,184,184,0.45); }
  70% { box-shadow: 0 0 0 28px rgba(20,184,184,0); }
  100% { box-shadow: 0 0 0 0 rgba(20,184,184,0); }
}

.ty-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; margin-bottom: 18px;
  background: rgba(34,197,94,0.14);
  border: 1px solid rgba(34,197,94,0.34);
  border-radius: 999px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: #5EEAD4;
}
.ty-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 0 0 rgba(34,197,94,.55); animation: pulse 1.6s infinite; }

.ty-card h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.08;
  margin-bottom: 14px;
}
.ty-card h1 .text-glow { font-weight: 800; }
.ty-card__lead {
  font-size: 17px; line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 500px; margin: 0 auto 30px;
}
.ty-card__lead strong { color: #fff; }

/* Next steps */
.ty-steps {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px;
  margin-bottom: 32px; text-align: left;
}
.ty-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 18px 16px;
}
.ty-step i {
  display: grid; place-items: center;
  width: 40px; height: 40px; margin-bottom: 10px;
  background: var(--grad-primary); color: #fff;
  border-radius: 11px; font-size: 16px;
  box-shadow: var(--shadow-teal);
}
.ty-step strong { display: block; font-size: 14.5px; color: #fff; margin-bottom: 3px; }
.ty-step span { display: block; font-size: 12.5px; color: rgba(255,255,255,0.62); line-height: 1.45; }

.ty-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.ty-cta .btn--ghost {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.ty-cta .btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--aqua); color: #fff; }

.ty-meta {
  margin-top: 26px; padding-top: 22px;
  border-top: 1px dashed rgba(255,255,255,0.12);
  font-size: 13.5px; color: rgba(255,255,255,0.6);
}
.ty-meta a { color: var(--aqua-glow); font-weight: 700; }

/* Confetti burst (CSS only, decorative) */
.ty-confetti { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.ty-confetti i {
  position: absolute; top: -12px;
  width: 9px; height: 14px; border-radius: 2px;
  opacity: 0;
  animation: tyFall linear forwards;
}
@keyframes tyFall {
  0% { opacity: 0; transform: translateY(-10px) rotate(0deg); }
  10% { opacity: 1; }
  100% { opacity: 0; transform: translateY(102vh) rotate(540deg); }
}

/* Slim footer */
.ty-foot {
  position: relative; z-index: 2;
  text-align: center; padding: 24px 20px;
  color: rgba(255,255,255,0.5); font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ty-foot a { color: rgba(255,255,255,0.7); }
.ty-foot a:hover { color: var(--aqua-glow); }

@media (max-width: 600px) {
  .ty-card { padding: 40px 22px; border-radius: 22px; }
  .ty-steps { grid-template-columns: 1fr; gap: 10px; }
  .ty-step { display: flex; align-items: center; gap: 12px; padding: 14px; }
  .ty-step i { margin-bottom: 0; flex-shrink: 0; }
  .ty-cta { flex-direction: column; }
  .ty-cta .btn { width: 100%; }
  .ty-header .logo img { height: 46px; }
  .ty-header__phone { padding: 9px 14px; font-size: 14px; }
}

/* =================================================================
   ✦ LEGAL PAGES (Privacy Policy / Terms) ✦
   ================================================================= */
.legal-hero {
  position: relative;
  background: var(--grad-dark);
  color: #fff;
  overflow: hidden;
  padding: 64px 0 56px;
}
.legal-hero__bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 55% 60% at 18% 20%, rgba(20, 184, 184, 0.28), transparent 65%),
    radial-gradient(ellipse 50% 50% at 90% 90%, rgba(94, 234, 212, 0.16), transparent 65%);
  pointer-events: none;
}
.legal-hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><path d='M0 39.5h40M39.5 0v40' stroke='rgba(255,255,255,0.04)' stroke-width='1' fill='none'/></svg>");
  background-size: 40px 40px; opacity: .5;
}
.legal-hero__inner { position: relative; z-index: 2; max-width: 880px; }
.legal-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.6);
  margin-bottom: 18px; flex-wrap: wrap;
}
.legal-breadcrumb a { color: var(--aqua-glow); font-weight: 600; }
.legal-breadcrumb a:hover { color: #fff; }
.legal-breadcrumb i { font-size: 10px; opacity: .6; }
.legal-hero__icon {
  display: inline-grid; place-items: center;
  width: 60px; height: 60px;
  background: var(--grad-primary); color: #fff;
  border-radius: 16px; font-size: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-teal);
}
.legal-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.08;
  margin-bottom: 14px;
}
.legal-hero__lead { font-size: 16.5px; line-height: 1.6; color: rgba(255,255,255,0.78); max-width: 720px; }
.legal-hero__updated {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; padding: 8px 15px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.legal-hero__updated i { color: var(--aqua-glow); }

.legal { background: var(--bg); }
.legal__inner {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  padding: 64px 0 80px;
}

/* Sticky table of contents */
.legal__toc {
  position: sticky; top: 100px;
  align-self: start;
}
.legal__toc h4 {
  font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); font-weight: 700; margin-bottom: 14px;
  padding-left: 14px;
}
.legal__toc ol { list-style: none; counter-reset: toc; display: grid; gap: 2px; }
.legal__toc a {
  display: block;
  padding: 9px 14px;
  font-size: 13.5px; font-weight: 600; line-height: 1.35;
  color: var(--muted);
  border-left: 2px solid var(--line);
  transition: all .2s ease;
}
.legal__toc a:hover { color: var(--aqua-deep); border-left-color: var(--aqua); background: var(--teal-50); }
.legal__toc a.active { color: var(--aqua-deep); border-left-color: var(--aqua); background: var(--teal-50); font-weight: 700; }

/* Content */
.legal__content { min-width: 0; }
.legal__intro {
  font-size: 16.5px; line-height: 1.7; color: var(--ink-2);
  padding: 24px 26px; margin-bottom: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--aqua);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.legal__intro p + p { margin-top: 12px; }

.legal-section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 100px;
}
.legal-section:last-child { border-bottom: none; }
.legal-section__head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.legal-section__num {
  flex-shrink: 0;
  display: grid; place-items: center;
  width: 44px; height: 44px;
  background: var(--grad-primary); color: #fff;
  border-radius: 12px; font-size: 17px;
  box-shadow: var(--shadow-teal);
}
.legal-section__head h2 {
  font-size: clamp(20px, 2.4vw, 25px);
  font-weight: 800; letter-spacing: -.01em; color: var(--ink);
  line-height: 1.2;
}
.legal-section__head small {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--aqua-deep); margin-bottom: 2px;
}

/* Prose */
.legal-prose { color: var(--muted); font-size: 15.5px; line-height: 1.75; }
.legal-prose p { margin-bottom: 14px; }
.legal-prose p:last-child { margin-bottom: 0; }
.legal-prose strong { color: var(--ink); font-weight: 700; }
.legal-prose em { font-style: italic; }
.legal-prose h3 {
  font-size: 16px; font-weight: 800; color: var(--ink);
  margin: 20px 0 10px;
}
.legal-prose ul { list-style: none; display: grid; gap: 10px; margin: 4px 0 16px; }
.legal-prose ul li {
  position: relative; padding-left: 28px;
  font-size: 15px; line-height: 1.65;
}
.legal-prose ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 0; top: 1px;
  color: var(--aqua-deep); font-size: 12px;
}
.legal-prose a { color: var(--aqua-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.legal-prose a:hover { color: var(--teal-700); }

/* Bottom contact CTA */
.legal-cta {
  margin-top: 40px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px;
  padding: 30px 32px;
  background: var(--grad-dark); color: #fff;
  border-radius: var(--radius-xl);
  position: relative; overflow: hidden;
}
.legal-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 15% 50%, rgba(20,184,184,0.25), transparent 60%);
}
.legal-cta__icon {
  position: relative; z-index: 1;
  display: grid; place-items: center; width: 56px; height: 56px;
  background: var(--grad-primary); border-radius: 14px; font-size: 22px;
  box-shadow: var(--shadow-teal);
}
.legal-cta__text { position: relative; z-index: 1; }
.legal-cta__text h3 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.legal-cta__text p { font-size: 14.5px; color: rgba(255,255,255,0.75); }
.legal-cta__btns { position: relative; z-index: 1; display: flex; gap: 10px; flex-wrap: wrap; }
.legal-cta__btns .btn--ghost { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); color: #fff; }
.legal-cta__btns .btn--ghost:hover { background: rgba(255,255,255,0.16); border-color: var(--aqua); color: #fff; }

@media (max-width: 1024px) {
  .legal__inner { grid-template-columns: 1fr; gap: 24px; padding: 40px 0 60px; }
  .legal__toc {
    position: static;
    background: var(--white); border: 1px solid var(--line);
    border-radius: 16px; padding: 18px 16px;
    box-shadow: var(--shadow-sm);
  }
  .legal__toc ol { grid-template-columns: 1fr 1fr; gap: 2px 16px; }
}
@media (max-width: 720px) {
  .legal-hero { padding: 44px 0 40px; }
  .legal__toc ol { grid-template-columns: 1fr; }
  .legal-section__num { width: 38px; height: 38px; font-size: 15px; border-radius: 10px; }
  .legal-cta { grid-template-columns: 1fr; text-align: center; gap: 16px; padding: 26px 20px; }
  .legal-cta__icon { margin: 0 auto; }
  .legal-cta__btns { justify-content: center; }
  .legal-cta__btns .btn { width: 100%; }
}

/* =================================================================
   ✦ REDUCED MOTION — disable all non-essential animation ✦
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .brands--marquee-on .brands__grid { display: grid; }
  .brands--marquee-on .brands__marquee { display: none; }
  .scroll-progress { display: none; }
  .text-glow, .text-shimmer { animation: none; }
  .hero__scrollcue { display: none; }
  .floating__btn--call { animation: none; }
  .ty-confetti { display: none; }
  .ty-check__circle, .ty-check__tick { stroke-dashoffset: 0 !important; animation: none !important; }
  .ty-card { animation: none !important; }
}
