/* ============================================================
   SolarFutures — Apple-inspired theme
   Light canvas, oversized type, soft shadows, pill buttons
   ============================================================ */

/* ===== TYPEFACE =====
   Heebo, self-hosted from /fonts rather than pulled from Google Fonts.
   Two reasons: no third-party request means no visitor IP leaves the site
   (privacy.html names FormSubmit as the only processor), and it saves a DNS
   + TLS round trip before first paint. One variable file per subset covers
   weights 400-900, which is the full range the site uses.
   Arrows (U+2190/2192) and ✕ fall through to the system stack by design -
   they sit in Google's "symbols" subset, not worth 30KB for four glyphs. */
@font-face {
  font-family: 'Heebo';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('fonts/heebo-hebrew.woff2') format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
@font-face {
  font-family: 'Heebo';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('fonts/heebo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ===== RESET & TOKENS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ============================================================
     COLOUR TOKENS
     Every colour on the site comes from this block. If a value is
     not here, it does not belong in a rule below.
     ============================================================ */

  /* --- brand blue --------------------------------------------- */
  --blue:        #0A84FF;  /* primary actions */
  --blue-strong: #0066CC;  /* hover + emphasis text on light surfaces */
  --blue-deep:   #155D8C;  /* accent text — AA-safe on every sky tint */
  --blue-bright: #5AC8FA;  /* light accent — DARK backgrounds only */
  --blue-glow:   #34AAFF;  /* gradient partner for --blue-bright */

  /* --- sky ramp: surfaces, palest to most saturated ------------ */
  --surface:   #FFFFFF;    /* cards */
  --surface-2: #FAFAFC;    /* table heads, row hover */
  --sky-50:    #EBF6FF;
  --sky-100:   #E9F2FC;    /* tinted chips, info alerts, gradients */
  --sky-200:   #D0E8FF;    /* highlighted table rows, warning alerts */
  --sky-300:   #C8E4FF;    /* page background */
  --sky-400:   #B0D5EE;    /* alternating sections */
  --sky-500:   #85BAD8;    /* borders */

  /* --- ink ----------------------------------------------------- */
  --ink:        #1D1D1F;
  --ink-soft:   #3A3A3C;   /* dark-button hover */
  --ink-muted:  #59595D;   /* AA-safe on every surface above */
  --ink-invert: #F5F5F7;   /* text on near-black */
  --ink-deep:   #0A1628;   /* dark navy panels */

  /* --- status -------------------------------------------------- */
  --green: #1F9D55;  --green-dark: #19773F;  --green-bg: #EAF7EF;
  --red:   #E0331F;  --red-dark:   #C0331F;  --red-bg:   #FDEEEC;
  --red-deep: #AA2718;     /* red TEXT on tinted surfaces — AA-safe everywhere */
  --amber: #F5B50A;  --amber-bg:   #FFF8E1;  --amber-bg-deep: #FFEAA7;
  --whatsapp: #25D366;     /* brand-locked — never merge */

  /* --- text on dark surfaces (video hero, dark sections, cookie bar) ---
     Three deliberate steps. Do not invent intermediate alphas. */
  --on-dark:       rgba(255,255,255,.90);  /* primary */
  --on-dark-2:     rgba(255,255,255,.78);  /* secondary body copy */
  --on-dark-faint: rgba(255,255,255,.50);  /* tertiary, dismiss controls */
  --on-dark-line:  rgba(255,255,255,.30);  /* hairlines */

  /* --- legacy aliases ------------------------------------------
     ~96 inline style="" attributes across the HTML reference these
     names, so they stay. The names are historical and inaccurate
     (--yellow is blue, --navy is near-black). Use the tokens above
     in any new CSS; treat these as read-only compatibility shims. */
  --yellow:       var(--blue);
  /* --blue-strong (#0066CC) only clears AA on white — it drops to 3.6 on
     --sky-400. This alias is text in ~22 inline styles, so it points at
     --blue-deep, which clears 4.5 on every surface in the ramp. */
  --yellow-dark:  var(--blue-deep);
  --yellow-light: var(--sky-100);
  --navy:         var(--ink);
  --navy-light:   #2C2C2E;
  --text:         var(--ink);
  --text-muted:   var(--ink-muted);
  --bg:           var(--sky-50);
  --bg-page:      var(--sky-300);
  --bg-light:     var(--sky-400);
  --bg-card:      var(--surface);
  --border:       var(--sky-500);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.07);
  --shadow: 0 2px 6px rgba(0,0,0,.08);
  --shadow-lg: 0 6px 18px rgba(0,0,0,.11);
  --radius: 4px;
  --radius-sm: 3px;
  --pill: 3px;
}

html { direction: rtl; font-size: 16px; scroll-behavior: smooth; }

body {
  /* Heebo first (sharp geometric Hebrew); the Hebrew-aware system stack stays
     behind it as the fallback if the font file fails to load. */
  font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI',
               'Helvetica Neue', 'Noto Sans Hebrew', Arial, sans-serif;
  color: var(--text);
  background: var(--bg-page);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  animation: pageFade .45s ease both;
}
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }

/* cross-page fade (View Transitions API — progressive enhancement) */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation-duration: .22s; }
::view-transition-new(root) { animation-duration: .30s; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ===== TYPOGRAPHY — big, confident, tight ===== */
h1 { font-size: clamp(2.6rem, 6vw, 4.3rem); font-weight: 800; line-height: 1.08; letter-spacing: -.015em; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.6rem); font-weight: 800; line-height: 1.15; letter-spacing: -.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 700; line-height: 1.3; }
h4 { font-size: 1.08rem; font-weight: 700; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-yellow { color: var(--yellow-dark); }

/* ===== LAYOUT ===== */
.container { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }
.section-dark { background: #000000; color: var(--ink-invert); }
.section-light { background: var(--bg-light); }
.section-yellow { background: var(--yellow-light); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }

/* ===== NAVBAR — thin, translucent, blurred ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,251,253,.78);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .25s;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .55rem 1.5rem; max-width: 1080px; margin: 0 auto;
}
.navbar-logo {
  display: flex; align-items: center; gap: .45rem;
  font-size: 1.1rem; font-weight: 800; color: var(--text);
  white-space: nowrap; letter-spacing: -.01em;
  order: 2;
}
.navbar-logo span { color: var(--yellow-dark); }
.nav-toggle { order: 1; }
.navbar-nav { display: flex; gap: .1rem; align-items: center; order: 0; }
.navbar-nav a {
  color: rgba(29,29,31,.78);
  padding: .42rem .8rem;
  border-radius: var(--pill);
  font-size: .9rem;
  font-weight: 500;
  transition: color .18s, background .18s;
}
.navbar-nav a:hover { color: var(--text); background: rgba(0,0,0,.05); }
.navbar-nav a.active { color: var(--text); font-weight: 700; }
.navbar-cta {
  background: var(--text) !important; color: #fff !important;
  font-weight: 600 !important; border-radius: var(--pill) !important;
  padding: .42rem 1.15rem !important; font-size: .88rem !important;
}
.navbar-cta:hover { background: var(--ink-soft) !important; }

/* mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); margin: 5px 0; border-radius: 0; transition: .3s;
}

/* ===== HERO — centered, airy, Apple-poster style ===== */
.hero {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--sky-100) 100%);
  color: var(--text);
  padding: 6.5rem 0 5rem;
  position: relative; overflow: hidden;
  text-align: center;
}
.hero-inner { display: block; max-width: 880px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  color: var(--yellow-dark);
  font-size: .95rem; font-weight: 700;
  letter-spacing: .01em;
  margin-bottom: 1.1rem;
  animation: riseIn .7s ease both;
}
.hero h1 { margin-bottom: 1.3rem; animation: riseIn .7s .08s ease both; }
.hero h1 mark {
  background: none;
  background-image: linear-gradient(110deg, var(--blue-strong), var(--blue), var(--blue-bright));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-muted); margin: 0 auto 2.2rem; max-width: 620px;
  animation: riseIn .7s .16s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  animation: riseIn .7s .24s ease both;
}
.hero-bullets {
  display: flex; flex-wrap: wrap; gap: .4rem 1.8rem; justify-content: center;
  margin: 2rem auto 0; max-width: 760px;
  animation: riseIn .7s .32s ease both;
}
.hero-bullets li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .92rem; color: var(--text-muted); font-weight: 500;
}
.hero-bullets li::before {
  content: '✓';
  color: var(--yellow-dark);
  font-weight: 900; font-size: .9rem;
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* hero stats — bare numbers, Apple style */
.hero-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  margin: 4.5rem auto 0; max-width: 880px;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800;
  letter-spacing: -.02em; line-height: 1;
  background-image: linear-gradient(110deg, var(--blue-strong), var(--blue));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-stat .label { font-size: .85rem; color: var(--text-muted); margin-top: .5rem; }

/* ===== VIDEO HERO ===== */
.hero-video {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  display: flex;
  align-items: center;
  background: var(--ink-deep);
}
.hero-video__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 1;
}
.hero-video .container {
  position: relative;
  z-index: 2;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}
.hero-video__text {
  max-width: 680px;
  text-align: right;
}
.hero-video .hero-badge {
  background: rgba(255, 255, 255, .14);
  color: var(--on-dark);
  border-radius: 3px;
  padding: .32rem 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: .88rem;
  letter-spacing: .01em;
}
.hero-video h1 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .5);
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-top: 1rem;
  margin-bottom: 1.2rem;
  animation: riseIn .7s .08s ease both;
}
.hero-video h1 mark {
  background: none;
  background-image: linear-gradient(110deg, var(--blue-bright), var(--blue-glow));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-video .hero-sub {
  color: var(--on-dark-2);
  max-width: none;
  margin: 0 0 2rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .35);
  animation: riseIn .7s .16s ease both;
}
.hero-cta-block {
  display: inline-block;
  text-align: right;
  animation: riseIn .7s .24s ease both;
}
.hero-cta-note {
  margin: .6rem 0 0;
  font-size: .87rem;
}
.hero-cta-note a {
  color: var(--on-dark-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .18s;
}
.hero-cta-note a:hover { color: #fff; }
.hero-video .hero-bullets {
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
  gap: .65rem;
  margin: 2rem 0 0;
  animation: riseIn .7s .32s ease both;
}
.hero-video .hero-bullets li {
  color: var(--on-dark);
  text-shadow: 0 1px 4px rgba(0, 0, 0, .3);
  font-size: .97rem;
}
.hero-video .hero-bullets li::before { color: var(--blue-bright); }

/* stats band below the video */
.hero-stats-band {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.hero-stats-band .hero-stats-row { margin-top: 0; }

/* ===== BUTTONS — pills ===== */
.btn {
  display: inline-block; padding: .85rem 1.9rem;
  border-radius: var(--pill); font-weight: 600; font-size: 1rem;
  cursor: pointer; border: none;
  transition: transform .18s, box-shadow .18s, background .18s, opacity .18s;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(.985); }
.btn-primary { background: var(--text); color: #fff; }
.btn-primary:hover { background: var(--ink-soft); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.section-dark .btn-primary,
.hero .btn-primary { }
.btn-outline {
  background: transparent; color: var(--text);
  box-shadow: inset 0 0 0 1.5px rgba(29,29,31,.3);
}
.btn-outline:hover { background: rgba(0,0,0,.04); box-shadow: inset 0 0 0 1.5px rgba(29,29,31,.6); }
.section-dark .btn-outline { color: var(--ink-invert); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.45); }
.section-dark .btn-outline:hover { background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.8); }
.btn-dark { background: var(--blue); color: #fff; }
.btn-dark:hover { background: var(--blue-strong); box-shadow: 0 8px 24px rgba(10,132,255,.35); }
.section-dark .btn-primary { background: var(--ink-invert); color: var(--ink); }
.section-dark .btn-primary:hover { background: #FFFFFF; }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1.1rem; }

/* ===== CARDS — borderless, soft ===== */
.card {
  background: var(--bg-card); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 2rem;
  border: none;
  transition: box-shadow .3s, transform .3s;
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.card-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.card-title { font-size: 1.25rem; font-weight: 700; margin-bottom: .6rem; letter-spacing: -.01em; }

/* ===== SECTION HEADER — eyebrow + big title ===== */
.section-header { text-align: center; margin-bottom: 3.6rem; }
.section-header .tag {
  display: inline-block; background: none; color: var(--yellow-dark);
  padding: 0; border-radius: 0; font-size: .95rem; font-weight: 700;
  margin-bottom: .7rem; letter-spacing: .01em;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); max-width: 640px; margin: 0 auto; font-size: 1.08rem; }

/* generic standalone tag (used inline on some pages) */
.tag {
  display: inline-block; background: var(--yellow-light); color: var(--yellow-dark);
  padding: .25rem .85rem; border-radius: var(--pill); font-size: .83rem; font-weight: 700;
}
.section-header .tag { background: none; padding: 0; }

/* ===== TABLES ===== */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); background: #fff; }
table { width: 100%; border-collapse: collapse; background: #fff; font-size: .95rem; }
thead { background: var(--surface-2); color: var(--text); }
thead th { padding: 1rem 1.3rem; font-weight: 600; text-align: right; white-space: nowrap; color: var(--text-muted); font-size: .85rem; letter-spacing: .02em; border-bottom: 1px solid var(--border); }
tbody td { padding: 1rem 1.3rem; border-bottom: 1px solid var(--border); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--surface-2); }
.td-highlight { font-weight: 700; color: var(--yellow-dark); }

/* ROI comparison table */
.roi-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius); overflow: hidden; }
.roi-table thead th { background: var(--surface-2); color: var(--text-muted); }
.roi-table tbody td { background: #fff; border-bottom: 1px solid var(--border); padding: 1.05rem 1.3rem; }
.roi-table tbody tr:last-child td { border-bottom: none; }
.roi-table .best { background: var(--yellow-light); font-weight: 700; }
.roi-table .best td { background: var(--yellow-light); }
.roi-table .best .roi-val { color: var(--yellow-dark); font-size: 1.15em; }

/* ===== PROCESS STEPS ===== */
.steps { counter-reset: step; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.6rem;
  margin-bottom: 2.8rem; align-items: flex-start;
}
.step-num {
  counter-increment: step;
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--text); color: #fff;
  border-radius: 3px; display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800;
}
.step-num::before { content: counter(step); }
.step-body h3 { margin-bottom: .4rem; }

/* ===== ALERTS — soft tinted panels ===== */
.alert {
  border-radius: var(--radius); padding: 1.8rem 2rem;
  border-right: none; margin: 2rem 0;
}
.alert-warning { background: var(--yellow-light); }
.alert-warning strong { color: var(--yellow-dark); }
.alert-info { background: var(--sky-100); }
.alert-info strong { color: var(--blue-deep); }
.alert-success { background: var(--green-bg); }
.alert-success strong { color: var(--green-dark); }

/* ===== FAQ — hairline accordion ===== */
.faq-item {
  border: none; border-bottom: 1px solid var(--border);
  border-radius: 0; margin-bottom: 0; overflow: hidden;
  background: transparent;
}
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem .4rem; cursor: pointer;
  font-weight: 600; font-size: 1.12rem; letter-spacing: -.005em;
  background: transparent; transition: color .15s;
}
.faq-q:hover { color: var(--yellow-dark); }
.faq-q .icon {
  width: 28px; height: 28px; background: var(--bg-light);
  color: var(--text); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0; transition: transform .3s, background .2s;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--yellow-light); color: var(--yellow-dark); }
.faq-a {
  padding: 0 .4rem; max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  color: var(--text-muted); font-size: 1rem;
}
.faq-item.open .faq-a { max-height: 640px; padding: 0 .4rem 1.6rem; }

/* ===== CONTACT FORM ===== */
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: .45rem; font-size: .92rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .85rem 1.1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; color: var(--text);
  background: #fff; transition: border-color .15s, box-shadow .15s;
  direction: rtl;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(10,132,255,.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.checkbox-group { display: flex; flex-direction: column; gap: .5rem; }
.checkbox-label { display: flex; align-items: center; gap: .6rem; cursor: pointer; font-weight: 500; }
.checkbox-label input { width: auto; accent-color: var(--yellow-dark); }

/* ===== PAGE HERO (inner pages) — light + big ===== */
.page-hero {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--sky-100) 100%);
  color: var(--text); padding: 5rem 0 4rem; text-align: center;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.page-hero h1 { margin-bottom: 1rem; animation: riseIn .7s ease both; }
.page-hero p {
  color: var(--text-muted); font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 640px; margin: 0 auto; animation: riseIn .7s .1s ease both;
}

/* ===== HIGHLIGHT BOXES ===== */
.highlight-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin: 2.5rem 0; }
.highlight-box {
  background: #fff; border-radius: var(--radius);
  border: none; padding: 1.8rem 1.4rem;
  text-align: center; box-shadow: var(--shadow-sm);
}
.highlight-box .icon { font-size: 2rem; margin-bottom: .6rem; }
.highlight-box .num { font-size: 2.1rem; font-weight: 800; color: var(--yellow-dark); letter-spacing: -.02em; }
.highlight-box p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* ===== FOOTER — light, quiet ===== */
footer {
  background: var(--bg-light); color: var(--text-muted);
  padding: 3.5rem 0 2rem; font-size: .9rem;
  border-top: 1px solid var(--border);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand .logo { font-size: 1.15rem; font-weight: 800; color: var(--text); margin-bottom: .8rem; }
.footer-brand p { font-size: .88rem; line-height: 1.6; }
.footer-col h4 { color: var(--text); font-size: .9rem; font-weight: 700; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a { font-size: .88rem; transition: color .15s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem; text-align: center; font-size: .8rem;
  color: var(--ink-muted);
}

/* ===== UTILITIES ===== */
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.gap-1 { gap: .5rem; }
.flex { display: flex; align-items: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.inline-icon { font-size: 1.3em; vertical-align: middle; margin-left: .3em; }

/* ===== BADGE ===== */
.badge {
  display: inline-block; padding: .22rem .75rem; border-radius: var(--pill);
  font-size: .78rem; font-weight: 700;
}
.badge-yellow { background: var(--yellow-light); color: var(--yellow-dark); }
.badge-green { background: var(--green-bg); color: var(--green-dark); }
.badge-red { background: var(--red-bg); color: var(--red-dark); }

/* ===== FLOATING WHATSAPP ===== */
.float-wa {
  position: fixed; bottom: 1.4rem; left: 1.4rem; z-index: 200;
  width: 56px; height: 56px; border-radius: 3px;
  /* same reason as .mcta-wa: the glyph is the only thing identifying this
     button, so it needs real contrast against the brand green. */
  background: var(--whatsapp); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
}
.float-wa:hover { transform: scale(1.08); box-shadow: 0 10px 32px rgba(37,211,102,.55); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 200;
  width: 44px; height: 44px; border-radius: 3px;
  background: rgba(29,29,31,.85); color: #fff;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: none; cursor: pointer; font-size: 1.2rem; font-weight: 800;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s, transform .25s, visibility .25s;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: #000; }

/* ===== MOBILE STICKY CTA BAR ===== */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; right: 0; left: 0; z-index: 300;
  background: rgba(251,251,253,.92);
  -webkit-backdrop-filter: saturate(180%) blur(20px); backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--border);
  padding: .5rem .6rem calc(.5rem + env(safe-area-inset-bottom));
  gap: .5rem;
}
.mcta {
  flex: 1; text-align: center; padding: .68rem .3rem;
  border-radius: var(--pill); font-weight: 600; font-size: .88rem;
  white-space: nowrap;
}
.mcta-call { background: var(--bg-light); color: var(--text); }
/* white on WhatsApp green is 1.98:1 - illegible. Ink keeps the brand colour
   and clears AA at 8.49:1. */
.mcta-wa { background: var(--whatsapp); color: var(--ink); }
.mcta-quote { background: var(--text); color: #fff; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.65,.3,1), transform .7s cubic-bezier(.2,.65,.3,1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ===== HOW IT WORKS ===== */
.hiw-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; position: relative; }
.hiw-step {
  background: #fff; border: none; border-radius: var(--radius);
  padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow-sm);
}
.hiw-num {
  width: 42px; height: 42px; margin: 0 auto 1rem;
  background: var(--text); color: #fff;
  border-radius: 3px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
}
.hiw-step .emoji { font-size: 1.9rem; margin-bottom: .6rem; }
.hiw-step h4 { margin-bottom: .5rem; }
.hiw-step p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--bg-page); border-top: none; border-bottom: 1px solid var(--border); }
.trust-bar-inner {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 2.4rem;
  padding: 1.1rem 1.5rem; max-width: 1080px; margin: 0 auto;
  color: var(--text-muted); font-size: .88rem; font-weight: 500;
}
.trust-bar-inner span::before { content: '✓ '; color: var(--yellow-dark); font-weight: 800; }

/* ===== BRAND STRIP ===== */
.brand-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: .8rem 1rem; margin-top: 2rem;
}
.brand-chip {
  background: #fff; border: 1px solid var(--border); border-radius: var(--pill);
  padding: .45rem 1.3rem; font-weight: 700; font-size: .9rem; color: var(--text-muted);
  letter-spacing: .02em;
}

/* ===== TESTIMONIALS ===== */
.testimonial {
  background: #fff; border: none; border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: .8rem;
}
.testimonial .stars { color: var(--amber); font-size: 1rem; letter-spacing: .18em; }
.testimonial blockquote { font-size: 1rem; color: var(--text); flex: 1; line-height: 1.7; }
.testimonial .who { display: flex; align-items: center; gap: .8rem; border-top: 1px solid var(--border); padding-top: 1.1rem; }
.testimonial .avatar {
  width: 44px; height: 44px; border-radius: 3px; flex-shrink: 0;
  background: var(--yellow-light); color: var(--yellow-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.05rem;
}
.testimonial .who strong { display: block; font-size: .95rem; }
.testimonial .who span { font-size: .82rem; color: var(--text-muted); }

/* ===== ROI CALCULATOR ===== */
.calc-box {
  background: #fff; border: none; border-radius: 4px;
  box-shadow: var(--shadow); padding: 3rem; max-width: 900px; margin: 0 auto;
}
.calc-controls label { font-weight: 700; font-size: 1.1rem; display: block; margin-bottom: 1rem; }
.calc-controls input[type="range"] {
  width: 100%; accent-color: var(--yellow-dark); height: 8px; cursor: pointer;
}
.calc-note { text-align: center; color: var(--text-muted); margin: .9rem 0 2rem; font-size: .95rem; }
.calc-note strong { color: var(--yellow-dark); font-size: 1.2em; }
.calc-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.6rem; }
.calc-tile {
  background: var(--bg-light); border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem; text-align: center;
}
.calc-tile .label { font-size: .8rem; color: var(--text-muted); margin-bottom: .3rem; }
.calc-tile .val { font-size: 1.3rem; font-weight: 800; color: var(--text); letter-spacing: -.01em; }
.calc-tile.charge .val { color: var(--red); }
.calc-tile.accent { background: var(--yellow-light); }
.calc-tile.accent .val { color: var(--yellow-dark); font-size: 1.55rem; }
.calc-disclaimer { font-size: .8rem; color: var(--ink-muted); text-align: center; margin-bottom: 1.6rem; }

/* ===== HERO PHOTO ===== */
.scene-card {
  position: relative;
  max-width: 820px;
  margin: 3.5rem auto 0;
  border-radius: 4px;
  border: none;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform .2s ease-out;
  will-change: transform;
  animation: riseIn .8s .4s ease both;
}
.scene-card img {
  display: block; width: 100%; height: 460px;
  object-fit: cover; object-position: center 40%;
}

.scene-sun-glow {
  animation: sunPulse 4.5s ease-in-out infinite;
  transform-box: fill-box; transform-origin: center;
}
@keyframes sunPulse {
  0%, 100% { transform: scale(1); opacity: .45; }
  50% { transform: scale(1.18); opacity: .7; }
}
.scene-cloud-a { animation: cloudDrift 18s ease-in-out infinite alternate; }
.scene-cloud-b { animation: cloudDrift 26s ease-in-out infinite alternate-reverse; }
@keyframes cloudDrift {
  from { transform: translateX(-14px); }
  to { transform: translateX(20px); }
}
.scene-glare { animation: glareSweep 7s linear infinite; }
@keyframes glareSweep {
  0%   { transform: translate(-40px, -20px); opacity: 0; }
  12%  { opacity: .55; }
  42%  { opacity: .55; }
  55%  { transform: translate(190px, 95px); opacity: 0; }
  100% { transform: translate(190px, 95px); opacity: 0; }
}

/* ===== SERVICE CARD ART ===== */
.card-art {
  margin: -2rem -2rem 1.4rem;
  display: block;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.card-art img {
  display: block; width: 100%; height: 150px;
  object-fit: cover; object-position: center;
  transition: transform .5s ease;
}
.card:hover .card-art img { transform: scale(1.04); }

/* ===== PAGE HERO ART ===== */
.page-hero-art {
  max-width: 760px; margin: 2.5rem auto 0;
  border-radius: 4px; overflow: hidden;
  border: none;
  box-shadow: var(--shadow-lg);
  animation: riseIn .8s .2s ease both;
}
.page-hero-art img {
  display: block; width: 100%; height: 380px;
  object-fit: cover; object-position: center 55%;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  body, .hero-badge, .hero h1, .hero-sub, .hero-actions, .hero-bullets,
  .scene-card, .page-hero h1, .page-hero p, .page-hero-art { animation: none; }
  .scene-sun-glow, .scene-cloud-a, .scene-cloud-b, .scene-glare { animation: none; }
  .scene-card, .reveal { transition: none; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .hiw-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 5rem 0; }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4, .hiw-grid { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: 1fr 1fr; }
  .hero-video { min-height: 520px; }
  .hero-video .container { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .hero-video__text { max-width: 100%; }
  .hero-cta-block { display: block; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; text-align: center; }
  .navbar-nav { display: none; flex-direction: column; position: absolute;
    top: 100%; right: 0; left: 0;
    background: rgba(251,251,253,.97);
    -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    padding: 1rem; box-shadow: var(--shadow); border-bottom: 1px solid var(--border); }
  .navbar-nav.open { display: flex; }
  .navbar-nav a { width: 100%; text-align: center; padding: .7rem; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .navbar-inner { position: relative; }
  .mobile-cta-bar { display: flex; }
  .float-wa, .back-to-top { display: none; }
  body { padding-bottom: 64px; }
  .calc-results { grid-template-columns: 1fr 1fr; }
  .calc-box { padding: 1.6rem; border-radius: 4px; }
  .section { padding: 4rem 0; }
  .urgency-inner { padding: .65rem 1rem; flex-direction: column; gap: .4rem; }
  .urgency-close { position: static; transform: none; }
}

/* ===== URGENCY BANNER ===== */
.urgency-banner {
  background: var(--ink-deep);
  color: var(--sky-100);
  font-size: .87rem;
  font-weight: 500;
}
.urgency-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; padding: .6rem 3.5rem; flex-wrap: wrap;
  position: relative; text-align: center;
}
.urgency-cta {
  color: var(--amber); font-weight: 700; white-space: nowrap;
  text-decoration: underline; text-underline-offset: 3px;
  transition: opacity .15s;
}
.urgency-cta:hover { opacity: .8; }
.urgency-close {
  background: none; border: none; color: var(--on-dark-faint);
  cursor: pointer; font-size: 1rem; line-height: 1; padding: .2rem .5rem;
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  transition: color .15s; font-family: inherit;
}
.urgency-close:hover { color: white; }

/* ===== CALC LEAD CAPTURE ===== */
.calc-lead-capture {
  background: var(--yellow-light);
  border: 1.5px solid var(--yellow);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  margin: 1.4rem 0 .5rem;
  text-align: center;
}
.calc-lead-capture .title { font-size: 1.08rem; font-weight: 700; margin-bottom: .35rem; }
.calc-lead-capture .sub { font-size: .88rem; color: var(--text-muted); margin-bottom: 1.1rem; }
.calc-lead-form { display: flex; gap: .65rem; flex-wrap: wrap; justify-content: center; max-width: 480px; margin: 0 auto; }
.calc-lead-form input {
  flex: 1; min-width: 130px; padding: .7rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--pill);
  font-family: inherit; font-size: .9rem; color: var(--text);
  background: #fff; direction: rtl;
  transition: border-color .15s;
}
.calc-lead-form input:focus { outline: none; border-color: var(--yellow); }
.calc-lead-form button {
  background: var(--yellow-dark); color: #fff;
  border: none; border-radius: var(--pill);
  padding: .7rem 1.4rem; font-size: .9rem; font-weight: 700;
  cursor: pointer; font-family: inherit; white-space: nowrap;
  transition: background .18s;
}
.calc-lead-form button:hover { background: var(--blue-strong); }
.calc-lead-success { color: var(--green-dark); font-weight: 600; font-size: 1rem; padding: .5rem 0; margin-top: .5rem; }

/* ===== VERIFIED BADGE ===== */
.verified-badge {
  display: inline-block;
  background: var(--green-bg); color: var(--green-dark);
  font-size: .72rem; font-weight: 700;
  padding: .18rem .65rem; border-radius: var(--pill);
  margin-bottom: .6rem; letter-spacing: .01em;
}

/* ===== SKY-BLUE THEME — targeted overrides ===== */

/* Hero mark: replace hardcoded blue gradient with white + shadow for contrast */
.hero h1 mark {
  background-image: none;
  -webkit-background-clip: initial; background-clip: initial;
  -webkit-text-fill-color: #FFFFFF; color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0,50,130,.55), 0 1px 3px rgba(0,30,90,.7);
}

/* Hero badge: pill with semi-dark sky bg + white text */
.hero-badge {
  background: rgba(0,50,100,.25);
  color: #FFFFFF;
  border-radius: var(--pill);
  padding: .3rem 1rem;
}

/* Section eyebrow tags: white on sky-blue section backgrounds */
.section-header .tag { color: var(--blue-deep); }  /* AA-safe on every sky tint; was #FFF and effectively invisible */

/* Nav logo "Solar" word: keep readable on frosted/scrolled nav */
.navbar-logo span { color: var(--yellow-dark); }

/* Accent element backgrounds: dark sky blue so white text is legible */
.calc-tile.accent { background: var(--blue-deep); }
.calc-tile.accent .val { color: #FFFFFF; }
/* the accent tile is dark — its label must invert too, or it renders grey-on-blue */
.calc-tile.accent .label { color: var(--on-dark-2); }
/* --red is only AA-safe on white; the calculator sits on a sky tint */
.calc-tile.charge .val { color: var(--red-deep); }
.testimonial .avatar { background: var(--blue-deep); color: #FFFFFF; }
.badge-yellow { background: var(--blue-deep); color: #FFFFFF; }
.faq-item.open .faq-q .icon { background: var(--blue-deep); color: #FFFFFF; }

/* Trust bar checkmarks: keep readable on sky-bg trust bar */
.trust-bar-inner span::before { color: var(--blue-deep); }

/* Highlight box numbers on white cards: keep readable */
.highlight-box .num { color: var(--blue-deep); }

/* Calc kW note on white calc-box: keep readable */
.calc-note strong { color: var(--blue-deep); }

/* Table highlight text + best-row */
.td-highlight { color: var(--blue-deep); }
.roi-table .best, .roi-table .best td { background: var(--sky-200); }
.roi-table .best .roi-val { color: var(--blue-deep); }

/* Alert warning — keep light so its body text stays readable */
.alert-warning { background: var(--sky-200); }
.alert-warning strong { color: var(--blue-deep); }

/* FAQ hover on white card */
.faq-q:hover { color: var(--blue-deep); }

/* Blue "read more" buttons → navy (they'd vanish on sky-blue bg) */
.btn-dark { background: var(--navy); }
.btn-dark:hover { background: var(--ink-soft); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

/* Calc lead form button — was using --yellow-dark as bg */
.calc-lead-form button { background: var(--navy); }
.calc-lead-form button:hover { background: var(--ink-soft); }

/* Focus rings */
:focus-visible { outline-color: var(--blue-deep); }

/* Input range slider */
.calc-controls input[type="range"] { accent-color: var(--blue-deep); }

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: rgba(29,29,31,.96); backdrop-filter: blur(12px);
  color: #fff; padding: 1.2rem 1.5rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 -4px 24px rgba(0,0,0,.18);
  transform: translateY(100%); transition: transform .4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: .88rem; flex: 1; min-width: 200px; color: var(--on-dark-2); }
.cookie-banner a { color: var(--blue-bright); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--yellow); color: #fff; border: none;
  padding: .6rem 1.4rem; border-radius: var(--radius-sm);
  font-size: .88rem; font-weight: 600; cursor: pointer; white-space: nowrap;
}
.cookie-btn-accept:hover { background: var(--yellow-dark); }
.cookie-btn-essential {
  background: transparent; color: var(--on-dark-2);
  border: 1px solid var(--on-dark-line); padding: .6rem 1.2rem;
  border-radius: var(--radius-sm); font-size: .88rem; cursor: pointer; white-space: nowrap;
}
.cookie-btn-essential:hover { border-color: rgba(255,255,255,.6); color: #fff; }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 1rem; padding-bottom: 5rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-essential { flex: 1; text-align: center; }
}

/* ===== SYSTEM COMPARISON TABLE (systems.html) ===== */
.cmp-yes { color: var(--green-dark); font-weight: 700; }
.cmp-no  { color: var(--text-muted); }

/* ===== COMPOUND / CUMULATIVE VIEW (calculator, index.html) ===== */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.calc-compound {
  margin-top: 1.6rem; padding-top: 1.6rem;
  border-top: 1px solid var(--border);
}
.calc-compound h3 { text-align: center; margin-bottom: .4rem; }
.calc-compound__lead {
  text-align: center; max-width: 600px; margin: 0 auto 1rem;
  font-size: .92rem; color: var(--ink-muted);
}

.calc-compound__chart { margin-bottom: 1.1rem; }
.calc-compound__chart svg { width: 100%; height: auto; display: block; overflow: visible; }

/* chart internals — colours stay in the token system */
.cc-area   { fill: url(#ccFill); }
.cc-stop-a { stop-color: var(--blue); stop-opacity: .26; }
.cc-stop-b { stop-color: var(--blue); stop-opacity: 0; }
.cc-solar  { fill: none; stroke: var(--blue); stroke-width: 3; stroke-linejoin: miter; stroke-linecap: butt; }
.cc-bank   { fill: none; stroke: var(--ink-muted); stroke-width: 2; stroke-dasharray: 5 4; }
.cc-zero   { stroke: var(--sky-500); stroke-width: 1; }
.cc-be-line{ stroke: var(--green-dark); stroke-width: 1.5; stroke-dasharray: 3 3; opacity: .7; }
.cc-be-dot { fill: var(--green-dark); }
.cc-end    { fill: var(--blue); }
.cc-tick   { fill: var(--ink-muted); text-anchor: middle; font-weight: 500; }

.calc-legend {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: .5rem 1.5rem; margin-top: .7rem;
}
.calc-legend__item {
  display: flex; align-items: center; gap: .45rem;
  font-size: .85rem; font-weight: 500; color: var(--ink-muted);
}
.calc-legend__item::before {
  content: ""; width: 14px; height: 3px; border-radius: 0; flex-shrink: 0;
}
.calc-legend__item--solar::before { background: var(--blue); }
.calc-legend__item--bank::before  { background: var(--ink-muted); }

.calc-milestones { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.calc-milestone {
  background: var(--sky-50); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.1rem 1rem; text-align: center;
}
.calc-milestone .lbl {
  display: block; font-size: .78rem; color: var(--ink-muted); margin-bottom: .35rem;
}
.calc-milestone strong {
  display: block; font-size: 1.45rem; font-weight: 800;
  letter-spacing: -.01em; color: var(--ink);
}
.calc-milestone .sub {
  display: block; font-size: .76rem; color: var(--ink-muted); margin-top: .3rem;
}
.calc-milestone--hero { background: var(--blue-deep); border-color: var(--blue-deep); }
.calc-milestone--hero .lbl,
.calc-milestone--hero .sub { color: var(--on-dark-2); }
.calc-milestone--hero strong { color: #fff; }

.calc-compound__gap { margin: 1.2rem 0 0; text-align: center; font-size: .95rem; color: var(--ink); }
.calc-compound__gap strong { color: var(--blue-deep); }

.calc-co2 {
  margin: .9rem auto 0; max-width: 620px;
  padding: .8rem 1rem;
  background: var(--green-bg); border: 1px solid var(--green);
  border-radius: var(--radius-sm);
  text-align: center; font-size: .9rem; color: var(--ink);
}
.calc-co2 strong { color: var(--green-dark); }

@media (max-width: 640px) {
  .calc-milestones { grid-template-columns: 1fr; gap: .7rem; }
  .calc-milestone { padding: .9rem; }
  .calc-milestone strong { font-size: 1.3rem; }
  .calc-compound__lead { font-size: .9rem; }
}

/* ===== CREDENTIALS ROW (index.html) =====
   Replaces the old four-card "Why us" section: same four claims, ~90px
   instead of ~600px. */
.credentials {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .7rem 1.8rem;
  margin-top: 2.6rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.credentials li {
  display: flex; align-items: center; gap: .55rem;
  font-size: .93rem; font-weight: 500; color: var(--ink-muted);
}
.credentials li::before {
  content: ""; width: 6px; height: 6px; border-radius: 3px;
  background: var(--blue-deep); flex-shrink: 0;
}
@media (max-width: 640px) {
  .credentials { gap: .6rem 1.1rem; }
  .credentials li { font-size: .87rem; }
}

/* ===== SERVICE PLEDGES (dark CTA, index.html) =====
   Real commitments, not slogans - keep every figure here backed by something
   the business will actually honour. */
.pledges {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin: 2.6rem auto 0; max-width: 860px;
  padding-top: 2rem; border-top: 1px solid var(--on-dark-line);
}
.pledges li { text-align: center; }
.pledges strong {
  display: block; font-size: 1.15rem; font-weight: 800;
  color: var(--blue-bright); letter-spacing: -.01em;
}
.pledges span {
  display: block; font-size: .82rem; color: var(--on-dark-2); margin-top: .25rem;
}
@media (max-width: 700px) {
  .pledges { grid-template-columns: 1fr 1fr; gap: 1.3rem 1rem; }
}

/* ===== "WHAT YOU HAVE TO DO" LINE on the how-it-works steps ===== */
.hiw-effort {
  margin-top: .7rem; padding-top: .6rem;
  border-top: 1px solid var(--border);
  font-size: .84rem; font-weight: 700; color: var(--blue-deep);
}

/* ===== COVERAGE / WARRANTY STRIP (index.html) ===== */
.coverage {
  margin-top: 2.2rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.coverage__title { text-align: center; font-size: 1.1rem; margin-bottom: 1.2rem; }
.coverage__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.coverage__item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1rem .8rem; text-align: center;
}
.coverage__item strong {
  display: block; font-size: 1.25rem; font-weight: 800;
  color: var(--blue-deep); letter-spacing: -.01em;
}
.coverage__item span {
  display: block; font-size: .8rem; color: var(--ink-muted); margin-top: .3rem;
}
.coverage__note {
  margin: 1.1rem 0 0; text-align: center;
  font-size: .87rem; color: var(--ink-muted);
}
@media (max-width: 700px) {
  .coverage__grid { grid-template-columns: 1fr 1fr; }
}

/* ===== FORM: collapsible optional fields (contact.html) ===== */
.form-more {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  margin-bottom: 1.2rem;
}
.form-more > summary {
  cursor: pointer;
  padding: .85rem 1.1rem;
  font-size: .92rem;
  font-weight: 600;
  color: var(--yellow-dark);
  list-style: none;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.form-more > summary::-webkit-details-marker { display: none; }
.form-more > summary::before {
  content: "+";
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 700;
}
.form-more[open] > summary::before { content: "−"; }
.form-more > summary:hover { color: var(--yellow); }
.form-more__body { padding: 0 1.1rem 1.1rem; }
