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


:root {
  --bg: #F0EBE0;
  --bg-card: #e7e2d7;
  --bg-card-hover: rgba(250,250,245,0.5);
  --border: rgba(0,0,0,0.08);
  --border-inside: inset 0 0 0 1px rgba(0,0,0,0.08);
  --border-hover: rgba(196,221,0,0.6);
  --text: #171717;
  --text-dim: #525252;
  --text-muted: #999999;
  --accent: #C4DD00;
  --accent-dark: #6B6B00;
  --accent-dim: rgba(196,221,0,0.15);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.5s ease;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Wanted Sans Variable', 'Wanted Sans', -apple-system, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; word-break: keep-all; overflow-wrap: break-word; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 760px; }

.text-accent { color: var(--text); }
.text-underline {
  text-decoration: none;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-position: 0 92%;
  background-size: 100% 20%;
  background-repeat: no-repeat;
}
.text-underline-orange {
  text-decoration: none;
  background-image: linear-gradient(#FF7A45, #FF7A45);
  background-position: 0 92%;
  background-size: 100% 20%;
  background-repeat: no-repeat;
}
.text-underline-cream {
  text-decoration: none;
  background-image: linear-gradient(var(--bg), var(--bg));
  background-position: 0 88%;
  background-size: 100% 20%;
  background-repeat: no-repeat;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 50px; font-size: 0.9rem;
  font-weight: 600; cursor: pointer; transition: var(--transition); border: none; font-family: inherit;
}
.btn-primary { background: #171717; color: var(--accent); font-weight: 700; }
.btn-primary:hover { background: #333; }
.btn-outline { background: transparent; color: var(--text-dim); border: 1px solid rgba(0,0,0,0.18); }
.btn-outline:hover { border-color: rgba(0,0,0,0.35); color: var(--text); }
.btn-ghost { background: transparent; color: var(--text-dim); }
.btn-ghost:hover { color: var(--text); }
.btn-lg { padding: 16px 40px; font-size: 0.95rem; }
.btn-sm { padding: 10px 24px; font-size: 0.82rem; }
.btn-block { width: 100%; }
.btn-disabled { pointer-events: none; opacity: 0.3; }

/* ===== Nav ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(240,235,224,0.001);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background 0.5s ease;
}
.navbar.filled { background: rgba(240,235,224,0.5); }
.nav-container { display: flex; align-items: center; height: 72px; position: relative; }
.nav-container .logo { flex-shrink: 0; }
.nav-container .nav-actions { flex-shrink: 0; margin-left: auto; }
.logo { display: flex; align-items: center; }
.logo-img { height: 28px; width: auto; }
.nav-links { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 8px; }
.nav-links a {
  font-size: 0.9rem; color: var(--text); font-weight: 500;
  padding: 8px 18px; border-radius: 50px; transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { background: rgba(0,0,0,0.06); }
.nav-links a:active { background: rgba(0,0,0,0.1); transform: scale(0.97); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-actions .btn-ghost {
  font-size: 0.9rem; color: var(--text); font-weight: 500;
  padding: 8px 18px; border-radius: 50px; transition: var(--transition);
}
.nav-actions .btn-ghost:hover { background: rgba(0,0,0,0.06); }
.nav-actions .btn-ghost:active { background: rgba(0,0,0,0.1); transform: scale(0.97); }
.nav-actions .btn-primary:hover { background: var(--accent); color: #171717; }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.mobile-menu-btn span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }
.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0; background: #F0EBE0;
  padding: 24px; z-index: 999; border-bottom: 1px solid rgba(0,0,0,0.04);
  visibility: hidden; opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.mobile-menu.active { visibility: visible; opacity: 1; }
.navbar { transition: background 0.5s ease; }
.navbar.menu-open { background: #F0EBE0 !important; backdrop-filter: none !important; }
.mobile-menu.active { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 16px; }
.mobile-menu a { font-size: 1.1rem; color: var(--text-dim); }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding-top: 72px; text-align: center; overflow: hidden; background: #C4DD00;
}
.hero::before {
  content: '';
  position: absolute; pointer-events: none;
  width: 130vw; height: 130vw; border-radius: 50%;
  filter: url(#electric);
  background: radial-gradient(circle, rgba(240,235,224,0.4), transparent 65%);
  top: 50%; left: 50%; margin-top: -65vw; margin-left: -65vw;
  animation: hero-blob-1 6s linear infinite;
}
.hero::after {
  content: '';
  position: absolute; pointer-events: none;
  width: 115vw; height: 115vw; border-radius: 50%;
  filter: url(#electric);
  background: radial-gradient(circle, rgba(240,235,224,0.65), transparent 60%);
  top: 50%; left: 50%; margin-top: -57.5vw; margin-left: -57.5vw;
  animation: hero-blob-2 7.5s linear infinite;
}
@keyframes hero-blob-1 {
  0% { transform: rotate(0deg) translateX(300px) rotate(0deg); opacity: 0.6; }
  25% { opacity: 1; }
  50% { opacity: 0.7; }
  75% { opacity: 0.9; }
  100% { transform: rotate(360deg) translateX(300px) rotate(-360deg); opacity: 0.6; }
}
@keyframes hero-blob-2 {
  0% { transform: rotate(0deg) translateX(350px) rotate(0deg); opacity: 0.8; }
  25% { opacity: 0.6; }
  50% { opacity: 1; }
  75% { opacity: 0.7; }
  100% { transform: rotate(-360deg) translateX(350px) rotate(360deg); opacity: 0.8; }
}
/* Hero texture - Halftone */
.hero-halftone {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: radial-gradient(circle, rgba(0,0,0,0.06) 1.5px, transparent 1.5px);
  background-size: 4.2px 4.2px;
  opacity: 0.5;
}

/* Hero lime blobs */
.hero-blob-lime {
  position: absolute; pointer-events: none; border-radius: 50%;
  filter: url(#electric);
}
.hero-blob-lime-1 {
  width: 100vw; height: 100vw;
  background: radial-gradient(circle, rgba(168,189,0,0.3), transparent 60%);
  top: 50%; left: 50%; margin-top: -50vw; margin-left: -50vw;
  animation: hero-blob-lime-1 7s linear infinite;
}
.hero-blob-lime-2 {
  width: 90vw; height: 90vw;
  background: radial-gradient(circle, rgba(168,189,0,0.25), transparent 55%);
  top: 50%; left: 50%; margin-top: -45vw; margin-left: -45vw;
  animation: hero-blob-lime-2 9s linear infinite;
}
@keyframes hero-blob-lime-1 {
  0% { transform: rotate(0deg) translateX(250px) rotate(0deg); opacity: 0.6; }
  25% { opacity: 1; }
  50% { opacity: 0.7; }
  75% { opacity: 0.9; }
  100% { transform: rotate(360deg) translateX(250px) rotate(-360deg); opacity: 0.6; }
}
@keyframes hero-blob-lime-2 {
  0% { transform: rotate(0deg) translateX(300px) rotate(0deg); opacity: 0.8; }
  25% { opacity: 0.6; }
  50% { opacity: 1; }
  75% { opacity: 0.7; }
  100% { transform: rotate(-360deg) translateX(300px) rotate(360deg); opacity: 0.8; }
}

/* Hero ripple waves */
.hero-ripple {
  position: absolute; border-radius: 50%; pointer-events: none;
  border: 1px solid rgba(240,235,224,0.3);
  top: 50%; left: 50%;
  animation: ripple-expand 6s ease-out infinite;
}
.hero-ripple-1 { animation-delay: 0s; }
.hero-ripple-2 { animation-delay: 2s; }
.hero-ripple-3 { animation-delay: 4s; }

@keyframes ripple-expand {
  0% { width: 200px; height: 200px; margin-top: -100px; margin-left: -100px; opacity: 0.5; }
  100% { width: 120vw; height: 120vw; margin-top: -60vw; margin-left: -60vw; opacity: 0; }
}

.hero-grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px; opacity: 0.6;
}
.hero-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none; z-index: 1; height: 450px;
}
.hero-content { position: relative; z-index: 3; }

/* ===== Logo Ticker ===== */
.ticker-section {
  padding: 100px 0; background: var(--bg); overflow: hidden; display: none;
}
.ticker-wrap {
  mask-image: linear-gradient(to right, transparent 0%, #000 12.5%, #000 87.5%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12.5%, #000 87.5%, transparent 100%);
  overflow: hidden;
}
.ticker-track {
  display: flex; align-items: center; gap: 80px;
  width: max-content;
  animation: ticker-scroll 25s linear infinite;
}
.ticker-logo {
  height: 36px; width: auto; flex-shrink: 0;
  opacity: 0.5; filter: invert(1) brightness(0);
  transition: opacity 0.5s ease;
}
.ticker-logo:hover { opacity: 0.5; }

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}
.badge {
  display: inline-block; padding: 8px 20px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; color: #171717;
  border: 1px solid rgba(23,23,23,0.12); background: rgba(255,255,255,0.45);
  backdrop-filter: blur(10px); margin-bottom: 32px;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 800; line-height: 1.1;
  letter-spacing: -0.05em; margin-bottom: 24px; color: #171717;
}
.hero .text-accent { color: #171717; }

/* Electric glitch text */
.electric-text {
  position: relative; display: inline-block;
}
.electric-text::before,
.electric-text::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.electric-text::before { color: #F0EBE0; }
.electric-text::after { color: #C4DD00; }

/* Vibrate on glitch only */
.electric-text {
}
@keyframes electric-vibrate {
  0%, 90%, 96%, 100% { transform: translate(0, 0); }
  91% { transform: translate(1px, -1px); }
  92% { transform: translate(-1px, 1px); }
  93% { transform: translate(1px, 0.5px); }
  94% { transform: translate(-0.5px, -1px); }
  95% { transform: translate(0, 0); }
}

/* Glitch layers - chromatic aberration */
.electric-text::before {
  clip-path: inset(0 0 50% 0);
  mix-blend-mode: darken;
  opacity: 0; transition: none;
}
.electric-text::after {
  clip-path: inset(50% 0 0 0);
  mix-blend-mode: darken;
  opacity: 0; transition: none;
}
/* Glitch active state */
.electric-text.glitching { animation: electric-vibrate 0.1s 3; }
.electric-text.glitching::before { animation: electric-glitch-cream 0.15s 2; }
.electric-text.glitching::after { animation: electric-glitch-lime 0.15s 0.05s 2; }
.electric-text.glitching .electric-line { animation: electric-scanline 0.15s 2; }

/* Flash overlay */
.electric-text .electric-flash {
  position: absolute; inset: 0; pointer-events: none;
  background: rgba(255,255,255,0);
}

/* Noise line */
.electric-text .electric-line {
  position: absolute; left: 0; width: 100%; height: 2px;
  background: rgba(0,0,0,0.4);
  pointer-events: none; opacity: 0;
}

@keyframes electric-vibrate {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(1px, -1px); }
  40% { transform: translate(-1px, 1px); }
  60% { transform: translate(1px, 0.5px); }
  80% { transform: translate(-0.5px, -1px); }
}
@keyframes electric-glitch-cream {
  0% { transform: translate(0, 0) skewX(0deg); opacity: 0; }
  15% { transform: translate(4px, -3px) skewX(-2deg); opacity: 0.8; }
  30% { transform: translate(-2px, 2px) skewX(1deg); opacity: 0.6; }
  50% { transform: translate(3px, -1px) skewX(-1.5deg); opacity: 0.7; }
  70% { transform: translate(-1px, 1px) skewX(1deg); opacity: 0.5; }
  85% { transform: translate(2px, -2px) skewX(-0.5deg); opacity: 0.3; }
  100% { transform: translate(0, 0) skewX(0deg); opacity: 0; }
}
@keyframes electric-glitch-lime {
  0% { transform: translate(0, 0) skewX(0deg); opacity: 0; }
  15% { transform: translate(-4px, 3px) skewX(2deg); opacity: 0.8; }
  30% { transform: translate(3px, -2px) skewX(-1deg); opacity: 0.6; }
  50% { transform: translate(-2px, 1px) skewX(1.5deg); opacity: 0.7; }
  70% { transform: translate(1px, -1px) skewX(-1deg); opacity: 0.5; }
  85% { transform: translate(-2px, 2px) skewX(0.5deg); opacity: 0.3; }
  100% { transform: translate(0, 0) skewX(0deg); opacity: 0; }
}
@keyframes electric-flash {
  0%, 100% { background: rgba(255,255,255,0); }
  20% { background: rgba(255,255,255,0.2); }
  40% { background: rgba(255,255,255,0); }
  60% { background: rgba(255,255,255,0.15); }
  80% { background: rgba(255,255,255,0); }
}
@keyframes electric-scanline {
  0% { opacity: 0; top: 0; }
  10% { opacity: 1; top: 0%; height: 3px; }
  30% { opacity: 1; top: 25%; height: 2px; }
  50% { opacity: 0.9; top: 50%; height: 3px; }
  70% { opacity: 0.8; top: 75%; height: 2px; }
  90% { opacity: 0.5; top: 100%; height: 2px; }
  100% { opacity: 0; top: 100%; }
}
.hero-sub { font-size: 1.2rem; color: #171717; max-width: 520px; margin: 0 auto 44px; line-height: 1.5; font-weight: 500; }
.hero-buttons { display: flex; align-items: center; justify-content: center; gap: 14px; }
.hero .btn-primary { background: #171717; color: var(--accent); }
.hero .btn-primary:hover { background: #333; }
.hero-buttons .btn { min-width: 200px; }
.hero .btn-outline-hero { background: transparent; color: #171717; border: 1px solid rgba(23,23,23,0.25); }
.hero .btn-outline-hero:hover { border-color: #171717; }
.scroll-arrow { margin-left: 6px; vertical-align: middle; animation: bounce-down 1.5s ease-in-out infinite; }
@keyframes bounce-down { 0% { transform: translateY(-2px); } 50% { transform: translateY(3px); } 100% { transform: translateY(-2px); } }

/* ===== Section Shared ===== */
.section { padding: 120px 0; position: relative; background: var(--bg); }
.section-header { text-align: left; margin-bottom: 60px; }
.section-tag { display: none; }
.section-header h2 {
  font-size: clamp(2.4rem, 5vw, 3rem); font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 16px; line-height: 1.2; color: var(--text);
}
.section-desc { font-size: 1.2rem; color: var(--text-dim); max-width: 680px; margin: 0; line-height: 1.5; font-weight: 500; }

/* ===== Steps (How It Works) ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.step-card {
  background: var(--bg-card); border: none; border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px var(--border);
  padding: 32px; text-align: left; transition: var(--transition); position: relative;
}
.step-card:hover { background: var(--bg-card-hover); box-shadow: inset 0 0 0 2px var(--border-hover); }
.step-icon {
  width: 56px; height: 56px; border-radius: 14px; background: #171717;
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--accent);
}
.step-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.step-card p { font-size: 1rem; color: var(--text-dim); line-height: 1.5; font-weight: 500; }

/* ===== Features (alternating rows) ===== */
.features-list { display: flex; flex-direction: column; gap: 12px; }
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
  background: var(--bg-card); border: none; border-radius: var(--radius);
  overflow: hidden; transition: var(--transition); position: relative;
}
.feature-row::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 0 1px var(--border); pointer-events: none; transition: var(--transition);
}
.feature-row:hover::after { box-shadow: inset 0 0 0 2px var(--border-hover); }
.feature-text {
  padding: 60px; display: flex; flex-direction: column; justify-content: center;
}
.feature-text h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.feature-text p { font-size: 1rem; color: var(--text-dim); line-height: 1.5; font-weight: 500; margin-bottom: 28px; }
.btn-accent {
  background: #171717; color: #fff; font-weight: 600;
  border-radius: 50px; width: fit-content;
}
.feature-row:hover .btn-accent { background: var(--accent); color: #171717; }
.feature-img { min-height: 360px; position: relative; }
.fi-1, .fi-2, .fi-3, .fi-4 { background: rgba(0,0,0,0.03); position: relative; }
.feature-img [style*="background:"] { mix-blend-mode: multiply; }
.feature-img::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,0.08); pointer-events: none; mix-blend-mode: multiply;
}

/* ===== Benefits (2x2 grid) ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.benefit-card {
  background: var(--bg-card); border: none; border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px var(--border);
  padding: 32px; display: flex; flex-direction: column; justify-content: space-between;
  min-height: 220px; transition: var(--transition);
}
.benefit-card:hover { background: var(--bg-card-hover); box-shadow: inset 0 0 0 2px var(--border-hover); }
.benefit-top { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.benefit-top p { flex: 1; font-size: 1rem; color: var(--text-dim); line-height: 1.5; font-weight: 500; }
.benefit-arrow {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: #171717; display: flex; align-items: center; justify-content: center;
  transform: rotate(-45deg); transition: all 0.5s ease;
}
.benefit-card:hover .benefit-arrow { transform: rotate(0deg); background: var(--accent); }
.benefit-arrow svg { transition: stroke 0.5s ease; }
.benefit-card:hover .benefit-arrow svg { stroke: #171717; }
.benefit-card h4 { font-size: 1.5rem; font-weight: 800; color: var(--text); }

/* ===== Pricing ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pricing-card {
  background: var(--bg-card); border: none; border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px var(--border);
  padding: 32px; text-align: center; transition: var(--transition); position: relative;
  display: flex; flex-direction: column;
}
.pricing-card .impact-box { margin-top: auto; margin-bottom: 24px; }
.pricing-top { flex-shrink: 0; }
.pricing-footer { margin-top: auto; }
.pricing-footer .impact-box { margin-bottom: 24px; }
.pricing-card:not(.popular):not(.enterprise) { background: rgba(250,250,245,0.5); }
.pricing-card:not(.popular):not(.enterprise):hover { box-shadow: inset 0 0 0 2px var(--border-hover); }
.pricing-card:not(.popular):not(.enterprise) .btn { pointer-events: none; opacity: 0.3; color: #F0EBE0; }
.pricing-card.enterprise { background: rgba(250,250,245,0.5); }
.pricing-card.enterprise:hover { background: rgba(250,250,245,0.7); box-shadow: inset 0 0 0 2px var(--border-hover); }
.pricing-card.enterprise .pricing-amount {
  font-size: 2.4rem; display: flex; align-items: center; justify-content: center;
}
.pricing-card.popular {
  background: rgba(250,250,245,0.5); box-shadow: inset 0 0 0 1px var(--border); cursor: pointer;
}
.pricing-card.popular:hover { background: rgba(250,250,245,0.7); box-shadow: inset 0 0 0 2px var(--border-hover); }
.pricing-card.popular:hover .btn-primary { background: var(--accent); color: #171717; }
.pricing-card:hover .pricing-tier { background: var(--accent); color: #171717; }
.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 6px 24px; border-radius: 50px; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; background: #171717; color: var(--accent); letter-spacing: 0.05em;
}
.pricing-tier {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--text); background: rgba(0,0,0,0.06); padding: 6px 16px;
  border-radius: 50px; margin-bottom: 12px;
}
.pricing-kwh { font-size: 1rem; font-weight: 600; color: var(--text-dim); margin-bottom: 12px; }
.pricing-amount { font-size: 3.2rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 4px; color: var(--text); }
.period { font-size: 1.2rem; font-weight: 600; color: var(--text-dim); }
.pricing-label { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0; }
.pricing-divider { height: 1px; background: var(--border); margin: 28px 0; }
.pricing-features { text-align: left; margin-bottom: 24px; }
.pricing-features li { padding: 10px 0; font-size: 0.9rem; color: var(--text-dim); line-height: 1.5; font-weight: 500; }
.pricing-features li::before { content: '✓'; margin-right: 10px; color: var(--accent-dark); font-weight: 600; transition: color 0.5s ease; }
.pricing-card:hover .pricing-features li::before { color: var(--accent); }
.impact-box {
  margin: 0 0 24px; padding: 16px; border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.04); border: none; box-shadow: inset 0 0 0 1px var(--border);
}
.impact-title { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.impact-row { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.impact-arrow { color: var(--text-muted); font-size: 0.9rem; flex-shrink: 0; }
.impact-row span { font-size: 1.1rem; font-weight: 700; color: var(--text); }

/* ===== Trust ===== */
.trust-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}
.trust-logo-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.trust-company-logo { height: 24px; width: auto; }
.trust-arrow {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: #171717; display: flex; align-items: center; justify-content: center;
  transform: rotate(-45deg); transition: all 0.5s ease;
}
.trust-arrow:hover { transform: rotate(0deg); background: #f0612e; }
.trust-arrow:hover svg { stroke: #171717; }
.trust-arrow svg { transition: stroke 0.5s ease; }
.trust-left h2 {
  font-size: clamp(2.4rem, 5vw, 3rem); font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.2; color: var(--text); margin-bottom: 20px;
}
.trust-desc { font-size: 1.2rem; color: var(--text-dim); line-height: 1.5; font-weight: 500; margin-bottom: 32px; }
.trust-stats-row { display: flex; align-items: stretch; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.trust-stat-inline { white-space: nowrap; }
.trust-stat-divider { width: 1px; background: var(--border); transition: opacity 0.3s ease; }
.trust-stats-row.wrapped .trust-stat-divider { opacity: 0; width: 0; margin: 0; }
.trust-stat-label { display: block; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.trust-stat-value { display: block; font-size: 1.8rem; font-weight: 800; color: var(--text); }
.trust-checklist { display: flex; flex-direction: column; gap: 0; }
.trust-checklist li {
  font-size: 1rem; color: var(--text-dim); padding: 8px 0; font-weight: 500;
}
.trust-checklist li::before { content: '✓'; margin-right: 10px; color: var(--accent-dark); font-weight: 600; }

/* Trust ticker */
.trust-right { display: flex; gap: 12px; overflow: hidden; height: 500px; }
.trust-ticker-col {
  flex: 1; overflow: hidden; position: relative;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.trust-ticker-track { display: flex; flex-direction: column; gap: 12px; }
.trust-ticker-up .trust-ticker-track { animation: trust-scroll-up 20s linear infinite; }
.trust-ticker-down .trust-ticker-track { animation: trust-scroll-down 22s linear infinite; }
.trust-biz-card {
  background: var(--bg-card); box-shadow: inset 0 0 0 1px var(--border);
  border-radius: var(--radius-sm); padding: 20px;
  display: flex; flex-direction: column; gap: 4px; flex-shrink: 0;
}
.biz-type { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.biz-kwh { font-size: 1.4rem; font-weight: 800; color: #868686; }

@keyframes trust-scroll-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@keyframes trust-scroll-down {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}
@keyframes trust-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes trust-scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ===== FAQ (dark card, 2-col layout) ===== */
.faq-container {
  background: #e7e2d7; border: none; border-radius: var(--radius); box-shadow: inset 0 0 0 1px var(--border); padding: 60px;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start;
}
.faq-left h2 {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.2; color: var(--text); margin-bottom: 16px;
}
.faq-left .section-tag { margin-bottom: 20px; }
.faq-accent { color: var(--text); }
.faq-left p { font-size: 1.2rem; color: var(--text-dim); line-height: 1.5; font-weight: 500; }
.faq-right { display: flex; flex-direction: column; justify-content: center; }
.faq-divider { height: 1px; background: var(--border); }
.faq-item { overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 0; background: none; border: none;
  color: var(--text); font-size: 1.05rem; font-weight: 600; cursor: pointer;
  font-family: inherit; text-align: left; line-height: 1.3;
}
.faq-icon { flex-shrink: 0; color: var(--text-dim); transition: transform 0.5s ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.faq-answer p { padding: 0 0 20px; font-size: 1rem; color: var(--text-dim); line-height: 1.5; font-weight: 500; }

/* ===== CTA ===== */
.cta { padding: 40px 0 80px; background: var(--bg); }
.cta-box {
  position: relative; text-align: center; padding: 100px 40px;
  background: #C4DD00; border: none; border-radius: 24px; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; pointer-events: none;
  width: 130vw; height: 130vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,235,224,0.4), transparent 65%);
  top: 50%; left: 50%; margin-top: -65vw; margin-left: -65vw;
  animation: blob-1 6s linear infinite;
}
.cta-box::after {
  content: ''; position: absolute; pointer-events: none;
  width: 115vw; height: 115vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,235,224,0.65), transparent 60%);
  top: 50%; left: 50%; margin-top: -57.5vw; margin-left: -57.5vw;
  animation: blob-2 7.5s linear infinite;
}
@keyframes blob-1 {
  0% { transform: rotate(0deg) translateX(300px) rotate(0deg); opacity: 0.3; }
  25% { opacity: 1; }
  50% { opacity: 0.5; }
  75% { opacity: 0.9; }
  100% { transform: rotate(360deg) translateX(300px) rotate(-360deg); opacity: 0.3; }
}
@keyframes blob-2 {
  0% { transform: rotate(0deg) translateX(350px) rotate(0deg); opacity: 0.6; }
  25% { opacity: 0.3; }
  50% { opacity: 1; }
  75% { opacity: 0.4; }
  100% { transform: rotate(-360deg) translateX(350px) rotate(360deg); opacity: 0.6; }
}
.cta-grain {
  position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px; opacity: 0.6;
}
.cta-halftone {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; border-radius: inherit;
  background-image: radial-gradient(circle, rgba(0,0,0,0.06) 1.5px, transparent 1.5px);
  background-size: 4.2px 4.2px;
  opacity: 0.5;
}
.cta-box .cta-sub, .cta-box h2, .cta-desc, .cta-buttons { position: relative; z-index: 2; }
.cta-grain { z-index: 1; }
.cta-box .cta-sub { font-size: 1rem; color: #404040; margin-bottom: 12px; position: relative; font-weight: 500; }
.cta-box h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800;
  margin-bottom: 16px; position: relative; color: #171717; line-height: 1.3;
}
.cta-desc { font-size: 1rem; color: #404040; max-width: 440px; margin: 0 auto 36px; position: relative; line-height: 1.7; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 12px; position: relative; }
.cta-buttons .btn-primary { background: #171717; color: var(--accent); }
.cta-buttons .btn-outline { border-color: rgba(23,23,23,0.25); color: #171717; }
.cta-buttons .btn-outline:hover { border-color: #171717; }

/* ===== Footer ===== */
.footer { padding: 72px 0 36px; border-top: 1px solid var(--border); background: var(--bg); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo-img { height: 24px; width: auto; }
.footer-brand p { margin-top: 14px; font-size: 0.85rem; color: var(--text-dim); max-width: 260px; line-height: 1.7; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; color: var(--text-dim); }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.85rem; color: var(--text-muted); transition: var(--transition); }
.footer-col a:hover { color: var(--text); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }

/* ===== Animations ===== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-menu-btn { display: flex; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-img { min-height: 240px; order: -1; }
  .feature-text { order: 1; padding: 40px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 180px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .hero { min-height: 100vh; }
  .hero h1 { font-size: 3.2rem; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card, .benefit-card, .pricing-card, .feature-text { padding: 24px; }
  .faq-container { grid-template-columns: 1fr; padding: 24px; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .section { padding: 80px 0; }
  .cta-box { padding: 60px 24px; }
  .trust-layout { grid-template-columns: 1fr; }
  .trust-right { height: auto; flex-direction: column; gap: 12px; }
  .trust-ticker-col {
    mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
  }
  .trust-ticker-track { flex-direction: row; width: max-content; }
  .trust-biz-card { min-width: 180px; }
  .trust-ticker-up .trust-ticker-track { animation: trust-scroll-left 20s linear infinite; }
  .trust-ticker-down { display: block; }
  .trust-ticker-down .trust-ticker-track { animation: trust-scroll-right 22s linear infinite; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
