@charset "UTF-8";
/* ==========================================================================
   FR Air Conditioner & Refrigeration Services · style.css
   The cooling scroll: page starts hot, cools to blue by the quote form.
   Brand accent (buttons/icons/eyebrows) is blue to match the FR logo.
   ========================================================================== */

/* ===== Design tokens ===== */
:root {
  /* Hot / cool gradient stops (scroll-interpolated by JS via CSS vars) — unchanged */
  --hot-top: #F3B08C;
  --hot-bottom: #E8836A;
  --cool-top: #DCE9F8;
  --cool-bottom: #8FB1E8;

  /* Current interpolated stops — JS overwrites these each scroll frame */
  --stop-a: var(--hot-top);
  --stop-b: var(--hot-bottom);

  --ink: #17233F;
  --ink-muted: #47536E;
  --frio: #2450C8;
  --frio-dark: #17348C;
  --calor: #2F8FE0;
  --calor-dark: #145FCB;

  --surface: #FFFFFF;
  --surface-elevated: #FFFFFF;
  --surface-tint: rgba(255, 255, 255, 0.72);
  --border-soft: rgba(29, 48, 56, 0.12);

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, monospace;

  --container: 1200px;
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 26px;

  --shadow-card: 0 20px 50px -22px rgba(29, 48, 56, 0.28);
  --shadow-soft: 0 10px 30px -14px rgba(29, 48, 56, 0.18);

  color-scheme: light;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: linear-gradient(160deg, var(--stop-a) 0%, var(--stop-b) 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.05; letter-spacing: -0.02em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
.mono { font-family: var(--font-mono); }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.wrap-narrow { max-width: 760px; }

/* ===== Skip link ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.9rem 1.4rem;
  z-index: 1000;
  border-radius: 0 0 var(--radius-s) 0;
}
.skip-link:focus {
  left: 0;
}

/* ===== Focus states ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--frio-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== Pre-animation hidden states — gated behind .js ===== */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}
html.js [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
html.no-motion [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ===== Buttons ===== */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, background 0.3s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: var(--calor-dark);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { box-shadow: 0 18px 34px -14px rgba(194, 74, 36, 0.55); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-soft);
}
.btn-ghost:hover { background: rgba(29, 48, 56, 0.06); }
.btn-outline {
  background: transparent;
  color: var(--frio-dark);
  border-color: var(--frio-dark);
}
.btn-outline:hover { background: var(--frio-dark); color: #fff; }
.btn-large { padding: 1.15rem 2.1rem; font-size: 1.05rem; }
.btn-small { padding: 0.6rem 1.15rem; font-size: 0.85rem; }
.btn-full { width: 100%; }
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  pointer-events: none;
  transform: scale(0);
  animation: btnRipple 0.7s ease-out forwards;
}
@keyframes btnRipple {
  to { transform: scale(1); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
  .btn-ripple { display: none; }
}

/* ===== Signature: fixed temperature readout chip =====
   Sits under the margin thermometer (centered on its 40px-wide rail), not
   bottom-right — moved 2026-08-09 so it reads as the thermometer's own
   readout instead of a floating corner badge, and so it no longer competes
   with the chat launcher for the same corner. The thermometer hides under
   900px (see .thermo-rail below), so the chip hides with it — nothing left
   to sit under. */
.temp-chip {
  position: fixed;
  top: calc(50% + min(30vh, 210px) + 14px);
  left: calc(1.25rem + 20px);
  transform: translateX(-50%);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
}
.temp-chip-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--calor-dark);
  transition: background 0.4s ease;
}
.temp-chip-value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 900px) {
  .temp-chip { display: none; }
}

/* ===== Signature: margin thermometer ===== */
.thermo-rail {
  position: fixed;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 850;
  height: min(60vh, 420px);
  width: 40px;
  pointer-events: none;
}
.thermo-svg { width: 100%; height: 100%; display: block; }
[data-thermo-fill] { transition: transform 0.1s linear; }
@media (max-width: 900px) {
  .thermo-rail { display: none; }
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 1.1rem 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease, backdrop-filter 0.35s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px -18px rgba(29, 48, 56, 0.35);
  padding: 0.7rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
}
.brand-mark {
  display: flex;
  color: var(--calor-dark);
}
.brand-logo img {
  display: block;
  width: 58px;
  height: 40px;
  object-fit: cover;
  border-radius: 9px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}
.brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  line-height: 1.05;
  display: flex;
  flex-direction: column;
}
.brand-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-desktop a:not(.btn) {
  position: relative;
  padding-bottom: 3px;
}
.nav-desktop a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--calor-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-desktop a:not(.btn):hover::after { transform: scaleX(1); }

/* ===== Language toggle ===== */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1.5px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.6);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.lang-toggle:hover { border-color: var(--frio); }
.lang-opt { opacity: 0.45; transition: opacity 0.25s ease, color 0.25s ease; }
.lang-sep { opacity: 0.35; }
html[lang="es"] .lang-toggle .lang-opt-es,
html[lang="en"] .lang-toggle .lang-opt-en {
  opacity: 1;
  color: var(--calor-dark);
}
.lang-toggle-mobile {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.lang-toggle-mobile .lang-opt { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}

/* ===== Mobile overlay nav ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: linear-gradient(160deg, var(--frio-dark), var(--ink));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}
body.nav-open-lock { overflow: hidden; }
body.nav-open .nav-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.nav-overlay-links a {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  font-weight: 700;
  color: #fff;
}
.nav-overlay-foot {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
@media (prefers-reduced-motion: reduce) {
  .nav-overlay { transition: opacity 0.2s linear; transform: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 0 6rem;
  overflow: hidden;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 2; }
.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--calor-dark);
  margin-bottom: 1.1rem;
  font-weight: 700;
}
.hero-title {
  font-size: clamp(2.8rem, 8vw, 6.4rem);
  font-weight: 800;
  color: var(--ink);
  max-width: 15ch;
}
/* Heat-shimmer: subtle blur wobble, calms & sharpens as .shimmer-calm class is added by JS on scroll */
html.js [data-shimmer] {
  filter: blur(0.4px);
}
@media (prefers-reduced-motion: no-preference) {
  html.js [data-shimmer] {
    animation: heatShimmer 3.2s ease-in-out infinite;
  }
  html.js [data-shimmer].shimmer-calm {
    animation: none;
    filter: blur(0);
  }
}
@keyframes heatShimmer {
  0%, 100% { transform: translate3d(0, 0, 0) skewX(0deg); filter: blur(0.5px); }
  25% { transform: translate3d(0.6px, -0.4px, 0) skewX(0.15deg); filter: blur(0.9px); }
  50% { transform: translate3d(-0.4px, 0.3px, 0) skewX(-0.1deg); filter: blur(0.4px); }
  75% { transform: translate3d(0.3px, -0.2px, 0) skewX(0.1deg); filter: blur(0.7px); }
}
html.no-motion [data-shimmer] { filter: none; animation: none; }

.hero-sub {
  margin-top: 1.6rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 46ch;
  line-height: 1.55;
  color: var(--ink);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}
.hero-trust {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.trust-star { color: var(--calor-dark); }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-muted);
}
.scroll-cue span {
  width: 1.5px;
  height: 32px;
  background: linear-gradient(var(--calor-dark), transparent);
}
@media (prefers-reduced-motion: no-preference) {
  .scroll-cue span { animation: scrollCue 1.8s ease-in-out infinite; }
}
@keyframes scrollCue {
  0% { opacity: 0.2; transform: scaleY(0.4); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0.2; transform: scaleY(0.4); transform-origin: bottom; }
}
.scroll-cue small { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ===== Section rhythm ===== */
.section { padding: 6.5rem 0; position: relative; }
.section-alt { padding: 7rem 0; }
.section-head { max-width: 62ch; margin-bottom: 3.2rem; }
.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  color: var(--ink);
  margin-top: 0.7rem;
}
.section-lede {
  margin-top: 1.1rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* All copy-bearing sections sit on a guaranteed-contrast surface card so text
   never depends on the raw scroll gradient underneath — verified ink contrast
   stays >4.5:1 across the whole hot->cool interpolation anyway, but a solid
   surface for dense text blocks removes any doubt at every scroll position. */
.pkg-grid, .svc-grid, .reviews-grid, .stat-callout, .financing-chip,
.proof-grid, .quote-form {
  position: relative;
}

/* ===== Package cards ===== */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.pkg-card {
  background: var(--surface);
  border-radius: var(--radius-l);
  padding: 2.1rem 1.9rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  border: 1px solid var(--border-soft);
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px -24px rgba(29, 48, 56, 0.32); }
.pkg-card-featured {
  background: linear-gradient(165deg, #ffffff, #f2f9fc);
  border-color: var(--frio);
  position: relative;
}
.pkg-badge {
  position: absolute;
  top: -0.9rem;
  left: 1.9rem;
  background: var(--frio-dark);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}
.pkg-btu { font-family: var(--font-mono); font-weight: 700; color: var(--ink-muted); font-size: 0.95rem; }
.pkg-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.3rem;
  color: var(--ink);
  margin-top: 0.3rem;
}
.pkg-price span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 0.15rem;
}
.pkg-specs { display: flex; flex-direction: column; gap: 0.55rem; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); padding: 1rem 0; }
.pkg-specs li { display: flex; justify-content: space-between; font-size: 0.88rem; }
.pkg-specs li span:first-child { color: var(--ink-muted); }
.pkg-specs li span:last-child { color: var(--ink); font-weight: 700; }
.pkg-fit { font-size: 0.92rem; color: var(--ink-muted); flex-grow: 1; }

/* ===== 4-up services grid (higher specificity than the base .svc-grid rule below) ===== */
.svc-grid.svc-grid-4 { grid-template-columns: repeat(4, 1fr); margin-top: 0; }
@media (max-width: 1100px) {
  .svc-grid.svc-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .svc-grid.svc-grid-4 { grid-template-columns: 1fr; }
}

/* ===== Brands strip ===== */
.brands-strip {
  margin-top: 2.8rem;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-m);
  padding: 1.4rem 1.8rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.brands-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  font-weight: 700;
  flex-shrink: 0;
}
.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
  align-items: center;
}
.brands-list li {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--frio-dark);
  opacity: 0.85;
}

/* ===== Comercial split ===== */
.comercial-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.comercial-points {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.comercial-points li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
}
.comercial-points li::before {
  content: '❄';
  position: absolute;
  left: 0;
  color: var(--frio);
}
.comercial-copy .hero-cta { margin-top: 2rem; }
.comercial-media {
  display: grid;
  gap: 1.2rem;
}
.comercial-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}
@media (max-width: 900px) {
  .comercial-split { grid-template-columns: 1fr; gap: 2.2rem; }
  .comercial-media { grid-template-columns: 1fr 1fr; }
  .comercial-media img { height: 180px; }
}
@media (max-width: 560px) {
  .comercial-media { grid-template-columns: 1fr; }
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  background: var(--surface);
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-wide { grid-column: span 2; }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item-wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-wide { grid-column: span 1; }
  .gallery-item img { height: 220px; }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-item:hover img { transform: none; }
}

/* ===== Reviews note + rating summary (replaces the old link-out-only block) ===== */
.reviews-note {
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 2rem;
}
.rating-summary {
  margin-top: 2.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.rating-summary-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
.rating-summary-text span[aria-hidden] { color: var(--calor-dark); letter-spacing: 0.1em; }
.rating-meta { color: var(--ink-muted); font-weight: 600; font-size: 0.95rem; }

/* ===== Video band ===== */
.section-video {
  background: linear-gradient(150deg, #0D1B3E, #17348C);
  color: #fff;
}
.video-band {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3rem;
  align-items: center;
}
.video-frame {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #060d20;
}
.video-frame video {
  display: block;
  width: 100%;
  height: auto;
}
.video-copy h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.video-copy > p { margin-top: 1.1rem; color: rgba(255, 255, 255, 0.82); font-size: 1.08rem; line-height: 1.6; max-width: 46ch; }
.video-copy .hero-cta { margin-top: 2rem; }
.pay-badges {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.pay-badges span {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
}
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.12); }
@media (max-width: 900px) {
  .video-band { grid-template-columns: 1fr; }
  .video-frame { max-width: 420px; margin: 0 auto; }
}

/* ===== Financing chip ===== */
.financing-chip {
  margin-top: 2.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-m);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-soft);
}
.financing-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--frio-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.1rem;
}
.financing-headline { font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.financing-terms { margin-top: 0.5rem; font-size: 0.82rem; line-height: 1.55; color: var(--ink-muted); }

/* ===== Service cards ===== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.8rem;
}
.svc-card {
  background: var(--surface);
  border-radius: var(--radius-m);
  padding: 2rem 1.7rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.svc-icon { font-size: 1.8rem; }
.svc-card h3 { font-size: 1.25rem; margin-top: 0.8rem; color: var(--ink); }
.svc-price { font-family: var(--font-mono); font-weight: 700; font-size: 1.4rem; color: var(--calor-dark); margin-top: 0.5rem; }
.svc-price-note { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.72rem; color: var(--ink-muted); margin-top: 0.15rem; }
.svc-desc { margin-top: 0.8rem; font-size: 0.92rem; line-height: 1.55; color: var(--ink-muted); }
.svc-link { display: inline-block; margin-top: 1.1rem; font-weight: 700; color: var(--frio-dark); }
.svc-link:hover { text-decoration: underline; }

/* ===== Stat callout (LUMA bill) ===== */
.stat-callout {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  background: linear-gradient(120deg, var(--calor-dark), #a63a1c);
  color: #fff;
  border-radius: var(--radius-l);
  padding: 2.2rem 2.4rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-card);
}
.stat-callout-number {
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 700;
  flex-shrink: 0;
}
.stat-callout-text { font-size: 1.05rem; line-height: 1.55; max-width: 56ch; }
.stat-callout-text strong { font-weight: 700; }

/* ===== Proof / count-ups ===== */
.section-proof { padding: 5.5rem 0; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  text-align: center;
}
.proof-item {
  background: var(--surface);
  border-radius: var(--radius-m);
  padding: 2.6rem 1.5rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}
.proof-number {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--frio-dark);
}
.proof-label { margin-top: 0.6rem; color: var(--ink-muted); font-weight: 600; font-size: 0.95rem; }

/* ===== Reviews ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.review-card {
  background: var(--surface);
  border-radius: var(--radius-m);
  padding: 2rem 1.8rem;
  margin: 0;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-stars { color: var(--calor-dark); letter-spacing: 0.1em; font-size: 0.95rem; }
.review-text { font-size: 0.98rem; line-height: 1.6; color: var(--ink); flex-grow: 1; }
.review-foot { display: flex; flex-direction: column; gap: 0.1rem; }
.review-name { font-weight: 700; color: var(--ink); }
.review-loc { font-size: 0.82rem; color: var(--ink-muted); }

/* ===== Quote form ===== */
.section-quote { padding-bottom: 8rem; }
.quote-form {
  background: var(--surface);
  border-radius: var(--radius-l);
  padding: 2.6rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}
.form-fields-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
fieldset.form-field { border: 0; padding: 0; margin: 0; }
.form-field-full { grid-column: 1 / -1; }
.form-field label,
.form-field legend {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 0;
}
.req { color: var(--calor-dark); }
.form-field input,
.form-field select {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-s);
  border: 1.5px solid var(--border-soft);
  background: #fbfdfe;
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-field input:focus,
.form-field select:focus {
  border-color: var(--frio);
  box-shadow: 0 0 0 4px rgba(33, 137, 176, 0.15);
  outline: none;
}
.radio-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 0.3rem; }
.radio-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--border-soft);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-muted);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.radio-pill input { position: absolute; opacity: 0; }
.radio-pill:has(input:checked) {
  border-color: var(--frio-dark);
  color: var(--frio-dark);
  background: rgba(33, 137, 176, 0.08);
}
.radio-pill input:focus-visible ~ span { outline: 2px solid var(--frio-dark); outline-offset: 3px; }

.field-error {
  min-height: 1.1em;
  font-size: 0.8rem;
  color: var(--calor-dark);
  font-weight: 600;
}
.has-error input,
.has-error select {
  border-color: var(--calor-dark);
}
.has-error .radio-pill { border-color: var(--calor-dark); }

.form-submit { margin-top: 0.6rem; }
.form-fineprint { grid-column: 1 / -1; font-size: 0.78rem; color: var(--ink-muted); text-align: center; margin-top: 0.4rem; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  padding: 2.5rem 1rem;
}
.form-success-icon { font-size: 3rem; }
.form-success h3 { font-size: 1.6rem; color: var(--ink); }
.form-success p { color: var(--ink-muted); font-size: 1.05rem; }
.quote-form.is-submitted .form-fields-wrap { display: none; }
.quote-form.is-submitted .form-success { display: flex; }

@media (max-width: 720px) {
  .form-fields-wrap { grid-template-columns: 1fr; }
  .quote-form { padding: 1.8rem; }
}

/* ===== Footer ===== */
.site-footer {
  background: linear-gradient(165deg, var(--frio-dark), #0D1B3E);
  color: rgba(255, 255, 255, 0.88);
  padding: 5rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.brand-footer { color: #fff; }
.brand-footer .brand-mark { color: #fff; }
.brand-footer .brand-sub { color: rgba(255, 255, 255, 0.65); }
.footer-tag { margin-top: 1rem; font-size: 0.92rem; line-height: 1.6; color: rgba(255, 255, 255, 0.75); max-width: 32ch; }
.footer-license { margin-top: 0.9rem; font-size: 0.76rem; color: rgba(255, 255, 255, 0.6); }
.footer-heading { font-weight: 700; margin-bottom: 1rem; color: #fff; font-size: 0.95rem; }
.footer-list { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-list a:hover { text-decoration: underline; }
.footer-list li { font-size: 0.9rem; color: rgba(255, 255, 255, 0.78); }
.footer-social { display: flex; gap: 0.7rem; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: background 0.3s ease, transform 0.3s ease;
}
.footer-social a:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-3px); }
.footer-pay { margin-top: 1.1rem; font-size: 0.76rem; color: rgba(255, 255, 255, 0.6); }
.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ===== Responsive: cards & grids ===== */
@media (max-width: 980px) {
  .pkg-grid, .svc-grid, .reviews-grid, .proof-grid { grid-template-columns: 1fr; }
  .stat-callout { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .section { padding: 4.5rem 0; }
  .hero { padding: 7rem 0 4.5rem; }
}

/* ===== Reduced motion: fixed mid-gradient, static 24°C, no shimmer ===== */
html.no-motion body {
  background: linear-gradient(160deg, #EFCBB0 0%, #C3CBE0 55%, #9DB9E8 100%);
}
html.no-motion .temp-chip-value::after { content: ''; }
html.no-motion [data-thermo-fill] { transform: scaleY(0.5) !important; }

/* ===== Print / no-JS fallback safety ===== */
html:not(.js) [data-reveal] { opacity: 1; transform: none; }
