/* ==========================================================================
   LONE STAR AIR & HEAT — styles.css
   Design system: navy #0B2A4A · blue #1EA7E1 · orange #FF6A2C (CTA/urgency only)
   Type: Space Grotesk (display) + Inter (body)
   Motion: transform/opacity only · cubic-bezier(0.22,1,0.36,1) · 400–800ms
   ========================================================================== */

/* --------------------------------------------------------------------------
   0 · TOKENS + RESET
   -------------------------------------------------------------------------- */
:root {
  --navy: #0B2A4A;
  --navy-2: #0E3358;          /* lighter navy surface */
  --navy-deep: #071D33;       /* footer / deep surfaces */
  --blue: #1EA7E1;
  --orange: #FF6A2C;
  --orange-hover: #FF7C46;    /* same hue, lifted */
  --bg: #F5F7FA;
  --white: #FFFFFF;
  --ink: #1F2A37;
  --muted: #6B7280;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --container: 1180px;
  --header-h: 76px;

  /* SVG texture: faint diagonal lines used on photo placeholders */
  --texture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14'%3E%3Cpath d='M-3 17 17 -3M-3 10 10 -3M4 17 17 4' stroke='%23ffffff' stroke-opacity='.05' stroke-width='1'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }

/* `hidden` must always win, even over display:flex components */
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  font: 400 1rem/1.65 var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote, fieldset, address {
  margin: 0;
  padding: 0;
}
ul, ol { list-style: none; }
fieldset { border: 0; min-width: 0; }
legend { padding: 0; display: block; width: 100%; float: none; }
address { font-style: normal; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; }
input, select, button { font-family: inherit; }
a { color: inherit; }

::selection { background: var(--blue); color: var(--white); }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 300;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-72px);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.skip-link:focus-visible {
  transform: none;
  opacity: 1;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

/* --------------------------------------------------------------------------
   1 · TYPE + SHARED PIECES
   -------------------------------------------------------------------------- */
.section { padding-block: clamp(76px, 11vw, 136px); }

.section-title {
  font: 700 clamp(1.9rem, 1.1rem + 2.6vw, 3rem)/1.08 var(--font-display);
  letter-spacing: -0.02em;
  color: var(--navy);
  text-wrap: balance;
}

.section-sub {
  margin-top: 18px;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 56ch;
  text-wrap: pretty;
}
.section-sub-strong { color: var(--ink); font-weight: 500; }

.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head-center {
  margin-inline: auto;
  text-align: center;
}
.section-head-center .section-sub { margin-inline: auto; }
.section-head-center .thermo-label { margin-inline: auto; }

/* Thermostat-style section label */
.thermo-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 9px 16px;
  border: 1px solid rgba(30, 167, 225, 0.35);
  border-radius: 999px;
  font: 600 0.72rem/1 var(--font-display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}
.thermo-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 2.4s var(--ease) infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

/* Lone-star divider between sections */
.star-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.star-divider::before,
.star-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(11, 42, 74, 0.12);
}
.star-divider svg {
  width: 16px; height: 16px;
  color: rgba(11, 42, 74, 0.3);
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 26px;
  border: 0;
  border-radius: var(--radius);
  font: 600 1rem/1.2 var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              background-color 0.4s var(--ease), border-color 0.4s var(--ease),
              color 0.4s var(--ease);
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 106, 44, 0.35);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 106, 44, 0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 42, 74, 0.18);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.75);
  transform: translateY(-2px);
}

.btn-lg {
  min-height: 56px;
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* Selection chips (quote calculator + booking modal) */
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid rgba(11, 42, 74, 0.22);
  border-radius: var(--radius);
  font: 600 0.98rem/1.3 var(--font-body);
  color: var(--navy);
  cursor: pointer;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              border-color 0.4s var(--ease), background-color 0.4s var(--ease),
              color 0.4s var(--ease);
}
.chip:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  box-shadow: 0 8px 20px rgba(11, 42, 74, 0.12);
}
.chip.is-selected {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* Language toggle pill (dark surfaces) */
.lang-toggle {
  display: inline-flex;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
}
.lang-toggle button {
  min-width: 42px;
  padding: 9px 14px;
  border: 0;
  background: transparent;
  border-radius: 999px;
  font: 700 0.78rem/1 var(--font-body);
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}
.lang-toggle button[aria-pressed="true"] {
  background: var(--blue);
  color: var(--white);
}

/* Photo placeholder block — swap for real photography */
.ph {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    var(--texture),
    radial-gradient(120% 90% at 80% 10%, rgba(30, 167, 225, 0.25), transparent 55%),
    linear-gradient(160deg, var(--navy-2), var(--navy) 70%);
  color: rgba(255, 255, 255, 0.45);
}
.ph-icon { width: 64px; height: 64px; }
.ph-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font: 600 0.72rem/1 var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

/* Scroll reveal system */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal-fade { transform: none; }
.reveal.in {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   2 · HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  transition: background-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(11, 42, 74, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 34px rgba(7, 20, 35, 0.4);
}

.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: height 0.45s var(--ease);
}
.site-header.is-scrolled .header-inner { height: 62px; }

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
}
.logo-mark {
  width: 40px; height: 40px;
  transition: transform 0.45s var(--ease);
}
.site-header.is-scrolled .logo-mark { transform: scale(0.86); }
.logo-line1 {
  display: block;
  font: 700 1.14rem/1 var(--font-display);
  letter-spacing: -0.01em;
}
.logo-line2 {
  display: block;
  margin-top: 3px;
  font: 600 0.58rem/1 var(--font-body);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--blue);
}

.main-nav { display: flex; align-items: center; gap: 4px; margin-inline: auto; }
.main-nav > a {
  position: relative;
  padding: 10px 14px;
  font: 500 0.95rem/1 var(--font-body);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.4s var(--ease);
}
.main-nav > a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.main-nav > a:hover { color: var(--white); }
.main-nav > a:hover::after { transform: scaleX(1); }

.nav-drawer-extras { display: none; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
}
.header-phone svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }
.header-phone-label {
  display: block;
  font: 600 0.62rem/1 var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 3px;
}
.header-phone-number {
  display: block;
  font: 700 0.98rem/1 var(--font-display);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Hamburger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}
.nav-toggle-bar {
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
@media (max-width: 1023px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(340px, 88vw);
    margin: 0;
    padding: 104px 12px 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--navy-2);
    box-shadow: -24px 0 60px rgba(7, 20, 35, 0.45);
    transform: translateX(103%);
    transition: transform 0.5s var(--ease);
    z-index: 98;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav > a {
    font: 600 1.25rem/1.2 var(--font-display);
    padding: 15px 20px;
    border-radius: var(--radius);
  }
  .main-nav > a::after { display: none; }
  .main-nav > a:hover { background: rgba(255, 255, 255, 0.06); }

  .nav-drawer-extras {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 24px;
    padding: 24px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .nav-phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font: 700 1.1rem/1 var(--font-display);
    text-decoration: none;
  }
  .nav-phone-link svg { width: 20px; height: 20px; color: var(--blue); }

  .nav-toggle { display: flex; }
  .header-lang { display: none; }
}

.btn-header { white-space: nowrap; }

@media (max-width: 767px) {
  .btn-header { display: none; }
  .header-phone-label { display: none; }
  .header-phone-number { font-size: 0.92rem; }
}

@media (max-width: 359px) {
  .logo-text { display: none; }
}

/* --------------------------------------------------------------------------
   3 · HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: -70px 0;
  will-change: transform;
}
/* SWAP: technician / truck hero photo — replace this gradient block with
   background-image: url(assets/hero.jpg); background-size: cover; */
.hero-photo {
  position: absolute;
  inset: 0;
  background:
    var(--texture),
    radial-gradient(90% 70% at 85% 20%, rgba(255, 106, 44, 0.16), transparent 55%),
    radial-gradient(70% 60% at 15% 85%, rgba(30, 167, 225, 0.22), transparent 60%),
    linear-gradient(155deg, #10365C 0%, var(--navy) 55%, #082036 100%);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 35, 0.72), rgba(7, 20, 35, 0.15) 65%),
    linear-gradient(180deg, rgba(11, 42, 74, 0.25), rgba(11, 42, 74, 0.55) 85%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: clamp(120px, 16vh, 168px);
  padding-bottom: clamp(84px, 12vh, 140px);
}

.hero-eyebrow {
  font: 700 0.78rem/1.4 var(--font-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 26px;
}

.hero-headline {
  font: 700 clamp(2.4rem, 1.2rem + 5.4vw, 4.5rem)/1.02 var(--font-display);
  letter-spacing: -0.02em;
  max-width: 15ch;
  text-wrap: balance;
}
/* word-mask reveal: JS wraps each word in .hw > span */
.hw {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.13em;
  margin-bottom: -0.13em;
}
.hw > span {
  display: inline-block;
  transform: translateY(112%);
  transition: transform 0.8s var(--ease);
  transition-delay: var(--wd, 0s);
}
.hero-headline.is-live .hw > span { transform: translateY(0); }

.hero-sub {
  margin-top: 26px;
  max-width: 50ch;
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  color: rgba(255, 255, 255, 0.85);
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font: 600 0.85rem/1.3 var(--font-body);
  color: rgba(255, 255, 255, 0.92);
}
.hero-chips svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }

/* Thermostat "feels like" badge */
.temp-badge {
  position: absolute;
  z-index: 3;
  top: clamp(88px, 12vh, 116px);
  right: clamp(16px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  padding: 12px 18px 14px;
  border: 1px solid rgba(30, 167, 225, 0.4);
  border-radius: 14px;
  background: rgba(7, 20, 35, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.temp-badge-label {
  font: 600 0.6rem/1 var(--font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}
.temp-badge-value {
  margin-top: 6px;
  font: 700 1.7rem/1 var(--font-display);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.temp-badge-deg { color: var(--orange); font-size: 0.62em; vertical-align: 0.28em; }
.temp-badge-dot {
  position: absolute;
  top: 10px; right: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 1.6s var(--ease) infinite;
}
@media (max-width: 520px) {
  .temp-badge { padding: 9px 13px 10px; top: 84px; }
  .temp-badge-value { font-size: 1.3rem; }
}

/* --------------------------------------------------------------------------
   4 · TRUST BAR
   -------------------------------------------------------------------------- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(11, 42, 74, 0.08);
  padding-block: 30px;
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 20px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-badge > svg {
  width: 27px; height: 27px;
  color: var(--blue);
  flex-shrink: 0;
}
.trust-badge strong {
  display: block;
  font: 700 0.94rem/1.2 var(--font-display);
  color: var(--navy);
}
.trust-badge em {
  display: block;
  font: 400 0.76rem/1.3 var(--font-body);
  font-style: normal;
  color: var(--muted);
}
@media (min-width: 700px) { .trust-inner { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .trust-inner { grid-template-columns: repeat(6, auto); justify-content: space-between; } }

/* --------------------------------------------------------------------------
   5 · SEASONAL BANNER
   -------------------------------------------------------------------------- */
.season-banner {
  background: var(--orange);
  color: var(--white);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.season-banner.is-hiding {
  opacity: 0;
  transform: translateY(-8px);
}
.season-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-block: 11px;
}
.season-inner p {
  flex: 1;
  font: 500 0.92rem/1.5 var(--font-body);
}
.season-link {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 2px;
  border: 0;
  background: none;
  color: var(--white);
  font: 700 0.92rem/1.4 var(--font-body);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  white-space: nowrap;
}
.season-dismiss {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  cursor: pointer;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.season-dismiss:hover { background: rgba(255, 255, 255, 0.28); transform: translateY(-1px); }
.season-dismiss svg { width: 15px; height: 15px; }

/* --------------------------------------------------------------------------
   6 · SERVICES — asymmetric grid
   -------------------------------------------------------------------------- */
.services-section { background: var(--bg); }

.services-grid {
  display: grid;
  gap: 20px;
}

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(24px, 3vw, 32px);
  background: var(--white);
  border: 1px solid rgba(11, 42, 74, 0.07);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(11, 42, 74, 0.05);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(11, 42, 74, 0.13);
}
.svc-icon {
  width: 44px; height: 44px;
  color: var(--blue);
  transition: transform 0.5s var(--ease);
}
.svc-card:hover .svc-icon { transform: translateY(-3px); }
.svc-card h3 {
  font: 700 1.22rem/1.25 var(--font-display);
  letter-spacing: -0.01em;
  color: var(--navy);
}
.svc-card p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--muted);
}
.svc-link {
  margin-top: auto;
  padding-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 700 0.9rem/1.3 var(--font-body);
  color: var(--navy);
}
.svc-link svg {
  width: 17px; height: 17px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}
.svc-card:hover .svc-link svg { transform: translateX(5px); }
.svc-card:hover .svc-link { color: var(--blue); }

/* Featured card */
.svc-featured {
  background: linear-gradient(160deg, #123B66, var(--navy) 70%);
  border: 0;
  justify-content: flex-end;
  min-height: 300px;
}
.svc-featured h3 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
}
.svc-featured p { color: rgba(255, 255, 255, 0.78); max-width: 42ch; }
.svc-featured .svc-link { color: var(--white); }
.svc-featured .svc-link svg { color: var(--orange); }
.svc-featured:hover .svc-link { color: var(--white); }

/* Comfort Club card */
.svc-club {
  background: #E9F6FD;
  border-color: rgba(30, 167, 225, 0.3);
}

/* Storm strip */
.svc-storm .svc-storm-text { display: flex; flex-direction: column; gap: 8px; }

@media (min-width: 700px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-featured, .svc-storm { grid-column: 1 / -1; }
}

@media (min-width: 1040px) {
  .services-grid { grid-template-columns: repeat(6, 1fr); }
  .svc-featured { grid-column: 1 / 4; grid-row: 1 / 3; }
  .svc-card:nth-child(2) { grid-column: 4 / 7; grid-row: 1; }
  .svc-card:nth-child(3) { grid-column: 4 / 7; grid-row: 2; }
  .svc-club { grid-column: 1 / 3; grid-row: 3; }
  .svc-card:nth-child(5) { grid-column: 3 / 5; grid-row: 3; }
  .svc-card:nth-child(6) { grid-column: 5 / 7; grid-row: 3; }
  .svc-storm {
    grid-column: 1 / 7;
    grid-row: 4;
    flex-direction: row;
    align-items: center;
    gap: 28px;
  }
  .svc-storm .svc-storm-text { flex: 1; }
  .svc-storm .svc-link { margin-top: 0; padding-top: 0; white-space: nowrap; }
}

/* --------------------------------------------------------------------------
   7 · INSTANT QUOTE CALCULATOR
   -------------------------------------------------------------------------- */
.quote-section { background: var(--white); }

.quote-panel {
  max-width: 720px;
  margin-inline: auto;
  padding: clamp(26px, 5vw, 46px);
  background: var(--bg);
  border: 1px solid rgba(11, 42, 74, 0.08);
  border-radius: 24px;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.quote-panel.is-out {
  opacity: 0;
  transform: translateY(-16px);
}

.q-progress { margin-bottom: 30px; }
.q-progress-label {
  display: block;
  margin-bottom: 10px;
  font: 700 0.74rem/1 var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.q-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(11, 42, 74, 0.1);
  overflow: hidden;
}
.q-bar-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
  transform-origin: left;
  transform: scaleX(0.333);
  transition: transform 0.6s var(--ease);
}

.q-viewport {
  position: relative;
  min-height: 240px;
}
@media (min-width: 640px) { .q-viewport { min-height: 170px; } }

.q-step {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.q-step.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.q-step.is-left { transform: translateX(-48px); }

.q-question {
  font: 700 clamp(1.2rem, 2.4vw, 1.45rem)/1.25 var(--font-display);
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 22px;
}
.chip-row {
  display: grid;
  gap: 12px;
}
@media (min-width: 640px) { .chip-row { grid-template-columns: repeat(3, 1fr); } }

.q-back {
  margin-top: 26px;
  padding: 10px 6px;
  border: 0;
  background: none;
  font: 600 0.92rem/1 var(--font-body);
  color: var(--muted);
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.q-back:hover { color: var(--navy); }

/* Results */
.q-results { margin-top: 8px; }
.q-results-title {
  text-align: center;
  font: 700 clamp(1.3rem, 2.6vw, 1.7rem)/1.25 var(--font-display);
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 44px;
  text-wrap: balance;
}
.qr-grid {
  display: grid;
  gap: 22px;
  align-items: stretch;
}
@media (min-width: 900px) { .qr-grid { grid-template-columns: repeat(3, 1fr); } }

.qr-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px 26px;
  background: var(--white);
  border: 1.5px solid rgba(11, 42, 74, 0.1);
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(11, 42, 74, 0.06);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.q-results.is-in .qr-card { opacity: 1; transform: none; }
.q-results.is-in .qr-card:nth-child(2) { transition-delay: 0.1s; }
.q-results.is-in .qr-card:nth-child(3) { transition-delay: 0.2s; }

.qr-card.is-picked { border-color: var(--blue); box-shadow: 0 12px 34px rgba(30, 167, 225, 0.2); }

.qr-card h4 {
  font: 700 1.05rem/1 var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.qr-seer {
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--muted);
}
.qr-price {
  margin-top: 18px;
  font: 700 clamp(1.55rem, 2.6vw, 1.85rem)/1.1 var(--font-display);
  letter-spacing: -0.02em;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.qr-dash { opacity: 0.45; padding-inline: 2px; }
.qr-mo {
  margin-top: 6px;
  font-size: 0.92rem;
  color: var(--muted);
}
.qr-mo strong { color: var(--navy); }
.qr-feats {
  margin: 18px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.88rem;
  color: var(--ink);
}
.qr-feats li { display: flex; gap: 9px; }
.qr-feats li::before {
  content: "✓";
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}
.qr-cta {
  margin-top: auto;
  width: 100%;
  padding: 12px 14px;
  font-size: 0.88rem;
  min-height: 52px;
}

/* Best card */
.qr-best {
  background: linear-gradient(165deg, #12406E, var(--navy) 75%);
  border: 0;
  color: var(--white);
}
.qr-best h4, .qr-best .qr-price, .qr-best .qr-mo strong { color: var(--white); }
.qr-best .qr-seer { color: rgba(255, 255, 255, 0.65); }
.qr-best .qr-mo { color: rgba(255, 255, 255, 0.7); }
.qr-best .qr-feats { color: rgba(255, 255, 255, 0.88); }
@media (min-width: 900px) { .qr-best { transform: translateY(24px) scale(0.98); } .q-results.is-in .qr-best { transform: scale(1.02); } }

.qr-ribbon {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 16px;
  background: var(--orange);
  border-radius: 999px;
  font: 700 0.7rem/1 var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(255, 106, 44, 0.45);
}

.q-note {
  margin: 30px auto 0;
  max-width: 58ch;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}
.q-restart {
  display: block;
  margin: 14px auto 0;
  padding: 10px 14px;
  border: 0;
  background: none;
  font: 600 0.92rem/1 var(--font-body);
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.q-restart:hover { color: var(--blue); }

/* --------------------------------------------------------------------------
   8 · MISSED-CALL DEMO
   -------------------------------------------------------------------------- */
.mc-section {
  background:
    radial-gradient(80% 60% at 90% 10%, rgba(30, 167, 225, 0.14), transparent 55%),
    var(--navy);
  color: var(--white);
  overflow: hidden;
}
.mc-inner {
  display: grid;
  gap: 56px;
  align-items: center;
}
@media (min-width: 960px) { .mc-inner { grid-template-columns: 1.05fr 0.95fr; gap: 72px; } }

.mc-section .section-title { color: var(--white); max-width: 20ch; }
.thermo-label-dark { border-color: rgba(30, 167, 225, 0.5); }

.mc-caption {
  margin-top: 24px;
  max-width: 44ch;
  font: 600 clamp(1.05rem, 1.8vw, 1.3rem)/1.55 var(--font-body);
  color: rgba(255, 255, 255, 0.92);
  text-wrap: pretty;
}
.mc-stat {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 26px;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
.mc-stat strong {
  font: 700 2.4rem/1 var(--font-display);
  letter-spacing: -0.02em;
  color: var(--orange);
}
.mc-replay { margin-top: 34px; }
.mc-replay svg { transition: transform 0.5s var(--ease); }
.mc-replay:hover svg { transform: rotate(-180deg); }

/* Phone mockup */
.mc-phone-wrap { display: flex; justify-content: center; }
.mc-phone {
  position: relative;
  width: min(312px, 84vw);
  aspect-ratio: 9 / 18.4;
  padding: 10px;
  background: #061627;
  border-radius: 46px;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.5),
    inset 0 0 0 2px rgba(255, 255, 255, 0.09);
}
.mc-notch {
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 32%; height: 21px;
  background: #061627;
  border-radius: 999px;
  z-index: 6;
}
.mc-screen {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border-radius: 37px;
  overflow: hidden;
}
.mc-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px 8px;
  font: 600 0.68rem/1 var(--font-body);
  color: var(--muted);
}
.mc-signal {
  width: 30px; height: 8px;
  background: repeating-linear-gradient(90deg, #9AA4B0 0 4px, transparent 4px 8px);
  border-radius: 1px;
  opacity: 0.8;
}

/* Beat 1 — call screen overlay */
.mc-callscreen {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
  color: var(--white);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.mc-callscreen.is-on { opacity: 1; transform: none; }
.mc-avatar {
  position: relative;
  width: 62px; height: 62px;
  margin-bottom: 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.mc-avatar svg { width: 28px; height: 28px; color: rgba(255, 255, 255, 0.8); }
.mc-callscreen.is-ringing .mc-avatar::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 2px solid rgba(30, 167, 225, 0.65);
  border-radius: 50%;
  animation: mcRing 1.3s var(--ease) infinite;
}
@keyframes mcRing {
  0% { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.4); opacity: 0; }
}
.mc-caller { font: 700 1.15rem/1.2 var(--font-display); }
.mc-caller-loc { font-size: 0.76rem; color: rgba(255, 255, 255, 0.55); }
.mc-callstate {
  margin-top: 8px;
  font: 600 0.8rem/1.3 var(--font-body);
  color: rgba(255, 255, 255, 0.75);
  min-height: 1.3em;
  transition: color 0.4s var(--ease);
}
.mc-callscreen.is-missed .mc-callstate { color: var(--orange); font-weight: 700; }
.mc-callbtns { display: flex; gap: 44px; margin-top: 24px; }
.mc-callbtn {
  width: 50px; height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
}
.mc-callbtn svg { width: 22px; height: 22px; }
.mc-decline { background: var(--orange); }
.mc-decline svg { transform: rotate(135deg); } /* hung-up handset */
.mc-accept { background: var(--blue); }

/* Beats 2–4 — thread */
.mc-thread {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 12px 13px 18px;
  overflow: hidden;
}
[data-mc="missed"],
[data-mc="text1"],
[data-mc="typing"],
[data-mc="reply"],
[data-mc="appt"] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.mc-thread .is-on { opacity: 1; transform: none; }

.mc-missed {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(255, 106, 44, 0.12);
  font: 700 0.68rem/1 var(--font-body);
  color: #D14A10;
}
.mc-missed svg { width: 12px; height: 12px; }

.mc-bubble {
  max-width: 85%;
  padding: 11px 13px;
  border-radius: 17px;
  font: 400 0.8rem/1.5 var(--font-body);
}
.mc-out {
  align-self: flex-end;
  background: var(--navy);
  color: var(--white);
  border-bottom-right-radius: 5px;
}
.mc-meta {
  display: block;
  margin-top: 7px;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.mc-in {
  align-self: flex-start;
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(11, 42, 74, 0.08);
  border-bottom-left-radius: 5px;
  box-shadow: 0 2px 8px rgba(11, 42, 74, 0.06);
}

.mc-typing {
  align-self: flex-start;
  display: flex;
  gap: 5px;
  padding: 13px 15px;
  background: var(--white);
  border: 1px solid rgba(11, 42, 74, 0.08);
  border-radius: 17px 17px 17px 5px;
}
.mc-typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--muted);
  animation: typingBounce 1.1s var(--ease) infinite;
}
.mc-typing span:nth-child(2) { animation-delay: 0.15s; }
.mc-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  40% { transform: translateY(-5px); opacity: 0.9; }
}

.mc-appt {
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid rgba(30, 167, 225, 0.4);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(7, 20, 35, 0.14);
}
.mc-appt-head {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 700 0.82rem/1.3 var(--font-body);
  color: var(--navy);
}
.mc-appt-check {
  width: 25px; height: 25px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
}
.mc-appt-check svg { width: 13px; height: 13px; }
.mc-appt-when {
  margin-top: 9px;
  font: 700 0.95rem/1.2 var(--font-display);
  color: var(--navy);
}
.mc-appt-note {
  margin-top: 4px;
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   9 · FINANCING
   -------------------------------------------------------------------------- */
.fin-section { background: var(--bg); }
.fin-inner {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 960px) { .fin-inner { grid-template-columns: 1fr 1.05fr; gap: 80px; } }

.fin-partners {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  font: 600 0.92rem/1.5 var(--font-body);
  color: var(--navy);
}
.fin-partners svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }

.fin-card {
  padding: clamp(28px, 4vw, 44px);
  background: var(--white);
  border: 1px solid rgba(11, 42, 74, 0.06);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(11, 42, 74, 0.12);
}
.fin-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 14px;
}
.fin-field-label {
  font: 700 0.74rem/1 var(--font-body);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.fin-amount-value {
  font: 700 1.65rem/1 var(--font-display);
  letter-spacing: -0.01em;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

/* Range slider */
.fin-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 26px;
  margin: 0;
  background: transparent;
  cursor: pointer;
  --fill: 24%;
}
.fin-slider::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue) var(--fill), rgba(11, 42, 74, 0.12) var(--fill));
}
.fin-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px; height: 26px;
  margin-top: -10px;
  border-radius: 50%;
  background: var(--orange);
  border: 3.5px solid var(--white);
  box-shadow: 0 3px 12px rgba(255, 106, 44, 0.55);
  transition: transform 0.3s var(--ease);
}
.fin-slider::-webkit-slider-thumb:hover { transform: scale(1.12); }
.fin-slider::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(11, 42, 74, 0.12);
}
.fin-slider::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--blue);
}
.fin-slider::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--orange);
  border: 3.5px solid var(--white);
  box-shadow: 0 3px 12px rgba(255, 106, 44, 0.55);
}
.fin-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.72rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.fin-term-row { margin-top: 28px; margin-bottom: 0; align-items: center; }
.fin-term {
  -webkit-appearance: none;
  appearance: none;
  padding: 11px 40px 11px 16px;
  border: 1.5px solid rgba(11, 42, 74, 0.2);
  border-radius: var(--radius);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%230B2A4A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  font: 600 0.95rem/1.2 var(--font-body);
  color: var(--navy);
  cursor: pointer;
  min-height: 48px;
}
.fin-term:focus-visible { border-color: var(--blue); }

.fin-monthly {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px dashed rgba(11, 42, 74, 0.18);
}
.fin-monthly-label {
  font: 700 0.74rem/1 var(--font-body);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.fin-monthly-value {
  margin-top: 8px;
  font: 700 clamp(2.5rem, 5vw, 3.3rem)/1 var(--font-display);
  letter-spacing: -0.02em;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}
.fin-mo { font-size: 0.34em; color: var(--muted); font-family: var(--font-body); font-weight: 600; margin-left: 4px; }
.fin-note {
  margin-top: 16px;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   10 · REVIEWS CAROUSEL
   -------------------------------------------------------------------------- */
.reviews-section { background: var(--white); }

.rev-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.rev-aggregate {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border: 1px solid rgba(11, 42, 74, 0.1);
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(11, 42, 74, 0.07);
  background: var(--white);
}
.rev-agg-score {
  font: 700 2.1rem/1 var(--font-display);
  letter-spacing: -0.02em;
  color: var(--navy);
}
.rev-agg-stars { display: flex; gap: 2px; }
.rev-agg-stars svg { width: 16px; height: 16px; color: var(--blue); }
.rev-agg-count { font-size: 0.82rem; color: var(--muted); max-width: 14ch; line-height: 1.4; }

.rev-viewport { overflow: hidden; }
.rev-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s var(--ease);
}
.rev-card {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  background: var(--bg);
  border: 1px solid rgba(11, 42, 74, 0.06);
  border-radius: 20px;
}
@media (min-width: 720px) { .rev-card { flex-basis: calc((100% - 20px) / 2); } }
@media (min-width: 1080px) { .rev-card { flex-basis: calc((100% - 40px) / 3); } }

.rev-stars {
  font-size: 0.95rem;
  letter-spacing: 4px;
  color: var(--blue);
}
.rev-card blockquote {
  margin: 16px 0 20px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
}
.rev-card footer {
  margin-top: auto;
  font-size: 0.84rem;
  color: var(--muted);
}
.rev-card footer strong { color: var(--navy); font-weight: 700; }

.rev-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 34px;
}
.rev-arrow {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(11, 42, 74, 0.2);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  transition: transform 0.4s var(--ease), background-color 0.4s var(--ease),
              color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.rev-arrow:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.rev-arrow svg { width: 20px; height: 20px; }
.rev-dots { display: flex; gap: 8px; }
.rev-dot {
  width: 9px; height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(11, 42, 74, 0.18);
  cursor: pointer;
  transition: background-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.rev-dot.is-active {
  background: var(--blue);
  transform: scale(1.35);
}

/* --------------------------------------------------------------------------
   11 · ABOUT
   -------------------------------------------------------------------------- */
.about-section { background: var(--bg); }
.about-inner {
  display: grid;
  gap: 44px;
}
@media (min-width: 960px) {
  .about-inner { grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center; }
}
.about-copy p { margin-top: 18px; color: var(--ink); max-width: 54ch; }
.about-copy p:first-of-type { margin-top: 26px; }
.about-sign {
  margin-top: 26px;
  font-size: 1.02rem;
  color: var(--navy);
}
.about-sign strong { font-family: var(--font-display); }

.about-photo {
  min-height: clamp(300px, 42vw, 420px);
  border-radius: 26px;
  box-shadow: 0 26px 70px rgba(11, 42, 74, 0.22);
}

.about-badges {
  display: grid;
  gap: 18px;
  margin-top: 12px;
}
@media (min-width: 720px) { .about-badges { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .about-badges { grid-column: 1 / -1; margin-top: 28px; } }
.about-badges li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid rgba(11, 42, 74, 0.08);
  border-radius: 16px;
}
.about-badges svg { width: 26px; height: 26px; color: var(--blue); flex-shrink: 0; }
.about-badges strong {
  font: 700 0.95rem/1.35 var(--font-display);
  color: var(--navy);
}

/* --------------------------------------------------------------------------
   12 · SERVICE AREAS
   -------------------------------------------------------------------------- */
.areas-section { background: var(--white); }
.areas-inner {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 960px) { .areas-inner { grid-template-columns: 1fr 1fr; gap: 80px; } }

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 1.5px solid rgba(11, 42, 74, 0.18);
  border-radius: 999px;
  font: 600 0.95rem/1 var(--font-body);
  color: var(--navy);
  text-decoration: none;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
              background-color 0.4s var(--ease);
}
.area-chip:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  background: rgba(30, 167, 225, 0.08);
}

.areas-map {
  padding: clamp(18px, 3vw, 32px);
  background:
    var(--texture),
    linear-gradient(165deg, var(--navy-2), var(--navy) 80%);
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(11, 42, 74, 0.25);
}
.areas-map svg { width: 100%; height: auto; }
.map-city circle { fill: var(--blue); opacity: 0.9; }
.map-city text {
  fill: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-anchor: middle;
}
.map-home circle { fill: var(--blue); opacity: 1; }
.map-home text { fill: var(--white); font-weight: 700; font-size: 13px; }
.map-pulse {
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.5;
  transform-box: fill-box;
  transform-origin: center;
  animation: mapPulse 2.4s var(--ease) infinite;
}
@keyframes mapPulse {
  0% { transform: scale(0.7); opacity: 0.9; }
  100% { transform: scale(2); opacity: 0; }
}

/* --------------------------------------------------------------------------
   13 · OFFERS — coupon cards
   -------------------------------------------------------------------------- */
.offers-section { background: var(--bg); }
.offers-grid {
  display: grid;
  gap: 26px;
}
@media (min-width: 880px) { .offers-grid { grid-template-columns: repeat(3, 1fr); } }

.coupon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px 28px 26px;
  background: var(--white);
  border: 2px dashed rgba(11, 42, 74, 0.3);
  border-radius: 18px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.coupon:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(11, 42, 74, 0.12);
}
.coupon-scissors {
  position: absolute;
  top: -14px;
  left: 26px;
  width: 27px; height: 27px;
  padding: 3px;
  background: var(--bg);
  color: var(--muted);
}
.coupon-amount {
  font: 700 clamp(2.2rem, 4vw, 2.7rem)/1 var(--font-display);
  letter-spacing: -0.02em;
  color: var(--navy);
}
.coupon-amount span {
  font-size: 0.4em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.coupon h3 {
  margin-top: 8px;
  font: 700 1.18rem/1.3 var(--font-display);
  color: var(--navy);
}
.coupon-detail {
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}
.coupon-cta {
  margin-top: 22px;
  padding: 10px 0;
  border: 0;
  background: none;
  font: 700 0.9rem/1.3 var(--font-body);
  color: var(--orange);
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.coupon-cta:hover { color: #D14A10; }

/* --------------------------------------------------------------------------
   14 · FINAL CTA BAND
   -------------------------------------------------------------------------- */
.cta-section {
  background:
    radial-gradient(70% 90% at 50% 110%, rgba(30, 167, 225, 0.18), transparent 60%),
    var(--navy);
  text-align: center;
}
.cta-title {
  font: 700 clamp(2.4rem, 2rem + 3.4vw, 4.2rem)/1.02 var(--font-display);
  letter-spacing: -0.02em;
  color: var(--white);
  text-wrap: balance;
}
.cta-sub {
  margin-top: 20px;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.cta-license {
  margin-top: 34px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
}

/* --------------------------------------------------------------------------
   15 · FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding-top: clamp(60px, 8vw, 88px);
  padding-bottom: 32px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  gap: 44px;
}
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; } }

.footer-tagline {
  margin-top: 18px;
  max-width: 26ch;
  color: rgba(255, 255, 255, 0.55);
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.footer-social a {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.75);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.footer-social a:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  color: var(--white);
}
.footer-social svg { width: 17px; height: 17px; }
.footer-lang { margin-top: 24px; }

.footer-col h3 {
  margin-bottom: 18px;
  font: 700 0.78rem/1 var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-col li { margin-block: 9px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--white); }
.footer-col address p { margin-bottom: 12px; line-height: 1.7; }
.footer-hours { margin-top: 14px; }
.footer-hours strong { color: rgba(255, 255, 255, 0.9); }

.footer-legal {
  margin-top: clamp(48px, 6vw, 64px);
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.7;
}
.footer-credit-link {
  color: rgba(255, 255, 255, 0.68);
  text-underline-offset: 3px;
  transition: color 0.3s var(--ease);
}
.footer-credit-link:hover { color: var(--white); }

/* --------------------------------------------------------------------------
   16 · STICKY MOBILE BOTTOM BAR
   -------------------------------------------------------------------------- */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(11, 42, 74, 0.1);
}
.mobile-bar-call,
.mobile-bar-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  border: 0;
  border-radius: var(--radius);
  font: 700 0.98rem/1 var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.mobile-bar-call:active, .mobile-bar-book:active { transform: scale(0.97); }
.mobile-bar-call { background: var(--navy); color: var(--white); }
.mobile-bar-book {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 106, 44, 0.4);
}
.mobile-bar svg { width: 19px; height: 19px; }

@media (min-width: 768px) { .mobile-bar { display: none; } }
@media (max-width: 767px) { body { padding-bottom: 78px; } }

/* --------------------------------------------------------------------------
   17 · LIVE CHAT WIDGET
   -------------------------------------------------------------------------- */
.chat-bubble {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 95;
  width: 60px; height: 60px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(255, 106, 44, 0.45);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.chat-bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(255, 106, 44, 0.55);
}
.chat-bubble::before {
  content: "";
  position: absolute;
  inset: -3px;
  border: 2.5px solid rgba(255, 106, 44, 0.65);
  border-radius: 50%;
  opacity: 0;
}
.chat-bubble.is-pulsing::before { animation: chatPulse 1.9s var(--ease) 3; }
@keyframes chatPulse {
  0% { transform: scale(1); opacity: 0.85; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}
.chat-bubble svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 26px; height: 26px;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.chat-bubble-close { opacity: 0; transform: rotate(-45deg) scale(0.5); }
.chat-bubble.is-open .chat-bubble-open { opacity: 0; transform: rotate(45deg) scale(0.5); }
.chat-bubble.is-open .chat-bubble-close { opacity: 1; transform: none; }

@media (max-width: 767px) {
  .chat-bubble { bottom: calc(88px + env(safe-area-inset-bottom)); right: 16px; }
}

.chat-panel {
  position: fixed;
  right: 20px;
  bottom: 94px;
  z-index: 96;
  display: flex;
  flex-direction: column;
  width: min(378px, calc(100vw - 40px));
  height: min(540px, calc(100dvh - 130px));
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 34px 100px rgba(7, 20, 35, 0.45);
  opacity: 0;
  transform: translateY(16px) scale(0.95);
  transform-origin: bottom right;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  pointer-events: none;
}
.chat-panel.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
@media (max-width: 767px) {
  .chat-panel {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: calc(160px + env(safe-area-inset-bottom));
    height: min(460px, calc(100dvh - 240px));
  }
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--navy);
  color: var(--white);
}
.chat-header-mark { width: 38px; height: 38px; flex-shrink: 0; }
.chat-header-text strong {
  display: block;
  font: 700 0.98rem/1.2 var(--font-display);
}
.chat-header-text > span {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.65);
}
.chat-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: blink 2.2s var(--ease) infinite;
}
.chat-close {
  margin-left: auto;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  border-radius: 10px;
  transition: color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.chat-close:hover { color: var(--white); background: rgba(255, 255, 255, 0.1); }
.chat-close svg { width: 16px; height: 16px; }

.chat-messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  overflow-y: auto;
  background: var(--bg);
}
.chat-msg {
  max-width: 86%;
  padding: 11px 14px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.chat-msg.is-in { opacity: 1; transform: none; }
.chat-msg-bot {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid rgba(11, 42, 74, 0.08);
  border-bottom-left-radius: 5px;
  color: var(--ink);
}
.chat-msg-user {
  align-self: flex-end;
  background: var(--navy);
  border-bottom-right-radius: 5px;
  color: var(--white);
}
.chat-typing {
  align-self: flex-start;
  display: flex;
  gap: 5px;
  padding: 13px 15px;
  background: var(--white);
  border: 1px solid rgba(11, 42, 74, 0.08);
  border-radius: 16px 16px 16px 5px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.chat-typing.is-in { opacity: 1; transform: none; }
.chat-typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--muted);
  animation: typingBounce 1.1s var(--ease) infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }
.chat-book-btn {
  align-self: flex-start;
  margin-top: 2px;
  min-height: 44px;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.chat-form {
  display: flex;
  gap: 10px;
  padding: 12px;
  background: var(--white);
  border-top: 1px solid rgba(11, 42, 74, 0.08);
}
.chat-input {
  flex: 1;
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  border: 1.5px solid rgba(11, 42, 74, 0.15);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.chat-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 167, 225, 0.18);
}
.chat-send {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
}
.chat-send:hover { transform: translateY(-2px); background: var(--navy-2); }
.chat-send svg { width: 19px; height: 19px; }

/* --------------------------------------------------------------------------
   18 · BOOKING MODAL
   -------------------------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 35, 0.62);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.modal.is-open .modal-overlay { opacity: 1; }
.modal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(560px, 100%);
  max-height: min(700px, calc(100dvh - 40px));
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 44px 130px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.modal.is-open .modal-card { opacity: 1; transform: none; }

@media (max-width: 639px) {
  .modal { padding: 0; align-items: flex-end; }
  .modal-card {
    width: 100%;
    max-height: 94dvh;
    border-radius: 22px 22px 0 0;
  }
}

.modal-head {
  position: relative;
  padding: 26px 28px 0;
}
.modal-kicker {
  font: 700 0.7rem/1 var(--font-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.modal-title {
  margin-top: 10px;
  padding-right: 44px;
  font: 700 1.5rem/1.15 var(--font-display);
  letter-spacing: -0.01em;
  color: var(--navy);
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--navy);
  cursor: pointer;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.modal-close:hover { background: rgba(11, 42, 74, 0.12); transform: translateY(-1px); }
.modal-close svg { width: 15px; height: 15px; }

.bm-dots {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}
.bm-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(11, 42, 74, 0.15);
  transition: background-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.bm-dot.is-active { background: var(--orange); transform: scale(1.3); }
.bm-dot.is-done { background: var(--navy); }

.bm-viewport { overflow: hidden; flex: 1; overflow-y: auto; }
.bm-track {
  display: flex;
  width: 400%;
  transition: transform 0.55s var(--ease);
}
.bm-step {
  width: 25%;
  flex-shrink: 0;
  padding: 24px 28px 12px;
}

.bm-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bm-chip {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  min-height: 92px;
  text-align: left;
}
.bm-chip svg { width: 24px; height: 24px; color: var(--blue); transition: color 0.3s var(--ease); }
.bm-chip.is-selected svg { color: var(--white); }
.bm-chip-emergency { border-color: rgba(255, 106, 44, 0.55); color: var(--orange); }
.bm-chip-emergency svg { color: var(--orange); }
.bm-chip-emergency:hover { border-color: var(--orange); }
.bm-chip-emergency.is-selected {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.bm-sublabel {
  margin: 20px 0 10px;
  font: 700 0.72rem/1 var(--font-body);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.bm-step .bm-sublabel:first-child { margin-top: 0; }
.bm-dates, .bm-times {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bm-dates .chip, .bm-chip-sm {
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.bm-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bm-field label {
  display: block;
  margin-bottom: 7px;
  font: 600 0.86rem/1.2 var(--font-body);
  color: var(--navy);
}
.bm-field input {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1.5px solid rgba(11, 42, 74, 0.18);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.bm-field input::placeholder { color: rgba(107, 114, 128, 0.55); }
.bm-field input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 167, 225, 0.18);
}
.bm-field input.is-invalid { border-color: var(--orange); }
.bm-error {
  margin-top: 7px;
  font-size: 0.8rem;
  color: #D14A10;
}

/* Confirmation step */
.bm-step-confirm { text-align: center; padding-bottom: 28px; }
.bm-check {
  width: 76px; height: 76px;
  margin: 6px auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(30, 167, 225, 0.4);
  opacity: 0;
  transform: scale(0.4) rotate(-12deg);
  transition: opacity 0.4s var(--ease) 0.2s, transform 0.65s var(--ease) 0.2s;
}
.bm-step-confirm.is-in .bm-check { opacity: 1; transform: none; }
.bm-check svg { width: 36px; height: 36px; }
.bm-confirm-title {
  font: 700 1.6rem/1.15 var(--font-display);
  letter-spacing: -0.01em;
  color: var(--navy);
}
.bm-confirm-sub { margin-top: 10px; color: var(--muted); }
.bm-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
  padding: 20px 22px;
  background: var(--bg);
  border-radius: 16px;
  text-align: left;
}
.bm-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.92rem;
}
.bm-summary dt { color: var(--muted); flex-shrink: 0; }
.bm-summary dd { font-weight: 600; color: var(--navy); text-align: right; }
.bm-done { width: 100%; }

.bm-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px 24px;
  border-top: 1px solid rgba(11, 42, 74, 0.08);
}
.bm-back {
  padding: 12px 10px;
  border: 0;
  background: none;
  font: 600 0.95rem/1 var(--font-body);
  color: var(--muted);
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.bm-back:hover { color: var(--navy); }
.bm-next {
  margin-left: auto;
  min-width: 150px;
}
.bm-next:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* --------------------------------------------------------------------------
   19 · REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hw > span { transform: none !important; }
  .qr-card { opacity: 1; transform: none; }
  .hero-bg { transform: none !important; }
}
