/* ==========================================================================
   AHM Solar — Design System v2
   Brand: orange #EA951D, navy #0B3B5E (preserved from logo)
   Headings: Sora · Body: DM Sans
   ========================================================================== */

:root {
  --orange-50:  #fff8ec;
  --orange-100: #ffedc9;
  --orange-300: #ffc866;
  --orange-400: #f5aa3d;
  --orange-500: #EA951D;
  --orange-600: #d17f0f;
  --orange-700: #a8640c;

  --navy-950: #05192a;
  --navy-900: #0B3B5E;
  --navy-850: #0a3151;
  --navy-800: #0f4a75;
  --navy-700: #135a8f;
  --navy-050: #eef4f9;

  --ink-900: #101418;
  --ink-700: #333a41;
  --ink-500: #6d777f;
  --ink-300: #b7bec4;
  --ink-100: #e8ecef;
  --ink-050: #f6f8f9;

  --white: #ffffff;
  --success: #1f9d55;

  --grad-orange: linear-gradient(120deg, #f7ab35, var(--orange-500) 55%, #e07c0e);
  --grad-navy: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-850) 55%, #06253e 100%);

  --font-body: "DM Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-head: "Sora", "DM Sans", "Segoe UI", system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(7, 31, 49, 0.07);
  --shadow-md: 0 14px 38px rgba(7, 31, 49, 0.12);
  --shadow-lg: 0 28px 70px rgba(7, 31, 49, 0.2);
  --shadow-orange: 0 12px 30px rgba(234, 149, 29, 0.35);

  --container: 1220px;
  --gap: 24px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-900);
  line-height: 1.14;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.28rem; font-weight: 700; }
h4 { font-size: 1.02rem; font-weight: 700; }
p { margin: 0 0 16px; color: var(--ink-500); }
.lead { font-size: 1.14rem; color: var(--ink-700); }
.accent { color: var(--orange-500); }
.accent-grad {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 56px 0; }
.section-tight { padding: 76px 0; }
@media (max-width: 780px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 40px 0; }
  .section-tight { padding: 52px 0; }
}
.bg-light { background: var(--ink-050); }
.bg-navy { background: var(--grad-navy); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-navy p { color: #b9cddc; }
.bg-orange-soft { background: var(--orange-50); }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split.reverse .split-media { order: 2; }
@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-600);
  background: var(--orange-50);
  border: 1px solid var(--orange-100);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.bg-navy .eyebrow, .hero .eyebrow, .page-hero .eyebrow {
  color: var(--orange-300);
  background: rgba(234, 149, 29, 0.14);
  border-color: rgba(234, 149, 29, 0.35);
}
.eyebrow::before { content: "●"; font-size: 0.5rem; color: var(--orange-500); }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--grad-orange); color: var(--white); box-shadow: var(--shadow-orange); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(234, 149, 29, 0.45); }
.btn-navy { background: var(--navy-900); color: var(--white); box-shadow: 0 10px 24px rgba(11, 59, 94, 0.3); }
.btn-navy:hover { transform: translateY(-2px); background: var(--navy-800); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.45); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-ghost { background: var(--white); border-color: var(--ink-100); color: var(--navy-900); }
.btn-ghost:hover { border-color: var(--orange-500); color: var(--orange-600); }
.btn-sm { padding: 11px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 36px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-arrow::after { content: "→"; transition: transform .25s var(--ease); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-100);
}
.topbar { background: var(--navy-950); color: #cfe0ec; font-size: 0.82rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; padding-bottom: 8px; flex-wrap: wrap; gap: 8px; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; color: #e7f0f7; font-weight: 600; }
.topbar a:hover { color: var(--orange-400); }
.topbar-links { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar .pulse-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange-400); margin-right: 8px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(234,149,29,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(234,149,29,0); }
  100% { box-shadow: 0 0 0 0 rgba(234,149,29,0); }
}
@media (max-width: 700px) { .topbar-note { display: none; } }

.navbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 44px; width: auto; }
@media (max-width: 640px) {
  .brand img { height: 34px; }
  .nav-actions .btn { display: none; }
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 10px 15px;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--ink-700);
  border-radius: var(--radius-pill);
  transition: background .2s, color .2s;
}
.nav-links a:hover, .nav-links a.active { background: var(--orange-50); color: var(--orange-600); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy-900); }
.nav-phone svg { color: var(--orange-500); }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--navy-050);
  border: none;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--navy-900);
  position: relative;
  transition: all .25s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-phone span.hide-mobile { display: none; }
  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 84vw);
    height: 100vh;
    background: var(--white);
    padding: 90px 24px 24px;
    box-shadow: -20px 0 50px rgba(0,0,0,0.2);
    align-items: flex-start;
    gap: 4px;
    z-index: 600;
  }
  body.nav-open .nav-links a { width: 100%; padding: 14px 16px; }
  .nav-scrim { display: none; }
  /* Must stay BELOW .site-header (z-index 500) so the slide-out menu inside
     the header remains clickable; the scrim only dims the page content. */
  body.nav-open .nav-scrim { display: block; position: fixed; inset: 0; background: rgba(5,25,42,0.55); z-index: 450; }
}

/* ---- Hero (photo-backed) ---- */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 96px 0 120px;
  background: var(--grad-navy);
  isolation: isolate;
}
.hero-photo {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-veil {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(5,25,42,0.94) 0%, rgba(7,42,66,0.86) 45%, rgba(9,49,78,0.55) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -34% auto;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(234,149,29,0.32), transparent 68%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p.lead { color: #cbdcea; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-ticks { display: flex; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.hero-ticks span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 600; color: #d8e6f1; }
.hero-ticks svg { color: var(--orange-400); flex: none; }
@media (max-width: 940px) {
  .hero { padding: 64px 0 84px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Glass quote card on hero */
.quote-card {
  background: rgba(255,255,255,0.98);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.quote-card::before {
  content: "";
  position: absolute; top: 0; left: 34px; right: 34px; height: 4px;
  background: var(--grad-orange);
  border-radius: 0 0 6px 6px;
}
.quote-card h3 { margin-bottom: 4px; font-size: 1.35rem; }
.quote-card .sub { font-size: 0.9rem; color: var(--ink-500); margin-bottom: 20px; }
.quote-card .field { margin-bottom: 14px; }
.quote-card .form-note { margin-top: 12px; text-align: center; }

/* ---- Page hero (interior) ---- */
.page-hero {
  background: var(--grad-navy);
  color: var(--white);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero-photo { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.page-hero-veil { position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(5,25,42,0.95) 0%, rgba(7,42,66,0.88) 50%, rgba(9,49,78,0.62) 100%); }
.page-hero::after {
  content: "";
  position: absolute; inset: auto -8% -60% auto;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(234,149,29,0.3), transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: #cbdcea; max-width: 660px; margin-bottom: 0; font-size: 1.08rem; }
.breadcrumb { font-size: 0.85rem; color: #9ec1da; margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--orange-400); }
.breadcrumb .sep { margin: 0 8px; opacity: .6; }

/* ---- Solution chooser ---- */
.choice-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.choice-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.choice-media { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.choice-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.choice-card:hover .choice-media img { transform: scale(1.05); }
.choice-body { padding: 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.choice-body h3 { margin-bottom: 0; }
.choice-body p { margin-bottom: 0; }
.choice-body .btn { margin-top: auto; align-self: flex-start; }
.rebate-note {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--orange-50);
  border: 1px dashed rgba(234,149,29,0.45);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.86rem;
  color: var(--ink-700);
  font-weight: 500;
}
.rebate-note strong { color: var(--orange-600); }
.rebate-note svg { flex: none; color: var(--orange-500); margin-top: 2px; }

/* ---- Stat band ---- */
.stat-band { background: var(--grad-navy); color: var(--white); border-radius: var(--radius-xl); padding: 52px 48px; position: relative; overflow: hidden; }
.stat-band::after {
  content: "";
  position: absolute; inset: auto -6% -70% auto;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(234,149,29,0.25), transparent 70%);
}
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; z-index: 1; }
@media (max-width: 900px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .stat-grid { grid-template-columns: 1fr 1fr; gap: 22px; } .stat-band { padding: 36px 28px; } }
.stat-item .stat-num { font-family: var(--font-head); font-size: clamp(1.9rem, 3.4vw, 2.8rem); font-weight: 800; color: var(--orange-400); line-height: 1.1; }
.stat-item .stat-label { font-size: 0.88rem; color: #b9cddc; margin-top: 6px; }

/* ---- Savings calculator ---- */
.calc-wrap {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}
@media (max-width: 860px) { .calc-wrap { grid-template-columns: 1fr; } }
.calc-controls { padding: 44px; }
.calc-controls label { display: block; font-weight: 700; color: var(--navy-900); margin-bottom: 10px; }
.calc-bill-value { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--orange-500); margin-bottom: 18px; }
.calc-slider { width: 100%; appearance: none; -webkit-appearance: none; height: 8px; border-radius: 999px; background: var(--ink-100); outline: none; }
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad-orange);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-orange);
  cursor: grab;
}
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange-500);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-orange);
  cursor: grab;
}
.calc-scale { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--ink-500); margin-top: 8px; }
.calc-note { font-size: 0.82rem; color: var(--ink-500); margin-top: 22px; margin-bottom: 0; }
.calc-results { background: var(--grad-navy); color: var(--white); padding: 44px; display: flex; flex-direction: column; justify-content: center; gap: 26px; }
.calc-results .res-label { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: #9ec1da; font-weight: 700; }
.calc-results .res-value { font-family: var(--font-head); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: var(--orange-400); line-height: 1.15; }
.calc-results .res-sub { font-size: 0.85rem; color: #b9cddc; }
.calc-results .btn { align-self: flex-start; }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .icon-wrap {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--orange-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-600);
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }

.icon-list { display: flex; flex-direction: column; gap: 14px; }
.icon-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-700); font-weight: 500; }
.icon-list .check {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange-50);
  color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
  margin-top: 3px;
  font-size: 0.75rem;
}

/* Package cards */
.pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pkg-card.featured { border: 2px solid var(--orange-500); position: relative; }
.pkg-card .pkg-tag {
  position: absolute; top: 0; right: 24px;
  background: var(--grad-orange); color: var(--white);
  font-size: 0.72rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 0 0 10px 10px;
  z-index: 2;
}
.pkg-media { aspect-ratio: 16/10; overflow: hidden; }
.pkg-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pkg-card:hover .pkg-media img { transform: scale(1.06); }
.pkg-body { padding: 28px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.pkg-size { color: var(--orange-600); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: .04em; }

/* Battery brand cards */
.brand-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.brand-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(234,149,29,0.4); }
.brand-card .brand-name { font-family: var(--font-head); font-weight: 800; color: var(--navy-900); font-size: 1.14rem; margin-bottom: 6px; }
.brand-card .brand-meta { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--orange-600); margin-bottom: 10px; }
.brand-card p { font-size: 0.92rem; margin-bottom: 0; }

/* Brand marquee strip (logo carousel) */
.brand-strip { overflow: hidden; padding: 26px 0; border-top: 1px solid var(--ink-100); border-bottom: 1px solid var(--ink-100); background: var(--white); }
.brand-track { display: flex; align-items: center; gap: 72px; width: max-content; animation: marquee 36s linear infinite; }
.brand-strip:hover .brand-track { animation-play-state: paused; }
.brand-item { display: inline-flex; align-items: center; gap: 10px; flex: none; }
.brand-item img {
  height: 34px; width: auto; max-width: 170px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .62;
  transition: filter .3s, opacity .3s;
}
.brand-item:hover img { filter: none; opacity: 1; }
.brand-item .brand-word {
  font-family: var(--font-head);
  font-size: 1.15rem; font-weight: 800;
  color: var(--ink-500);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Battery product photo inside brand cards */
.brand-photo {
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, #fafbfc, var(--ink-050));
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
}
.brand-photo img { max-height: 88%; max-width: 88%; object-fit: contain; transition: transform .4s var(--ease); }
.brand-card:hover .brand-photo img { transform: scale(1.05); }
.asset-credit { font-size: 0.72rem; color: var(--ink-300); margin-top: 18px; }
.asset-credit a { text-decoration: underline; }

/* Accreditation badge chips */
.hero-badges { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.badge-chip {
  display: inline-flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,0.97);
  border-radius: 14px;
  padding: 10px 18px 10px 12px;
  box-shadow: var(--shadow-md);
}
.badge-chip img { height: 32px; width: auto; max-width: 90px; object-fit: contain; }
.badge-chip .badge-text { line-height: 1.2; font-size: 0.82rem; font-weight: 800; color: var(--navy-900); }
.badge-chip .badge-text small { display: block; font-weight: 700; color: var(--ink-500); font-size: 0.64rem; letter-spacing: .06em; text-transform: uppercase; }

/* ---- Testimonials ---- */
.testimonial {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.stars { color: var(--orange-500); letter-spacing: 2px; margin-bottom: 14px; font-size: 1rem; }
.testimonial p { color: var(--ink-700); }
.reviewer { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 18px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.reviewer-name { font-weight: 700; color: var(--navy-900); }
.reviewer-loc { font-size: 0.82rem; color: var(--ink-500); }

/* ---- Steps / process ---- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
@media (max-width: 1080px) { .steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 26px 22px; border-radius: var(--radius-md); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); }
.step-num {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--grad-orange);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: var(--shadow-orange);
}
.step h4 { margin-bottom: 8px; }
.step p { font-size: 0.9rem; margin-bottom: 0; }
.steps-light .step { background: var(--white); border: 1px solid var(--ink-100); }

/* ---- Accordion / FAQ ---- */
.accordion-item {
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}
.accordion-item.open { border-color: rgba(234,149,29,0.5); box-shadow: var(--shadow-sm); }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy-900);
  font-family: var(--font-body);
}
.accordion-trigger .plus { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--orange-50); color: var(--orange-600); display: flex; align-items: center; justify-content: center; transition: transform .3s var(--ease); font-size: 1.1rem; }
.accordion-item.open .plus { transform: rotate(45deg); background: var(--orange-500); color: var(--white); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.accordion-panel-inner { padding: 0 24px 22px; color: var(--ink-500); }

/* ---- Table ---- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--ink-100); }
table { width: 100%; border-collapse: collapse; min-width: 560px; }
th, td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--ink-100); font-size: 0.95rem; }
th { background: var(--navy-050); color: var(--navy-900); font-weight: 700; }
tr:last-child td { border-bottom: none; }

/* ---- Chips ---- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--navy-050); color: var(--navy-900);
  font-size: 0.82rem; font-weight: 700;
  padding: 8px 14px; border-radius: var(--radius-pill);
}
.chip-orange { background: var(--orange-50); color: var(--orange-700); }

/* ---- Forms ---- */
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.88rem; color: var(--navy-900); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--ink-100);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--ink-700);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(234,149,29,0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-error { color: #c0392b; font-size: 0.8rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #c0392b; }
.field.invalid .field-error { display: block; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-note { font-size: 0.82rem; color: var(--ink-500); }
.recaptcha-note { font-size: 0.72rem; color: var(--ink-300); margin-top: 6px; }
.recaptcha-note a { text-decoration: underline; }
/* v3 badge hidden — attribution text shown in the forms instead (per Google
   branding guidelines), so it can't collide with the floating call buttons. */
.grecaptcha-badge { visibility: hidden; }
.form-status { margin-top: 16px; padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 600; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #eafaf0; color: #1f9d55; }
.form-status.err { background: #fdecea; color: #c0392b; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

/* ---- Rebate band ---- */
.rebate-band {
  background: var(--grad-navy);
  border-radius: var(--radius-xl);
  padding: 56px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.rebate-band::after {
  content: "";
  position: absolute; inset: auto -10% -50% auto;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(234,149,29,0.3), transparent 70%);
}
.rebate-band h2 { color: var(--white); }
.rebate-band p { color: #b9cddc; }
.rebate-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; position: relative; z-index: 1; }
@media (max-width: 880px) { .rebate-cols { grid-template-columns: 1fr; } .rebate-band { padding: 40px 28px; } }
.rebate-col {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 26px;
}
.rebate-col .rebate-amount { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; color: var(--orange-400); margin-bottom: 6px; }
.rebate-col h4 { color: var(--white); margin-bottom: 8px; }
.rebate-col p { font-size: 0.9rem; margin-bottom: 0; }

/* ---- CTA band ---- */
.cta-band {
  border-radius: var(--radius-xl);
  padding: 60px;
  background: var(--grad-orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.92); margin-bottom: 0; }
.cta-band .btn-navy { box-shadow: 0 10px 24px rgba(0,0,0,0.25); position: relative; z-index: 1; }
@media (max-width: 640px) { .cta-band { padding: 40px 28px; } }

/* ---- Footer ---- */
.site-footer { background: var(--navy-950); color: #b9cddc; padding-top: 76px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.09); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-logo { display: inline-flex; margin-bottom: 20px; }
.footer-logo img { height: 40px; width: auto; }
.site-footer h4 { color: var(--white); font-size: 0.9rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #b9cddc; transition: color .2s; }
.footer-links a:hover { color: var(--orange-400); }
.footer-contact li { margin-bottom: 14px; display: flex; gap: 10px; align-items: flex-start; color: #b9cddc; }
.footer-contact svg { flex: none; color: var(--orange-400); margin-top: 4px; }
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.social-row a:hover { background: var(--orange-500); transform: translateY(-2px); }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.84rem; color: #7f9db2; }
.footer-bottom a { color: #7f9db2; }
.footer-bottom a:hover { color: var(--orange-400); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---- Utilities ---- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mx-auto { margin-left: auto; margin-right: auto; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; }
.divider { height: 1px; background: var(--ink-100); border: none; margin: 48px 0; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--orange-500); color: white;
  padding: 12px 18px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
/* Floating contact buttons (WhatsApp + Call) */
.float-contact {
  position: fixed; right: 20px; bottom: 92px; z-index: 470;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.float-btn {
  display: inline-flex; align-items: center;
  height: 58px;
  border-radius: 999px;
  padding: 0 17px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 10px 28px rgba(7,31,49,0.3);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.float-btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 36px rgba(7,31,49,0.35); }
.float-btn svg { flex: none; }
.float-btn .float-label {
  max-width: 0; overflow: hidden; opacity: 0;
  transition: max-width .35s var(--ease), opacity .25s var(--ease), margin .35s var(--ease);
}
.float-btn:hover .float-label { max-width: 180px; opacity: 1; margin-left: 10px; }
.float-whatsapp { background: #25D366; position: relative; }
.float-whatsapp::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: pulse-wa 2.4s infinite;
  pointer-events: none;
}
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.float-call { background: var(--grad-orange); }
@media (max-width: 640px) {
  .float-contact { bottom: 86px; right: 14px; }
  .back-to-top { display: none !important; }
}

.back-to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 400;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy-900); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .3s, transform .3s;
  border: none;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* Sticky mobile call bar */
.mobile-cta-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 450;
  background: var(--white);
  border-top: 1px solid var(--ink-100);
  padding: 10px 16px;
  gap: 10px;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.08);
}
@media (max-width: 640px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 68px; }
  .back-to-top { bottom: 84px; }
}
.mobile-cta-bar a { flex: 1; text-align: center; }

/* Policy / long-form pages */
.prose { max-width: 780px; }
.prose h2 { margin-top: 40px; }
.prose h3 { margin-top: 28px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.prose ul li { margin-bottom: 8px; color: var(--ink-500); }
.prose strong { color: var(--navy-900); }
.updated-badge { display: inline-block; background: var(--navy-050); color: var(--navy-900); font-size: 0.82rem; font-weight: 700; padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 24px; }
