/* ============================================================
   GREEN ENERGY SOLAR SYSTEMS — SHARED STYLES v2
   Brand: Deep blue sky, emerald green, solar gold/orange
   ============================================================ */

/* Fonts are loaded via <link> preload in each page's <head> for better performance */

:root {
  /* Brand palette — matched to business card */
  --green:     #2a8c3f;
  --green-l:   #3db356;
  --green-d:   #1a6028;
  --green-xl:  #e8f7ec;
  --gold:      #f5a623;
  --gold-b:    #f97316;
  --gold-pale: #fff8ec;
  --sky:       #1a2d6b;
  --sky-d:     #0e1a45;
  --sky-deep:  #060d28;
  --navy:      #0b1535;
  --white:     #ffffff;
  --off:       #f7faf7;
  --g100:      #eef3ee;
  --g200:      #d6e2d6;
  --g400:      #8fa08f;
  --g500:      #5c6e5c;
  --g700:      #2e3a2e;
  --wa:        #25d366;

  /* Spacing & radii */
  --r:   12px;
  --rl:  20px;
  --rxl: 28px;

  /* Shadows */
  --sh:  0 4px 28px rgba(0,0,0,0.07);
  --shm: 0 8px 40px rgba(0,0,0,0.11);
  --shl: 0 16px 56px rgba(0,0,0,0.16);
  --shg: 0 8px 32px rgba(42,140,63,0.22);
  --sho: 0 8px 32px rgba(245,166,35,0.28);

  /* ── 8-Point Spacing Grid ── */
  --sp-1: 8px; --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
  --sp-6: 48px; --sp-8: 64px; --sp-10: 80px; --sp-12: 96px; --sp-16: 128px;

  /* ── Major Third rem Typography Scale ── */
  --fs-sm: 0.8rem; --fs-md: 1rem; --fs-lg: 1.25rem; --fs-xl: 1.563rem;
  --fs-2xl: 1.953rem; --fs-3xl: 2.441rem; --fs-4xl: 3.052rem; --fs-5xl: 3.815rem;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--g700);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ===== NAV ===== */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 70px; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(6,13,40,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}
#site-nav.scrolled {
  height: 62px;
  background: rgba(6,13,40,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.nav-logo-wrap { display: flex; align-items: center; gap: 11px; }
.nav-logo-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-l));
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; box-shadow: 0 3px 14px rgba(42,140,63,0.45);
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; align-items: center; gap: 0; }
.nl1 { font-size: 9px; font-weight: 600; color: var(--green-l); letter-spacing: .5px; text-transform: uppercase; }
.nl2 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 800; color: #fff; line-height: 1.1; }
.nl3 { font-size: 8px; font-weight: 500; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }

.nav-links { list-style: none; display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: rgba(255,255,255,0.65); font-size: 13.5px; font-weight: 500;
  padding: 6px 12px; border-radius: 8px;
  transition: all .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-active { color: #fff !important; font-weight: 600 !important; }
.nav-phone { color: var(--gold) !important; font-weight: 700 !important; }
.nav-phone:hover { background: rgba(245,166,35,0.1) !important; }
.nav-wa {
  display: flex !important; align-items: center; gap: 6px;
  background: var(--wa) !important; color: #fff !important;
  padding: 7px 15px !important; border-radius: 100px !important;
  font-weight: 700 !important; font-size: 13px !important;
  transition: all .2s; box-shadow: 0 3px 12px rgba(37,211,102,0.3);
}
.nav-wa:hover { background: #1fb855 !important; transform: translateY(-1px); box-shadow: 0 5px 18px rgba(37,211,102,0.4) !important; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-b)) !important;
  color: var(--navy) !important; padding: 8px 20px !important;
  border-radius: 100px !important; font-weight: 800 !important; font-size: 13px !important;
  box-shadow: 0 4px 16px rgba(245,166,35,0.35); transition: all .2s;
}
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 7px 22px rgba(245,166,35,0.45) !important; }
.nav-burger { display: none; background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; padding: 4px; }

/* ===== NAV LANGUAGE SELECTOR ===== */
.nav-lang-wrap { position: relative; list-style: none; }
.nav-lang-btn {
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.82); border-radius: 100px;
  padding: 6px 11px; font-size: 12px; font-weight: 600;
  cursor: pointer; transition: all .2s; white-space: nowrap;
  font-family: 'DM Sans', sans-serif; line-height: 1;
}
.nav-lang-btn:hover { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.28); }
#nav-lang-flag { font-size: 14px; line-height: 1; }
#nav-lang-name { font-size: 11px; font-weight: 700; letter-spacing: .4px; }
.nav-lang-panel {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: #fff; border-radius: 14px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.22);
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden; min-width: 160px; list-style: none;
  opacity: 0; transform: translateY(6px) scale(0.97);
  pointer-events: none; transition: all .2s ease;
  z-index: 600;
}
.nav-lang-panel.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.nav-lang-opt {
  display: flex; align-items: center; gap: 9px;
  width: 100%; padding: 10px 14px;
  background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  color: #374151; transition: background .15s; text-align: left;
}
.nav-lang-opt:hover { background: #f3f4f6; }
.nav-lang-opt.active { background: #f0fdf4; color: #166534; font-weight: 700; }
@media (max-width: 960px) {
  .nav-lang-wrap { width: 100%; }
  .nav-lang-btn {
    width: 100%; border-radius: 8px; padding: 10px 14px;
    justify-content: flex-start; gap: 8px;
  }
  .nav-lang-panel {
    position: static; opacity: 1; transform: none;
    pointer-events: none; display: none;
    box-shadow: none; border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.05); border-radius: 8px; margin-top: 4px;
  }
  .nav-lang-panel.open { display: block; pointer-events: all; }
  .nav-lang-opt { color: rgba(255,255,255,0.75); }
  .nav-lang-opt:hover { background: rgba(255,255,255,0.07); color: #fff; }
  .nav-lang-opt.active { background: rgba(42,140,63,0.15); color: #6ee88a; }
}

/* ===== AUDIENCE BAR ===== */
#nav-audience-bar {
  position: fixed; top: 70px; left: 0; right: 0; z-index: 498;
  background: rgba(26,96,40,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 48px; height: 34px;
  display: flex; align-items: center;
  transition: top 0.3s ease;
}
#nav-audience-bar.nab-scrolled { top: 62px; }
.nab-inner { display: flex; align-items: center; gap: 4px; }
.nab-tab {
  color: rgba(255,255,255,0.7); font-size: 12.5px; font-weight: 600;
  padding: 4px 14px; border-radius: 100px; transition: all .2s;
}
.nab-tab:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nab-tab.nab-active { color: #fff; background: rgba(255,255,255,0.14); }
.nab-sep { color: rgba(255,255,255,0.2); font-size: 14px; margin: 0 4px; }
.nab-tagline {
  font-size: 11px; color: rgba(255,255,255,0.38);
  margin-left: 12px; display: none;
}
@media(min-width: 640px) { .nab-tagline { display: inline; } }
@media(max-width: 480px) { #nav-audience-bar { padding: 0 16px; } }

/* ===== SECTIONS ===== */
.section { padding: 88px 48px; }
.container { max-width: 1160px; margin: 0 auto; }
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 12px; display: block;
}
.sh {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800; letter-spacing: -1.2px;
  line-height: 1.08; color: var(--navy); margin-bottom: 16px;
}
.sp { font-size: 16px; color: var(--g500); line-height: 1.75; max-width: 560px; }
.tc { text-align: center; }
.tc .sp { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 100px; border: none;
  font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all .28s; text-decoration: none;
  letter-spacing: .2px;
}
.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-l));
  color: #fff; box-shadow: var(--shg);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(42,140,63,0.4); }
.btn-orange {
  background: linear-gradient(135deg, var(--gold), var(--gold-b));
  color: var(--navy); box-shadow: var(--sho);
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(245,166,35,0.45); }
.btn-wa {
  background: var(--wa); color: #fff;
  box-shadow: 0 6px 22px rgba(37,211,102,0.3);
}
.btn-wa:hover { background: #1fb855; transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.24);
  color: #fff; backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-green:active, .btn-orange:active, .btn-wa:active, .btn-ghost:active { transform: scale(0.97) translateY(1px); }

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

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--green-d); padding: 14px 48px;
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
  position: relative; z-index: 10;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500;
}
.trust-item strong { color: #fff; }

/* ===== WHY GRID ===== */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 52px; }
.why-card {
  background: var(--white); border: 1px solid var(--g200);
  border-radius: var(--rxl); padding: 32px 26px; transition: all .3s;
  position: relative; overflow: hidden;
}
.why-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(42,140,63,0.04), rgba(245,166,35,0.04));
  opacity: 0; transition: opacity .3s;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shl); border-color: rgba(42,140,63,0.3); }
.why-card:hover::after { opacity: 1; }
.why-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(42,140,63,0.1), rgba(245,166,35,0.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(42,140,63,0.1);
}
.why-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 9px; }
.why-card p { font-size: 14px; color: var(--g500); line-height: 1.68; }
.why-stat {
  font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800;
  color: var(--green); display: block; margin-top: 12px;
}

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.review-card {
  background: #fff; border-radius: var(--rxl); padding: 28px;
  box-shadow: var(--sh); border: 1px solid var(--g100);
  transition: all .3s; position: relative; overflow: hidden;
}
.review-card::before {
  content: '"'; position: absolute; top: 12px; right: 20px;
  font-size: 80px; line-height: 1; color: rgba(42,140,63,0.07);
  font-family: Georgia, serif;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shm); }
.stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; margin-bottom: 14px; }
.rqt { font-size: 14px; color: var(--g700); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.rauth { display: flex; align-items: center; gap: 12px; }
.rava {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--sky));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.rname { font-size: 14px; font-weight: 600; color: var(--navy); }
.rloc { font-size: 11px; color: var(--g400); margin-top: 2px; }

/* ===== HOW STEPS ===== */
.steps-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 52px; position: relative; }
.steps-row::before {
  content: ''; position: absolute; top: 35px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(to right, var(--green), var(--gold));
  opacity: .15;
}
.hstep { text-align: center; }
.hnum {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-d), var(--green-l));
  color: #fff; font-family: 'Syne', sans-serif;
  font-size: 24px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 6px 22px rgba(42,140,63,0.32);
  position: relative; z-index: 1;
  transition: transform .3s, box-shadow .3s;
}
.hstep:hover .hnum { transform: scale(1.08); box-shadow: 0 10px 30px rgba(42,140,63,0.4); }
.hstep h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.hstep p { font-size: 13px; color: var(--g500); line-height: 1.65; }

/* ===== URGENCY BAR (CRO Stage 8) ===== */
#urgency-bar {
  background: linear-gradient(90deg, #7b3200, #c25000, #7b3200);
  color: #fff; font-size: 13px; font-weight: 500;
  text-align: center; padding: 9px 16px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  position: relative; z-index: 998;
  animation: slideDown .5s ease both;
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
#urgency-bar a { color: #ffd580; font-weight: 700; text-decoration: underline; }
#urgency-bar a:hover { color: #fff; }

/* ===== STICKY MOBILE CTA BAR (Stage 8 CRO) ===== */
#mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: linear-gradient(90deg, var(--sky-deep) 0%, var(--green-d) 100%);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 12px 16px; gap: 10px;
  align-items: center; justify-content: center;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  backdrop-filter: blur(12px);
  animation: slideUpBar .4s ease both;
}
@keyframes slideUpBar {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
#mobile-cta-bar a {
  flex: 1; text-align: center; padding: 12px 10px;
  border-radius: 12px; font-size: 14px; font-weight: 700;
  text-decoration: none; color: #fff;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
#mobile-cta-bar .mcb-estimate { background: var(--gold); color: #1a1a1a; }
#mobile-cta-bar .mcb-call { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); }
@media(min-width: 768px) { #mobile-cta-bar { display: none !important; } }
@media(max-width: 767px) { #mobile-cta-bar { display: flex; } body { padding-bottom: 72px; } }

/* ===== BOTTOM CTA ===== */
.bottom-cta {
  background: linear-gradient(160deg, var(--sky-deep) 0%, var(--green-d) 55%, var(--sky-deep) 100%);
  text-align: center; color: #fff; padding: 96px 48px;
  position: relative; overflow: hidden;
}
.bottom-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 85%, rgba(245,166,35,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.bottom-cta > * { position: relative; z-index: 1; }
.bottom-cta .eyebrow { color: var(--gold); }
.bottom-cta .sh { color: #fff; max-width: 700px; margin: 0 auto 14px; }
.cpills { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.cpill {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(16px); border-radius: 100px; padding: 13px 24px;
  transition: all .25s; cursor: pointer; color: inherit;
}
.cpill:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.cpill .cl { font-size: 10px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1.2px; display: block; }
.cpill .cv { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 800; color: #fff; display: block; }
.cpill.wap { background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.3); }
.cpill.wap:hover { background: rgba(37,211,102,0.25); }
.orbadge { font-size: 13px; color: rgba(255,255,255,0.28); font-weight: 500; }

/* ===== FOOTER ===== */
#site-footer { background: var(--navy); padding: 56px 48px 28px; color: rgba(255,255,255,0.45); }
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 32px; padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 24px;
  max-width: 1160px; margin-left: auto; margin-right: auto;
}
.fb-logo { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; display: flex; gap: 5px; margin-bottom: 10px; }
.fg { color: var(--green-l); } .fe { color: #fff; } .fs { color: var(--gold); }
.footer-brand p { font-size: 13.5px; max-width: 240px; line-height: 1.65; margin-bottom: 14px; }
.seai-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; padding: 5px 14px; font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.55);
}
.footer-links h5 { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 14px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a, .footer-links span { font-size: 13.5px; color: rgba(255,255,255,0.4); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; font-size: 12px; flex-wrap: wrap; gap: 8px; max-width: 1160px; margin: 0 auto; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 148px 48px 88px;
  background: linear-gradient(160deg, #060d28 0%, #0d2e18 55%, #060820 100%);
  text-align: center; color: #fff; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 65% 35%, rgba(245,166,35,0.1) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(42,140,63,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold); margin-bottom: 16px; }
.page-hero .sh { color: #fff; max-width: 660px; margin: 0 auto 14px; }
.page-hero .sp { color: rgba(255,255,255,0.62); margin: 0 auto; }

/* ===== SERVICES DROPDOWN ===== */
.nav-services-wrap { position: relative; }
.nav-services-btn {
  display: flex; align-items: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.82); font-size: 0.875rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-services-btn:hover,
.nav-services-wrap.active .nav-services-btn { color: #fff; background: rgba(255,255,255,0.08); }
.nav-services-panel {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: rgba(6,13,40,0.97); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  padding: 8px; min-width: 210px; z-index: 200;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  list-style: none; margin: 0;
}
.nav-services-panel.open { display: block; }
.nav-services-panel li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 8px;
  color: rgba(255,255,255,0.82); font-size: 0.875rem;
  text-decoration: none; transition: background 0.15s, color 0.15s;
}
.nav-services-panel li a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.nav-services-panel li a.nav-active { color: var(--gold); }

/* ===== COOKIE CONSENT BANNER ===== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(6,13,40,0.97); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
#cookie-banner.cb-visible { transform: translateY(0); }
.cb-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 16px 32px; flex-wrap: wrap;
}
.cb-text { color: rgba(255,255,255,0.75); font-size: 0.875rem; margin: 0; flex: 1; min-width: 200px; }
.cb-text strong { color: #fff; }
.cb-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cb-decline {
  padding: 9px 18px; border-radius: 8px; font-size: 0.875rem; font-weight: 500; cursor: pointer;
  background: transparent; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.6);
  transition: border-color 0.2s, color 0.2s;
}
.cb-decline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.cb-accept {
  padding: 9px 20px; border-radius: 8px; font-size: 0.875rem; font-weight: 600; cursor: pointer;
  background: var(--green); border: none; color: #fff;
  transition: background 0.2s, transform 0.1s;
}
.cb-accept:hover { background: var(--green-l); transform: translateY(-1px); }
@media (max-width: 600px) {
  .cb-inner { padding: 14px 20px; }
  .cb-actions { width: 100%; }
  .cb-decline, .cb-accept { flex: 1; text-align: center; }
}

/* ===== GOOGLE TRANSLATE — suppress their toolbar entirely ===== */
.goog-te-banner-frame,
.goog-te-gadget,
#goog-gt-tt,
.goog-te-balloon-frame,
.skiptranslate             { display: none !important; visibility: hidden !important; }
body                       { top: 0 !important; }
.goog-text-highlight       { background: none !important; box-shadow: none !important; }
.goog-te-spinner-pos       { display: none !important; }

/* ===== MOBILE ===== */
@media (max-width: 960px) {
  #site-nav { padding: 0 24px; }
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(6,13,40,0.98); padding: 20px 24px 24px;
    gap: 6px; border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.nav-open { display: flex; }
  .nav-links a { padding: 10px 14px; width: 100%; }
  .nav-services-panel { position: static; border: none; background: rgba(255,255,255,0.04); margin: 4px 0 4px 14px; border-radius: 8px; }
  .nav-services-panel.open { display: block; }
  .nav-services-btn { padding: 10px 14px; width: 100%; justify-content: flex-start; font-size: 1rem; }
  .nav-burger { display: block; }
  .section { padding: 64px 24px; }
  .why-grid, .reviews-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .trust-strip { gap: 18px; padding: 12px 24px; }
  #site-footer { padding: 44px 24px 22px; }
  .page-hero { padding: 128px 24px 68px; }
  .bottom-cta { padding: 72px 24px; }
}
@media (max-width: 560px) {
  .steps-row { grid-template-columns: 1fr; }
  .cpills { flex-direction: column; align-items: stretch; }
  .cpill { justify-content: center; }
}
