/* ============================================
   SOLARIO — Editorial Solar Aesthetic
   Modern cream + solar amber + deep teal
   ============================================ */

:root {
  --bg-deep: #f7f3ed;
  --bg-surface: #fffcf8;
  --bg-elevated: #efe9df;
  --bg-card: #ffffff;
  --cream-muted: #d4cec4;
  --solar-gold: #c8780a;
  --solar-amber: #e06510;
  --solar-glow: rgba(200, 120, 10, 0.18);
  --teal: #0a8b6e;
  --teal-dim: rgba(10, 139, 110, 0.1);
  --text-primary: #2a2520;
  --text-secondary: #5c554a;
  --text-muted: #8a8378;
  --border: rgba(42, 37, 32, 0.1);
  --border-strong: rgba(42, 37, 32, 0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --header-h: 96px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-display);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--solar-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
}

body:hover .cursor-glow { opacity: 0.25; }

/* Typography helpers */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--solar-gold);
}

.section-header {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: 1rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--teal-dim);
  border-radius: 100px;
  background: var(--teal-dim);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--solar-gold), var(--solar-amber));
  color: #fff;
  box-shadow: 0 4px 24px var(--solar-glow);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px var(--solar-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  background: rgba(42, 37, 32, 0.04);
  border-color: var(--text-muted);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
  width: 100%;
}

.btn-outline:hover {
  border-color: var(--solar-gold);
  color: var(--solar-gold);
}

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }

input[readonly] {
  background: var(--bg-elevated);
  color: var(--text-secondary);
  cursor: default;
}

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  height: var(--header-h);
}

.site-header {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  z-index: 1;
  height: 100%;
  overflow: visible;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(247, 243, 237, 0.98);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}

body.mobile-menu-open .site-header,
body.mobile-menu-open .site-header.scrolled {
  background: #f7f3ed;
  background: var(--bg-deep);
  backdrop-filter: none;
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  overflow: visible;
}

.logo {
  display: inline-flex;
  align-items: flex-end;
  line-height: 0;
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: -90px;
  position: relative;
  z-index: 1001;
}

.logo-img {
  height: 260px;
  width: auto;
  max-width: 720px;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--solar-gold);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-phone {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-phone:hover { color: var(--solar-gold); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(247, 243, 237, 0.94) 0%, rgba(247, 243, 237, 0.78) 50%, rgba(247, 243, 237, 0.9) 100%),
    linear-gradient(to top, var(--bg-deep) 0%, transparent 35%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  padding-block: 4rem 6rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: var(--teal-dim);
  border-radius: 100px;
  border: 1px solid rgba(10, 139, 110, 0.2);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.05;
}

.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--solar-gold);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.stat-suffix {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--solar-gold);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 24px 64px rgba(42, 37, 32, 0.12);
  transform: rotate(2deg);
  transition: transform 0.5s var(--ease-out);
}

.hero-card:hover { transform: rotate(0deg) scale(1.02); }

.hero-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.hero-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(42, 37, 32, 0.82), transparent);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-card-caption strong {
  font-size: 1.5rem;
  color: #fff;
}

.hero-card-caption .mono {
  color: rgba(255, 255, 255, 0.65);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--solar-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Trust bar */
.trust-bar {
  background: var(--bg-surface);
  border-block: 1px solid var(--border);
  padding: 1.25rem 0;
}

.trust-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.trust-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--solar-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Quote Form */
.quote-section {
  padding: 7rem 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(240, 160, 48, 0.06) 0%, transparent 50%),
    var(--bg-deep);
}

.quote-form {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-errors {
  background: rgba(220, 60, 60, 0.08);
  border: 1px solid rgba(220, 60, 60, 0.25);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: #b53030;
  font-size: 0.9rem;
}

.form-section {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-section legend {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group-full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--solar-gold);
  box-shadow: 0 0 0 3px var(--solar-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238a8378'%3E%3Cpath d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--bg-elevated);
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.interest-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: 1.5rem 0.75rem;
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease-out);
}

.interest-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.interest-card:has(input:checked) {
  border-color: var(--solar-gold);
  background: rgba(240, 160, 48, 0.08);
}

.interest-card input { display: none; }

.interest-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.interest-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.radio-group {
  display: flex;
  gap: 0.5rem;
}

.radio-pill {
  flex: 1;
  text-align: center;
  padding: 0.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.radio-pill:has(input:checked) {
  border-color: var(--solar-gold);
  background: rgba(240, 160, 48, 0.1);
  color: var(--solar-gold);
}

.radio-pill input { display: none; }

.checkbox-inline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.checkbox-inline input {
  width: 18px;
  height: 18px;
  accent-color: var(--solar-gold);
}

.form-submit {
  text-align: center;
}

.form-disclaimer {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-disclaimer a {
  color: var(--solar-gold);
  text-decoration: underline;
}

.form-success {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--teal-dim);
  border-radius: var(--radius-xl);
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--teal-dim);
  border: 2px solid var(--teal);
  border-radius: 50%;
  position: relative;
}

.success-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 46%;
  width: 10px;
  height: 18px;
  border-right: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: translate(-50%, -50%) rotate(45deg);
}

.form-success h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--text-secondary);
  max-width: 480px;
  margin-inline: auto;
}

/* Process */
.process-section {
  padding: 7rem 0;
  background: var(--bg-surface);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.process-step {
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--solar-gold);
  opacity: 0.4;
  display: block;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.process-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.process-visual img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
}

/* Services */
.services-section {
  padding: 7rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, background 0.3s;
}

.service-card:hover {
  border-color: rgba(240, 160, 48, 0.3);
  background: var(--bg-elevated);
}

.service-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--teal);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.service-card h3 a:hover {
  color: var(--solar-gold);
}

.service-card > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.service-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--solar-gold);
}

/* Pricing */
.pricing-section {
  padding: 7rem 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(46, 230, 184, 0.05) 0%, transparent 50%),
    var(--bg-surface);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s var(--ease-out);
  position: relative;
}

.pricing-card:hover { transform: translateY(-6px); }

.pricing-featured {
  border-color: var(--solar-gold);
  background: linear-gradient(180deg, rgba(240, 160, 48, 0.08) 0%, var(--bg-elevated) 40%);
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(240, 160, 48, 0.12);
}

.pricing-featured:hover { transform: scale(1.03) translateY(-6px); }

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--solar-gold);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.pricing-tier-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
}

.pricing-tier-badge--good { background: #16a34a; }
.pricing-tier-badge--better { background: var(--solar-gold); }
.pricing-tier-badge--best { background: #dc2626; }

.pricing-card--good {
  border-top: 3px solid #16a34a;
}

.pricing-card--better.pricing-featured {
  border-color: var(--solar-gold);
  border-top: 3px solid var(--solar-gold);
}

.pricing-card--best {
  border-top: 3px solid #dc2626;
}

.pricing-upgrades {
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.pricing-upgrades-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.pricing-upgrades ul {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pricing-upgrades li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.pricing-upgrades strong {
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.btn-pricing-good {
  border-color: #16a34a;
  color: #16a34a;
}

.btn-pricing-good:hover {
  background: #16a34a;
  color: #fff;
}

.btn-pricing-best {
  border-color: #dc2626;
  color: #dc2626;
}

.btn-pricing-best:hover {
  background: #dc2626;
  color: #fff;
}

.pricing-name {
  font-size: 1.5rem;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-amount {
  padding-block: 1rem;
  border-block: 1px solid var(--border);
}

.price-from {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.price-note {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 0.45em;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
}

.rebates-banner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
  align-items: center;
}

.rebates-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.rebates-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.rebates-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.rebate-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.rebate-label {
  color: var(--text-muted);
}

.rebate-item strong {
  font-size: 1.25rem;
  color: var(--solar-gold);
}

.rebate-item span:last-child {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.add-ons h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.add-ons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.add-on {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

.add-on-name { color: var(--text-secondary); }

.add-on-price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* Technology */
.tech-section {
  padding: 7rem 0;
}

.tech-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tech-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.tech-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.tech-feature {
  padding: 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.tech-feature strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

.tech-feature p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.tech-visual {
  position: relative;
}

.tech-visual img {
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.tech-visual-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--solar-gold);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.4;
}

/* Battery */
.battery-section {
  padding: 7rem 0;
  background: var(--bg-surface);
}

.battery-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.battery-visual img {
  border-radius: var(--radius-xl);
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}

.battery-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.battery-feature {
  padding-left: 1.5rem;
  border-left: 3px solid var(--solar-gold);
}

.battery-feature h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.battery-feature p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Stats */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(240, 160, 48, 0.08), rgba(46, 230, 184, 0.05));
  border-block: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-big {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.stat-plus, .stat-unit {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--solar-gold);
}

.stat-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Reviews */
.reviews-section {
  padding: 7rem 0;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

.review-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.review-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.review-card strong {
  font-size: 0.9rem;
  color: var(--text-primary);
}

.review-card footer span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.reviews-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.reviews-visual img {
  width: 100%;
  aspect-ratio: 21/8;
  object-fit: cover;
}

/* FAQ */
.faq-section {
  padding: 7rem 0;
  background: var(--bg-surface);
}

.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item[open] {
  border-color: rgba(240, 160, 48, 0.3);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--solar-gold);
  transition: transform 0.3s var(--ease-spring);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover { color: var(--solar-gold); }

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* CTA */
.cta-section {
  padding: 6rem 0;
}

.cta-inner {
  text-align: center;
  padding: 4rem 2rem;
  background:
    radial-gradient(ellipse at center, rgba(240, 160, 48, 0.12) 0%, transparent 60%),
    var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.cta-inner h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-inner p {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand .footer-logo {
  display: block;
  align-self: auto;
  margin: 0 0 1rem;
  position: static;
  z-index: auto;
  line-height: 0;
}

.footer-brand .footer-logo-img {
  height: auto;
  width: auto;
  max-width: 220px;
  max-height: 56px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0.5rem 0 1.5rem;
  max-width: 280px;
  line-height: 1.65;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-contact a {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--solar-gold); }

.footer-social {
  margin-top: 1.75rem;
}

.footer-social-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
}

.social-links {
  display: flex;
  gap: 0.65rem;
  list-style: none;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  background: var(--bg-elevated);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.social-links a:hover {
  color: var(--solar-gold);
  border-color: var(--solar-gold);
  background: rgba(240, 160, 48, 0.08);
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a,
.footer-col li {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--solar-gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal a {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.15rem;
  min-height: 44px;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
  z-index: 1;
}

.footer-legal a:hover { color: var(--solar-gold); }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid,
  .tech-layout,
  .battery-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual { order: -1; max-width: 400px; margin-inline: auto; }
  .hero-card { transform: none; }

  .pricing-grid,
  .process-steps,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-featured { transform: none; }
  .pricing-featured:hover { transform: translateY(-6px); }

  .reviews-track { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .rebates-banner { grid-template-columns: 1fr; }
  .rebates-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .interest-grid { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions { display: none !important; }

  .hero-stats { flex-direction: column; gap: 1.25rem; }
  .form-grid { grid-template-columns: 1fr; }
  .interest-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-features { grid-template-columns: 1fr; }
  .reviews-track { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .add-ons-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .trust-inner { justify-content: center; }
}

@media (max-width: 480px) {
  .quote-form { padding: 1.5rem; }
  .interest-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}

/* ===== Dropdown Navigation ===== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.85rem;
}

.nav-actions-mobile {
  display: none;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.nav-dropdown-trigger:hover,
.nav-dropdown.open .nav-dropdown-trigger {
  color: var(--text-primary);
}

.nav-chevron {
  transition: transform 0.25s var(--ease-out);
}

.nav-dropdown.open .nav-chevron,
.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  box-shadow: 0 16px 48px rgba(42, 37, 32, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out), visibility 0.2s;
  z-index: 100;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -0.85rem;
  left: -1rem;
  right: -1rem;
  height: 0.85rem;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}

.dropdown-menu li a:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.nav-links > li > a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-links > li > a:hover {
  color: var(--text-primary);
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 4rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(247, 243, 237, 0.96) 0%, rgba(247, 243, 237, 0.88) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.08;
}

.page-hero-content h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--solar-gold);
}

.page-hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.page-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--solar-gold); }

.breadcrumb span { color: var(--text-secondary); }

/* ===== Page Content ===== */
.page-content {
  padding: 4rem 0 2rem;
}

.content-block {
  margin-bottom: 4rem;
}

.content-block h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.content-block h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--solar-gold);
}

.content-block p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.content-grid.reverse .content-text { order: 2; }
.content-grid.reverse .content-visual { order: 1; }

.content-visual img {
  border-radius: var(--radius-xl);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--border);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-list li {
  padding: 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.feature-list li strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

.feature-list li span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.spec-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.spec-card strong {
  display: block;
  font-size: 1.5rem;
  color: var(--solar-gold);
  margin-bottom: 0.35rem;
}

.spec-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.page-faq {
  padding: 3rem 0;
  background: var(--bg-surface);
  border-block: 1px solid var(--border);
}

/* ===== Support Forms ===== */
.support-section {
  padding: 4rem 0;
}

.support-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.support-form {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

/* ===== Blog ===== */
.blog-index-hero {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 3rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-bottom: 4rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.blog-card-image {
  display: block;
  flex-shrink: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-elevated);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.blog-card-meta {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.blog-card-body h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.35;
  color: var(--text-primary);
}

.blog-card-body h2 a {
  color: var(--text-primary);
  transition: color 0.2s;
}

.blog-card-body h2 a:hover {
  color: var(--solar-gold);
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.blog-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--solar-gold);
  margin-top: auto;
}

/* Blog Article */
.article-layout {
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 2rem;
}

.article-header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.article-header h1 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.article-featured-img {
  max-width: 900px;
  margin: 0 auto 3rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.article-featured-img img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
}

.article-body h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
}

.article-body h3 {
  font-size: 1.15rem;
  margin: 2rem 0 0.75rem;
  color: var(--text-primary);
}

.article-body p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.25rem 1.25rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.article-body li { margin-bottom: 0.5rem; }

.article-body a:not(.btn) {
  color: var(--solar-gold);
  text-decoration: underline;
}

.article-cta-inline .btn {
  color: #fff;
  text-decoration: none;
}

.article-toc {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}

.article-toc h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.article-toc ol {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.9rem;
}

.article-cta-inline {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--solar-gold);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 2rem 0;
}

.article-cta-inline p {
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; }
  .content-grid.reverse .content-text,
  .content-grid.reverse .content-visual { order: unset; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .specs-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ===== Commercial Page ===== */
.commercial-page .commercial-hero {
  padding: 8rem 0 3rem;
  background:
    radial-gradient(ellipse at top right, rgba(240, 160, 48, 0.1) 0%, transparent 55%),
    var(--bg-deep);
  border-bottom: 1px solid var(--border);
}

.commercial-hero-inner {
  max-width: 820px;
}

.commercial-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  margin: 1rem 0;
}

.commercial-hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 2rem;
}

.commercial-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.commercial-page .quote-section {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.commercial-section {
  padding: 5rem 0;
}

.commercial-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.commercial-solution:last-child {
  border-bottom: none;
}

.commercial-solution-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.commercial-solution-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.commercial-solution-content p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.commercial-solution-content ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.commercial-solution-content li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.commercial-solution-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--solar-gold);
}

.commercial-trust {
  padding: 5rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.commercial-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.commercial-step {
  padding: 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.commercial-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(240, 160, 48, 0.15);
  color: var(--solar-gold);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.commercial-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.commercial-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.commercial-incentives {
  padding: 5rem 0;
}

.commercial-incentives-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.commercial-incentive-cards {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.commercial-incentive-card {
  padding: 1.25rem 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.commercial-incentive-card h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.commercial-incentive-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.commercial-incentives-note {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.commercial-incentives-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.commercial-process-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.commercial-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.commercial-process-item {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.commercial-process-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--solar-gold);
  margin-bottom: 0.75rem;
}

.commercial-process-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.commercial-process-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.commercial-industries {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.commercial-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  list-style: none;
}

.commercial-industry-grid li {
  padding: 1.1rem 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--text-secondary);
  text-align: center;
}

.commercial-faq {
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.commercial-cta {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .commercial-solution,
  .commercial-solution--reverse {
    grid-template-columns: 1fr;
  }

  .commercial-steps,
  .commercial-process {
    grid-template-columns: repeat(2, 1fr);
  }

  .commercial-incentives-inner {
    grid-template-columns: 1fr;
  }

  .commercial-industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .commercial-hero {
    padding-top: 6.5rem;
  }

  .commercial-hero-actions {
    flex-direction: column;
  }

  .commercial-hero-actions .btn {
    width: 100%;
  }

  .commercial-steps,
  .commercial-process,
  .commercial-industry-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Standalone Mobile Menu ===== */
.mobile-menu-btn {
  display: none;
}

.mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .reveal,
  .reveal.visible {
    transform: none;
  }

  #site-header,
  .site-header {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  .nav.container {
    padding-inline: 1.25rem;
    align-items: center;
  }

  .logo {
    align-self: center;
    margin: 0 !important;
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    max-width: calc(100% - 54px);
    height: var(--header-h);
    overflow: visible;
    z-index: 1;
  }

  .logo-img {
    height: 96px;
    width: auto;
    max-width: min(300px, 65vw);
    object-fit: contain;
    object-position: left center;
  }

  .footer-brand .footer-logo {
    max-width: none;
    height: auto;
    overflow: visible;
    margin: 0 0 1rem;
    align-self: auto;
    display: block;
  }

  .footer-brand .footer-logo-img {
    max-width: min(260px, 80vw);
    max-height: 48px;
    object-position: left center;
  }

  .mobile-menu-btn {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    margin-left: auto;
    flex-shrink: 0;
    position: relative;
    z-index: 100000;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-menu-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .mobile-menu-btn.is-active .mobile-menu-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-btn.is-active .mobile-menu-bar:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.is-active .mobile-menu-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99998;
    background: #f7f3ed;
    background: var(--bg-deep);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .mobile-menu:not(.is-open) {
    display: none !important;
    visibility: hidden;
    pointer-events: none;
  }

  .mobile-menu.is-open {
    display: block;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  body.mobile-menu-open .hero,
  body.mobile-menu-open .page-hero,
  body.mobile-menu-open .trust-bar,
  body.mobile-menu-open main {
    visibility: hidden;
  }

  .mobile-menu-nav {
    padding: 0;
    background: var(--bg-deep);
  }

  .mobile-menu-group {
    border-bottom: 1px solid var(--border);
    background: var(--bg-deep);
  }

  .mobile-menu-group summary,
  .mobile-menu-link {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu-group summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu-group summary {
    position: relative;
    padding-right: 2.5rem;
  }

  .mobile-menu-group summary::after {
    content: '';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-secondary);
    border-bottom: 2px solid var(--text-secondary);
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.2s ease;
  }

  .mobile-menu-group[open] summary::after {
    transform: translateY(-30%) rotate(225deg);
  }

  .mobile-menu-links {
    padding: 0 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .mobile-menu-links a {
    display: block;
    padding: 0.55rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
  }

  .mobile-menu-links a:hover {
    color: var(--text-primary);
  }

  .mobile-menu-footer {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid var(--border);
    background: var(--bg-deep);
  }

  .mobile-menu-phone {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
  }
}

