/* ═══════════════════════════════════════════════════════════════
   BLACKRIDGE POWER — v3 | Dark + Light Mode | Full Design System
   ═══════════════════════════════════════════════════════════════ */

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

/* ══════════════════════════════════════
   THEME TOKENS
══════════════════════════════════════ */
:root {
  --accent:      #d4a843;
  --accent-dark: #b8891a;
  --accent-glow: rgba(212,168,67,.35);
  --font-head:   'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:      14px;
  --radius-lg:   22px;
  --transition:  .32s cubic-bezier(.4,0,.2,1);
}

/* ── DARK MODE (default) ── */
[data-theme="dark"] {
  --bg:          #080808;
  --bg-2:        #111111;
  --bg-3:        #1a1a1a;
  --surface:     #141414;
  --surface-2:   #1e1e1e;
  --border:      rgba(255,255,255,.08);
  --border-2:    rgba(255,255,255,.12);
  --text-primary:   #ffffff;
  --text-secondary: rgba(255,255,255,.6);
  --text-muted:     rgba(255,255,255,.3);
  --shadow-card: 0 24px 64px rgba(0,0,0,.45);
  --shadow-gold: 0 0 40px rgba(212,168,67,.2);
  --nav-bg:      rgba(8,8,8,.92);
  --map-fill:    #1f1f1f;
  --map-stroke:  rgba(212,168,67,.3);
  --map-hover:   rgba(212,168,67,.15);
  --map-text:    rgba(255,255,255,.5);
}

/* ── LIGHT MODE ── */
[data-theme="light"] {
  --bg:          #ffffff;
  --bg-2:        #f7f7f7;
  --bg-3:        #f0f0f0;
  --surface:     #ffffff;
  --surface-2:   #f7f7f7;
  --border:      rgba(0,0,0,.08);
  --border-2:    rgba(0,0,0,.12);
  --text-primary:   #080808;
  --text-secondary: #505050;
  --text-muted:     #a0a0a0;
  --shadow-card: 0 8px 40px rgba(0,0,0,.08);
  --shadow-gold: 0 0 40px rgba(212,168,67,.18);
  --nav-bg:      rgba(255,255,255,.92);
  --map-fill:    #f0f0f0;
  --map-stroke:  rgba(212,168,67,.5);
  --map-hover:   rgba(212,168,67,.1);
  --map-text:    #505050;
}

/* ── BASE ── */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .4s ease, color .4s ease;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); color: var(--text-primary); }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); font-weight: 700; letter-spacing: -0.035em; line-height: 1.08; }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem);   font-weight: 700; letter-spacing: -0.03em;  line-height: 1.12; }
h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 1rem;    font-weight: 600; }
h5 { font-size: .82rem;  font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
p  { font-size: 1rem; line-height: 1.8; color: var(--text-secondary); }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
section    { padding: 130px 0; }

/* ── DIVIDER ── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 30%, var(--accent) 70%, transparent 100%);
  opacity: .15;
}

/* ── SECTION HEADER ── */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 80px; }
.section-eyebrow {
  font-family: var(--font-head);
  font-size: .72rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px; display: block;
}
.section-sub { font-size: 1.05rem; margin-top: 18px; color: var(--text-secondary); max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--text-primary); color: var(--bg);
  padding: 15px 34px; border-radius: 50px;
  font-family: var(--font-head); font-size: .92rem; font-weight: 600; letter-spacing: .02em;
  border: none; cursor: pointer; position: relative; overflow: hidden;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,.25); opacity: .9; }
.btn-primary:active { transform: translateY(0); }
.btn-gold { background: var(--accent) !important; color: #080808 !important; }
.btn-gold:hover { background: var(--accent-dark) !important; box-shadow: var(--shadow-gold) !important; }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: #ffffff;
  padding: 15px 34px; border-radius: 50px;
  font-family: var(--font-head); font-size: .92rem; font-weight: 500;
  border: 1.5px solid rgba(255,255,255,.35);
  cursor: pointer; transition: all var(--transition);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.06); transform: translateY(-2px); }
.btn-large { padding: 18px 48px; font-size: 1rem; }
.btn-full  { width: 100%; }

/* ── CURSOR GLOW ── */
#cursor-glow {
  pointer-events: none; position: fixed; z-index: 9999;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,.06) 0%, transparent 70%);
  transform: translate(-50%,-50%); opacity: 0;
  transition: opacity .4s ease;
}

/* ── AMBIENT ORBS ── */
.orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; filter: blur(80px); }
.orb-1 { width: 500px; height: 500px; background: rgba(212,168,67,.08); top: -100px; right: -150px; }
.orb-2 { width: 350px; height: 350px; background: rgba(212,168,67,.06); bottom: 80px; left: -80px; }
.orb-process-1 { width: 400px; height: 400px; background: rgba(212,168,67,.07); top: 0; right: -100px; }
.orb-process-2 { width: 300px; height: 300px; background: rgba(212,168,67,.05); bottom: 0; left: -60px; }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-container {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo {
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 700;
  letter-spacing: .08em; color: #ffffff; text-transform: uppercase; line-height: 1;
}
.nav-logo span { color: var(--accent); }
[data-theme="light"] #navbar.scrolled .nav-logo { color: var(--text-primary); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--font-head); font-size: .84rem; font-weight: 500;
  color: rgba(255,255,255,.65); transition: color var(--transition);
}
.nav-links a:hover { color: #ffffff; }
[data-theme="light"] #navbar.scrolled .nav-links a { color: var(--text-secondary); }
[data-theme="light"] #navbar.scrolled .nav-links a:hover { color: var(--text-primary); }
.nav-links .nav-cta {
  background: var(--accent); color: #080808 !important;
  padding: 9px 22px; border-radius: 50px; font-weight: 600;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-links .nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-gold); }

/* nav right controls */
.nav-right { display: flex; align-items: center; gap: 12px; }

/* theme toggle */
.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.7); font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition); position: relative;
}
.theme-toggle:hover { background: rgba(255,255,255,.15); color: #ffffff; }
[data-theme="light"] #navbar.scrolled .theme-toggle { background: var(--bg-2); border-color: var(--border-2); color: var(--text-secondary); }
[data-theme="light"] #navbar.scrolled .theme-toggle:hover { color: var(--text-primary); }
#themeIconLight { display: none; }
#themeIconDark  { display: block; }
[data-theme="light"] #themeIconLight { display: block; }
[data-theme="light"] #themeIconDark  { display: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #ffffff; border-radius: 2px; transition: all var(--transition); }
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--nav-bg); backdrop-filter: blur(24px);
  padding: 8px 28px 24px; border-top: 1px solid var(--border);
}
.mobile-menu a {
  padding: 14px 0; font-family: var(--font-head); font-size: 1rem; font-weight: 500;
  color: var(--text-secondary); border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu.open { display: flex; }

/* ══════════════════════════════════════
   HERO (always dark — photo bg)
══════════════════════════════════════ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 0 28px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.2) 45%, rgba(0,0,0,.72) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 90%, rgba(212,168,67,.1) 0%, transparent 65%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px 200px; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 860px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px); padding: 8px 18px; border-radius: 50px; margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 8px var(--accent); animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.4)} }
.hero-title { color: #ffffff; margin-bottom: 26px; }
.title-gradient {
  background: linear-gradient(90deg, var(--accent) 0%, #f0c860 50%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { 0%{background-position:0% center} 100%{background-position:200% center} }
.hero-sub { font-size: clamp(1rem, 1.8vw, 1.18rem); color: rgba(255,255,255,.65); max-width: 580px; margin: 0 auto 44px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center; margin-top: 72px;
  background: rgba(255,255,255,.05); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.09); border-radius: 20px; padding: 28px 40px; gap: 0;
}
.stat { text-align: center; padding: 0 32px; }
.stat-value { display: flex; align-items: baseline; justify-content: center; gap: 1px; }
.stat-num    { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: #ffffff; }
.stat-suffix { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--accent); }
.stat > p    { font-size: .72rem; color: rgba(255,255,255,.4); margin-top: 5px; letter-spacing: .08em; text-transform: uppercase; font-family: var(--font-head); }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.1); flex-shrink: 0; }
.scroll-down {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.3); font-size: .9rem; z-index: 2;
  animation: bounce 2.2s ease-in-out infinite; transition: color var(--transition);
}
.scroll-down:hover { color: rgba(255,255,255,.7); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 55%{transform:translateX(-50%) translateY(9px)} }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
#services { background: var(--bg-2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--surface); border-radius: var(--radius-lg); padding: 36px 30px 30px;
  border: 1px solid var(--border); position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.service-card:hover .card-accent-bar { transform: scaleX(1); }
.service-card:hover .service-icon { background: var(--accent); }
.service-card:hover .service-icon i { color: #080808; }
.card-accent-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), #f0c860);
  transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.card-number { position: absolute; top: 20px; right: 22px; font-family: var(--font-head); font-size: .72rem; font-weight: 700; letter-spacing: .1em; color: var(--border-2); }
.service-icon {
  width: 52px; height: 52px; background: var(--text-primary); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
  transition: background var(--transition);
}
.service-icon i { font-size: 1.15rem; color: var(--accent); transition: color var(--transition); }
.service-card h3 { margin-bottom: 10px; }
.service-card > p { font-size: .92rem; margin-bottom: 22px; }
.card-link {
  font-family: var(--font-head); font-size: .84rem; font-weight: 600; color: var(--text-primary);
  display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition), color var(--transition);
}
.card-link i { font-size: .7rem; }
.card-link:hover { gap: 10px; color: var(--accent-dark); }

/* ══════════════════════════════════════
   FINANCING
══════════════════════════════════════ */
#financing { background: var(--bg); }
.financing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.finance-card {
  background: var(--surface); border-radius: var(--radius-lg); padding: 40px 32px 32px;
  border: 1px solid var(--border); position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
}
.finance-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.finance-card:hover .card-accent-bar { transform: scaleX(1); }
.finance-card.featured {
  border-color: var(--accent); box-shadow: var(--shadow-gold);
  background: var(--surface);
}
.finance-badge-top {
  position: absolute; top: 18px; right: 18px;
  background: var(--accent); color: #080808;
  font-family: var(--font-head); font-size: .65rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 50px;
}
.finance-icon {
  width: 52px; height: 52px; background: var(--text-primary); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.finance-icon i { font-size: 1.15rem; color: var(--accent); }
.finance-card h3 { margin-bottom: 10px; }
.finance-tag {
  display: inline-block; font-family: var(--font-head); font-size: .7rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--accent);
  background: rgba(212,168,67,.1); border: 1px solid rgba(212,168,67,.2);
  padding: 4px 12px; border-radius: 50px; margin-bottom: 16px;
}
.finance-desc { font-size: .92rem; margin-bottom: 24px; flex-grow: 1; }
.finance-perks { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.finance-perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; font-weight: 500; color: var(--text-secondary);
  font-family: var(--font-head);
}
.finance-perks i { color: var(--accent); font-size: .78rem; flex-shrink: 0; }
.finance-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border); }
.finance-note { font-size: .78rem; color: var(--text-muted); font-family: var(--font-head); }

/* Daylight partner note */
.daylight-note {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius); padding: 16px 20px;
  font-size: .88rem; color: var(--text-secondary);
}
.daylight-note i { color: var(--accent); font-size: 1rem; flex-shrink: 0; }
.daylight-note strong { color: var(--text-primary); }

/* ══════════════════════════════════════
   WHY US
══════════════════════════════════════ */
#why { background: var(--bg-2); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.why-text .section-eyebrow { text-align: left; }
.why-text h2 { margin-bottom: 22px; }
.why-desc { margin-bottom: 34px; }
.why-list { margin-bottom: 44px; display: flex; flex-direction: column; gap: 16px; }
.why-list li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-size: .9rem; font-weight: 500; color: var(--text-secondary);
}
.why-list i { color: var(--accent); font-size: .85rem; flex-shrink: 0; }
.why-card-stack { display: flex; flex-direction: column; gap: 14px; }
.why-feature-card {
  display: flex; align-items: flex-start; gap: 18px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 24px; transition: all var(--transition);
}
.why-feature-card:hover { background: var(--bg-3); border-color: var(--accent); box-shadow: var(--shadow-card); }
.wfc-icon {
  width: 42px; height: 42px; flex-shrink: 0; background: var(--text-primary);
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: .95rem; transition: background var(--transition);
}
.why-feature-card strong { display: block; font-family: var(--font-head); font-size: .92rem; margin-bottom: 4px; color: var(--text-primary); }
.why-feature-card p { font-size: .84rem; margin: 0; }

/* ══════════════════════════════════════
   SAVINGS CALCULATOR
══════════════════════════════════════ */
#calculator { background: var(--bg); position: relative; overflow: hidden; }
[data-theme="dark"] #calculator { background: #080808; }
[data-theme="dark"] #calculator h2 { color: #ffffff; }
[data-theme="dark"] #calculator .section-sub { color: rgba(255,255,255,.45); }
[data-theme="dark"] #calculator .section-eyebrow { color: var(--accent); }

.calc-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(100px); }
.calc-orb-1 { width: 500px; height: 500px; background: rgba(212,168,67,.09); top: -200px; right: -100px; }
.calc-orb-2 { width: 400px; height: 400px; background: rgba(212,168,67,.06); bottom: -150px; left: -100px; }

.calculator-widget {
  background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 56px 56px; display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px;
  align-items: start; position: relative; z-index: 1;
}
[data-theme="dark"] .calculator-widget { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }

.calc-label {
  font-family: var(--font-head); font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 14px;
}
.calc-amount {
  font-family: var(--font-head); font-size: 3.6rem; font-weight: 700; color: var(--text-primary);
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 28px;
}
.calc-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; border-radius: 4px; outline: none; cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--bg);
  box-shadow: 0 0 14px rgba(212,168,67,.5); cursor: pointer; transition: transform var(--transition);
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg); cursor: pointer;
}
.calc-range-labels { display: flex; justify-content: space-between; font-family: var(--font-head); font-size: .72rem; color: var(--text-muted); margin-top: 10px; margin-bottom: 32px; }
.calc-result-row { display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }
.calc-result-item { display: flex; flex-direction: column; gap: 4px; }
.result-label { font-family: var(--font-head); font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
.result-value { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--text-primary); letter-spacing: -0.025em; transition: all .3s ease; }
.result-value.gold { color: var(--accent); }
.calc-bar-wrap { margin-bottom: 28px; }
.calc-bar-track { height: 6px; background: var(--border); border-radius: 6px; overflow: hidden; margin-bottom: 10px; }
.calc-bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent), #f5d068); border-radius: 6px; transition: width .5s cubic-bezier(.4,0,.2,1); box-shadow: 0 0 16px rgba(212,168,67,.4); }
.calc-bar-label { font-family: var(--font-head); font-size: .72rem; color: var(--text-muted); letter-spacing: .04em; }
.calc-cta { font-size: .88rem; padding: 13px 26px; }
.calc-chart-wrap { display: flex; flex-direction: column; }
.calc-chart-title { font-family: var(--font-head); font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }

/* ══════════════════════════════════════
   SERVICE AREA — COVERAGE TILES
══════════════════════════════════════ */
#service-area { background: var(--bg); position: relative; overflow: hidden; }
[data-theme="dark"] #service-area { background: #080808; }

.coverage-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(120px); }
.coverage-orb-1 { width: 600px; height: 600px; background: rgba(212,168,67,.07); top: -200px; right: -180px; }
.coverage-orb-2 { width: 400px; height: 400px; background: rgba(212,168,67,.05); bottom: -100px; left: -120px; }

/* 6 state tiles in a 3×2 grid */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
  position: relative; z-index: 1;
}

.coverage-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  text-align: center;
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}
.coverage-tile::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), #f0c860);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.coverage-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: rgba(212,168,67,.25);
}
.coverage-tile:hover::before { transform: scaleX(1); }

.coverage-abbr {
  font-family: var(--font-head);
  font-size: 2.8rem; font-weight: 800;
  letter-spacing: -0.02em; line-height: 1;
  color: var(--accent);
  margin-bottom: 10px;
}
.coverage-name {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.coverage-cities {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-family: var(--font-head);
}

/* Bottom info strip */
.coverage-strip {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 36px;
  position: relative; z-index: 1;
}
.coverage-strip-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: .84rem; font-weight: 500;
  color: var(--text-secondary); padding: 0 28px;
}
.coverage-strip-item i { color: var(--accent); font-size: .9rem; flex-shrink: 0; }
.coverage-strip-divider { width: 1px; height: 28px; background: var(--border); flex-shrink: 0; }
.coverage-cta { padding: 12px 28px; font-size: .88rem; margin-left: 20px; }

/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
#process { background: var(--bg); position: relative; overflow: hidden; }
[data-theme="dark"] #process { background: #080808; }
[data-theme="dark"] #process h2 { color: #ffffff; }
[data-theme="dark"] #process .section-sub { color: rgba(255,255,255,.4); }
[data-theme="dark"] #process .section-eyebrow { color: var(--accent); }
.process-timeline {
  position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; padding-top: 20px;
}
.timeline-track {
  position: absolute; top: 46px; left: calc(100%/12); right: calc(100%/12); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,.25) 15%, rgba(212,168,67,.25) 85%, transparent);
  z-index: 0;
}
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 10px; position: relative; z-index: 1; }
.step-pill {
  width: 52px; height: 52px; border-radius: 50%; background: var(--bg);
  border: 1.5px solid rgba(212,168,67,.3);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  transition: all var(--transition); box-shadow: 0 0 0 0 rgba(212,168,67,0);
}
[data-theme="light"] .step-pill { background: var(--bg-2); }
.process-step:hover .step-pill { border-color: var(--accent); background: rgba(212,168,67,.1); box-shadow: 0 0 24px rgba(212,168,67,.25); transform: scale(1.1); }
.step-num { font-family: var(--font-head); font-size: .78rem; font-weight: 700; letter-spacing: .06em; color: var(--text-muted); transition: color var(--transition); }
.process-step:hover .step-num { color: var(--accent); }
.step-body h4 { color: var(--text-primary); font-size: .9rem; margin-bottom: 8px; font-family: var(--font-head); }
.step-body p  { font-size: .8rem; line-height: 1.6; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
#testimonials { background: var(--bg-2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card {
  background: var(--surface); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 36px 30px; position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: transparent; }
.testimonial-card.featured { border-color: var(--accent); box-shadow: var(--shadow-gold); }
.quote-mark { font-family: Georgia, serif; font-size: 5rem; line-height: .8; color: var(--border); font-weight: 700; margin-bottom: 12px; display: block; }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars i { color: var(--accent); font-size: .8rem; }
.testimonial-card > p { font-size: .92rem; line-height: 1.75; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--text-primary); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: .78rem; font-weight: 700; letter-spacing: .04em; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-family: var(--font-head); font-size: .88rem; color: var(--text-primary); }
.testimonial-author span  { font-size: .78rem; color: var(--text-muted); }

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
#cta-banner { background: var(--bg); padding: 110px 0; position: relative; overflow: hidden; }
[data-theme="dark"] #cta-banner { background: #080808; }
.cta-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(100px); }
.cta-orb-left  { width: 500px; height: 500px; background: rgba(212,168,67,.1); top: -150px; left: -150px; }
.cta-orb-right { width: 400px; height: 400px; background: rgba(212,168,67,.07); bottom: -100px; right: -100px; }
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner > p { font-size: 1.05rem; margin-bottom: 44px; }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
#contact { background: var(--bg-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 88px; align-items: start; }
.contact-text .section-eyebrow { text-align: left; }
.contact-text h2 { margin-bottom: 18px; }
.contact-text > p { margin-bottom: 36px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.ci-item { display: flex; align-items: center; gap: 16px; font-size: .92rem; color: var(--text-secondary); font-weight: 500; }
.ci-icon {
  width: 38px; height: 38px; border-radius: 10px; background: var(--text-primary); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0;
}
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  color: var(--text-secondary); background: var(--surface); border: 1px solid var(--border);
  padding: 7px 14px; border-radius: 50px;
}
.trust-badge i { color: var(--accent); font-size: .75rem; }
.contact-form-wrap { background: var(--surface); border-radius: var(--radius-lg); padding: 48px 44px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-family: var(--font-head); font-size: .78rem; font-weight: 600; color: var(--text-secondary); letter-spacing: .01em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 10px;
  background: var(--bg); font-family: var(--font-body); font-size: .9rem; color: var(--text-primary);
  outline: none; transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(212,168,67,.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a0a0a0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer;
}
.form-success {
  display: flex; align-items: center; gap: 10px; background: #ecfdf5; border: 1px solid #6ee7b7;
  color: #065f46; border-radius: 10px; padding: 14px 18px;
  font-family: var(--font-head); font-size: .88rem; font-weight: 500; margin-top: 14px;
}
.hidden { display: none !important; }
.btn-loader { display: inline-flex; align-items: center; justify-content: center; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
#footer { background: var(--bg); padding: 88px 0 0; }
[data-theme="dark"] #footer { background: #050505; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid var(--border); }
.footer-brand .nav-logo { margin-bottom: 16px; display: inline-block; }
[data-theme="dark"] .footer-brand .nav-logo { color: #ffffff; }
.footer-brand > p { font-size: .85rem; color: var(--text-muted); line-height: 1.7; max-width: 240px; }
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: .84rem;
  transition: all var(--transition);
}
.social-links a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.footer-links-col { display: flex; flex-direction: column; gap: 13px; }
.footer-links-col h5 { color: var(--text-muted); margin-bottom: 6px; }
.footer-links-col a { font-size: .84rem; color: var(--text-secondary); transition: color var(--transition); }
.footer-links-col a:hover { color: var(--text-primary); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.footer-bottom p { font-family: var(--font-head); font-size: .78rem; color: var(--text-muted); margin: 0; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-family: var(--font-head); font-size: .78rem; color: var(--text-muted); transition: color var(--transition); }
.footer-legal a:hover { color: var(--text-primary); }

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .75s cubic-bezier(.4,0,.2,1), transform .75s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.services-grid .reveal:nth-child(1) { transition-delay: .00s; }
.services-grid .reveal:nth-child(2) { transition-delay: .08s; }
.services-grid .reveal:nth-child(3) { transition-delay: .16s; }
.services-grid .reveal:nth-child(4) { transition-delay: .24s; }
.services-grid .reveal:nth-child(5) { transition-delay: .32s; }
.services-grid .reveal:nth-child(6) { transition-delay: .40s; }
.financing-grid .reveal:nth-child(1) { transition-delay: .00s; }
.financing-grid .reveal:nth-child(2) { transition-delay: .12s; }
.financing-grid .reveal:nth-child(3) { transition-delay: .24s; }
.testimonials-grid .reveal:nth-child(1) { transition-delay: .00s; }
.testimonials-grid .reveal:nth-child(2) { transition-delay: .12s; }
.testimonials-grid .reveal:nth-child(3) { transition-delay: .24s; }
.process-timeline .reveal:nth-child(n+2) { transition-delay: calc((var(--i,1)) * .08s); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .financing-grid   { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto 32px; }
  .why-grid         { grid-template-columns: 1fr; gap: 56px; }
  .coverage-grid    { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .timeline-track   { display: none; }
  .footer-top       { grid-template-columns: 1fr 1fr; }
  .calculator-widget { grid-template-columns: 1fr; padding: 40px 36px; gap: 40px; }
}
@media (max-width: 768px) {
  .coverage-grid    { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .coverage-strip   { flex-direction: column; gap: 16px; padding: 24px; text-align: center; }
  .coverage-strip-divider { width: 40px; height: 1px; }
  .coverage-cta     { margin-left: 0; }
  section { padding: 88px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { flex-wrap: wrap; padding: 24px 20px; }
  .hero-stats .stat { flex: 1; min-width: 120px; padding: 12px 16px; }
  .stat-divider { display: none; }
  .services-grid    { grid-template-columns: 1fr; }
  .testimonials-grid{ grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .contact-grid     { grid-template-columns: 1fr; gap: 56px; }
  .contact-form-wrap{ padding: 32px 24px; }
  .form-row         { grid-template-columns: 1fr; }
  .footer-top       { grid-template-columns: 1fr; }
  .footer-bottom    { flex-direction: column; gap: 14px; text-align: center; }
  .why-grid         { gap: 44px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; max-width: 280px; }
  .process-timeline { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   SOLAR INSTALLATION MODAL — full rewrite
══════════════════════════════════════════════════════════════ */

/* Overlay */
.solar-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 40px 16px 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .38s cubic-bezier(.4,0,.2,1);
  -webkit-overflow-scrolling: touch;
}
.solar-modal.open { opacity: 1; pointer-events: all; }

/* Backdrop */
.solar-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4,4,4,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: -1;
}

/* Panel */
.solar-modal-panel {
  position: relative;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 920px;
  padding: 64px 56px 56px;
  transform: translateY(32px) scale(.97);
  transition: transform .42s cubic-bezier(.4,0,.2,1);
}
.solar-modal.open .solar-modal-panel { transform: translateY(0) scale(1); }
.solar-modal-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Close button */
.solar-modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  z-index: 10;
}
.solar-modal-close:hover { background: var(--accent); color: #000; border-color: var(--accent); }

/* Header */
.smd-header { margin-bottom: 40px; }
.smd-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin: 10px 0 16px;
}
.smd-sub {
  font-size: .97rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 660px;
}

/* ── VIDEO ── */
.smd-video-wrap { margin-bottom: 48px; }
.smd-video-label {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.smd-iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}

/* Facade */
.smd-video-facade {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #000;
}
.smd-video-facade.hidden { display: none; }
.smd-facade-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .75;
}
.smd-play-btn {
  position: relative;
  z-index: 2;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(212,168,67,.92);
  border: none;
  color: #000;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s, background .25s, box-shadow .25s;
  box-shadow: 0 0 48px rgba(212,168,67,.55);
  padding-left: 5px;
}
.smd-play-btn:hover { transform: scale(1.1); background: var(--accent); box-shadow: 0 0 64px rgba(212,168,67,.7); }
.smd-video-caption {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  font-family: var(--font-head);
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .06em;
  text-align: center;
  padding: 0 24px;
}

/* Iframe (hidden until play) */
.smd-iframe-hidden {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: none;
}

/* ── SECTION LABELS ── */
.smd-section-label {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 44px 0 8px;
}
.smd-section-sub {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ── COMPONENT CARDS ── */
.smd-components {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.smd-comp-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  transition: border-color var(--transition), transform var(--transition);
}
.smd-comp-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.smd-comp-img {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #0a0a0a;
  min-height: 200px;
}
.smd-comp-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.15), rgba(0,0,0,.5));
}
.smd-comp-num {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(212,168,67,.5);
  line-height: 1;
}
.smd-comp-body {
  padding: 28px;
}
.smd-comp-body h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 6px 0 10px;
}
.smd-comp-body p {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}
.smd-comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.smd-comp-list li {
  font-size: .85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.smd-comp-list li .fas { color: var(--accent); font-size: .72rem; }

/* ── INVERTER CARDS ── */
.smd-inverter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 8px;
}
.smd-inverter-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: 22px 18px;
  transition: border-color var(--transition), transform var(--transition);
}
.smd-inverter-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.smd-inv-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.smd-inv-type {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.smd-inverter-card p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── BATTERY CARDS ── */
.smd-battery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 8px;
}
.smd-battery-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.smd-battery-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.smd-battery-card .fas {
  font-size: 1.4rem;
  color: var(--accent);
}
.smd-battery-card span {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

/* ── SPEC STRIP ── */
.smd-spec-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  margin: 44px 0 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.smd-spec { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.smd-spec-val {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}
.smd-spec-label {
  font-size: .72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.smd-spec-div { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* ── CTA ── */
.smd-cta { text-align: center; }
.smd-cta-note { margin-top: 14px; font-size: .82rem; color: var(--text-muted); }

/* ── feat-tag (shared) ── */
.smd-feat-tag {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
  .solar-modal-panel { padding: 48px 24px 40px; }
  .smd-comp-card { grid-template-columns: 1fr; }
  .smd-comp-img { min-height: 180px; }
  .smd-inverter-grid { grid-template-columns: repeat(2, 1fr); }
  .smd-battery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .smd-inverter-grid { grid-template-columns: 1fr 1fr; }
  .smd-battery-grid { grid-template-columns: 1fr 1fr; }
  .smd-spec-strip { padding: 20px 16px; justify-content: center; gap: 20px 32px; }
  .smd-spec-div { display: none; }
}

/* Light mode */
[data-theme="light"] .solar-modal-backdrop { background: rgba(240,240,240,.92); }
[data-theme="light"] .solar-modal-panel { background: #ffffff; border-color: rgba(0,0,0,.10); }
[data-theme="light"] .smd-inverter-card,
[data-theme="light"] .smd-battery-card,
[data-theme="light"] .smd-comp-card { background: #f7f7f7; }

