/* ─── TOKENS ─── */
:root {
  --sb-bg:           #09090b;
  --sb-surface-1:    #111113;
  --sb-surface-2:    #18181b;
  --sb-surface-3:    #222226;
  --sb-yellow:       #ffd901;
  --sb-yellow-dim:   #e6c300;
  --sb-yellow-glow:  rgba(255,217,1,0.22);
  --sb-green:        #22c55e;
  --sb-green-glow:   rgba(34,197,94,0.18);
  --sb-text:         #e4e4e7;
  --sb-text-dim:     #a1a1aa;
  --sb-text-muted:   #71717a;
  --sb-light-bg:     #fafafa;
  --sb-light-text:   #09090b;
  --sb-light-muted:  #5c5c5c;
  --sb-border-dark:  rgba(255,255,255,0.08);
  --sb-border-light: #e4e4e7;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  background: var(--sb-bg);
  color: var(--sb-text);
  overflow-x: hidden;
}

/* ─── GRAIN ─── */
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
  z-index: 1;
}

/* ─── SOLAR GRID ─── */
.solar-grid {
  position: absolute;
  inset: 0;
  /* Temporarily disabled; keep gradients for quick re-enable.
  background-image:
    linear-gradient(rgba(255,217,1,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,217,1,0.06) 1px, transparent 1px);
  */
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
}

/* ─── LAYOUT ─── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.04em; }
.overline {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sb-yellow);
}
.accent { color: var(--sb-yellow); }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(9,9,11,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s;
  overflow: visible;
}
nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.5); }
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  overflow: visible;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; overflow: visible; }
.nav-logo .logo-text { height: 44px; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sb-text-dim);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; right: 0;
  width: 0; height: 1.5px;
  background: var(--sb-yellow);
  transition: width 0.25s cubic-bezier(0.22,1,0.36,1);
}
.nav-links a:hover { color: var(--sb-text); }
.nav-links a:hover::after { width: 100%; left: 0; right: auto; }
.nav-links a.active { color: var(--sb-yellow); }
.nav-links a.active::after { width: 100%; left: 0; right: auto; }
.nav-cta {
  background: var(--sb-yellow);
  color: var(--sb-bg);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  background: var(--sb-yellow-dim);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--sb-yellow-glow);
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid var(--sb-border-dark);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--sb-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  z-index: 99;
  background: rgba(9,9,11,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-direction: column;
  padding: 1.25rem 1.5rem 1.75rem;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--sb-text-dim);
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--sb-text); }
.mobile-menu .menu-cta {
  margin-top: 1rem;
  background: var(--sb-yellow);
  color: var(--sb-bg);
  font-weight: 700;
  text-align: center;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  border-bottom: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--sb-bg);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.36;
  z-index: 0;
}
.hero-icon-bg {
  position: absolute;
  right: 5%; top: 50%;
  transform: translateY(-50%);
  width: 480px; height: 480px;
  opacity: 0.11;
  pointer-events: none;
  z-index: 1;
}
.hero .hero-icon-bg { display: none; }
.section-icon-bg {
  position: absolute;
  right: 3%;
  top: 10%;
  width: 380px;
  height: 380px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 8rem 2rem 6rem;
}
.hero-icon-mark {
  display: block;
  width: 128px;
  height: 128px;
  max-width: 128px;
  max-height: 128px;
  margin-bottom: 1.75rem;
  opacity: 0.55;
  object-fit: contain;
}
.hero-rule {
  width: 48px; height: 2px;
  background: var(--sb-yellow);
  margin-bottom: 2rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 14ch;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--sb-text-dim);
  max-width: 48ch;
  margin-bottom: 3rem;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 5rem; }
.btn-primary {
  background: var(--sb-yellow);
  color: var(--sb-bg);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: none; cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.25s;
}
.btn-primary:hover {
  background: var(--sb-yellow-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--sb-yellow-glow), 0 0 0 1px rgba(255,217,1,0.2);
}
.btn-ghost {
  background: transparent;
  color: var(--sb-text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: 1px solid var(--sb-border-dark);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  transform: translateY(-2px);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 560px;
  border-top: 1px solid var(--sb-border-dark);
  padding-top: 2.5rem;
}
.hero-stat + .hero-stat {
  border-left: 1px solid var(--sb-border-dark);
  padding-left: 2rem;
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--sb-yellow);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--sb-text-dim);
  line-height: 1.4;
  text-wrap: pretty;
}

/* ─── SECTION BASE ─── */
.section-dark {
  position: relative;
  background: var(--sb-surface-1);
  padding: 7rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.section-light {
  position: relative;
  background: var(--sb-light-bg);
  padding: 7rem 0;
  overflow: hidden;
}
.section-bg {
  position: relative;
  background: var(--sb-bg);
  padding: 7rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.section-header { margin-bottom: 4rem; max-width: 680px; }
.section-header h2 {
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  margin-top: 0.75rem;
  color: var(--sb-text);
}
.section-light .section-header h2 { color: var(--sb-light-text); }
.section-header p {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--sb-text-dim);
  max-width: 52ch;
  line-height: 1.7;
}
.section-light .section-header p { color: var(--sb-light-muted); }

/* ─── HOW IT WORKS (STEPS) ─── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.step {
  position: relative;
  background: var(--sb-surface-2);
  border: 1px solid var(--sb-border-dark);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), border-color 0.25s, box-shadow 0.25s;
}
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(255,217,1,0.15);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,217,1,0.08);
}
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,217,1,0.12);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
}
.step h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--sb-text); }
.step p { font-size: 0.92rem; color: var(--sb-text-dim); line-height: 1.65; }

/* ─── BENEFITS ─── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--sb-border-light);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.benefit-icon {
  width: 44px; height: 44px;
  background: var(--sb-yellow);
  border-radius: 10px;
  margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center;
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--sb-light-text); margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.9rem; color: var(--sb-light-muted); line-height: 1.65; }

/* ─── GREEN DEDUCTION ─── */
.deduction-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.deduction-numbers { display: flex; flex-direction: column; gap: 1.5rem; }
.deduction-item {
  background: var(--sb-surface-2);
  border: 1px solid var(--sb-border-dark);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.deduction-pct {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--sb-yellow);
  letter-spacing: -0.02em;
  white-space: nowrap;
  width: 130px;
  text-align: right;
  flex-shrink: 0;
}
.deduction-desc h4 { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; color: var(--sb-text); margin-bottom: 0.25rem; }
.deduction-desc p { font-size: 0.85rem; color: var(--sb-text-dim); line-height: 1.5; }
.deduction-desc a {
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.deduction-desc a:hover {
  color: var(--sb-yellow);
  border-color: var(--sb-yellow);
}
.deduction-desc a[target="_blank"]::after {
  content: "↗";
  display: inline-block;
  margin-left: 0.3rem;
  font-size: 0.78em;
  line-height: 1;
  transform: translateY(-1px);
}

/* ─── ROI CALCULATOR ─── */
.roi-card {
  background: var(--sb-surface-2);
  border: 1px solid var(--sb-border-dark);
  border-radius: 16px;
  padding: 2.5rem;
}
.roi-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--sb-text); }
.roi-card > p { font-size: 0.9rem; color: var(--sb-text-dim); margin-bottom: 2rem; }
.roi-range { margin-bottom: 1.5rem; }
.roi-range label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; font-weight: 600; color: var(--sb-text-dim);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}
.roi-range label span { font-size: 1rem; color: var(--sb-text); font-weight: 600; text-transform: none; letter-spacing: 0; }
input[type=range] {
  width: 100%; height: 4px;
  -webkit-appearance: none; appearance: none;
  background: var(--sb-surface-3);
  border-radius: 2px; outline: none;
  cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--sb-yellow);
  cursor: pointer;
  box-shadow: 0 0 8px var(--sb-yellow-glow);
}
.roi-result {
  background: var(--sb-surface-3);
  border: 1px solid rgba(255,217,1,0.12);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.roi-result-item p { font-size: 0.75rem; color: var(--sb-text-dim); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.25rem; }
.roi-result-item .val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sb-yellow);
  letter-spacing: -0.02em;
}
.roi-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--sb-text-muted);
  line-height: 1.55;
}

/* ─── TESTIMONIALS ─── */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial {
  background: var(--sb-surface-2);
  border: 1px solid var(--sb-border-dark);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), border-color 0.25s;
}
.testimonial:hover { transform: translateY(-4px); border-color: rgba(255,217,1,0.12); }
.stars { color: var(--sb-yellow); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial blockquote { font-size: 0.95rem; color: var(--sb-text-dim); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sb-surface-3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--sb-yellow);
  flex-shrink: 0;
}
.author-name { font-size: 0.9rem; font-weight: 600; color: var(--sb-text); }
.author-place { font-size: 0.78rem; color: var(--sb-text-muted); }

/* ─── PROJECT CAROUSEL ─── */
.project-carousel {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--sb-border-dark);
  border-radius: 12px;
  background: var(--sb-surface-1);
  overflow: hidden;
}
.project-counter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}
.project-counter-text {
  font-size: 0.78rem;
  color: var(--sb-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.project-counter-num { color: var(--sb-yellow); font-weight: 700; }
.project-auto-progress {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 1px;
  overflow: hidden;
}
.project-auto-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--sb-yellow);
}
.project-spotlight-stage {
  display: grid;
  grid-template-columns: minmax(0, 170px) minmax(0, 1fr) minmax(0, 170px);
  gap: 10px;
  height: 520px;
  padding: 0 1rem 1rem;
  min-width: 0;
  max-width: 100%;
}
.project-side-col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  min-width: 0;
}
.project-spotlight-img {
  border: 1px solid var(--sb-border-dark);
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: var(--sb-surface-2);
}
.project-spotlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.4) saturate(0.6);
  transition: transform 0.4s ease, filter 0.3s ease;
}
.project-spotlight-img:hover img {
  transform: scale(1.04);
  filter: brightness(0.7) saturate(0.9);
}
.project-spotlight-center {
  position: relative;
  border: 1px solid var(--sb-border-dark);
  border-radius: 12px;
  overflow: hidden;
  background: var(--sb-surface-2);
  min-width: 0;
}
.project-spotlight-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-spotlight-center::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(9,9,11,0.75) 100%);
  z-index: 1;
  pointer-events: none;
}
.project-center-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  background: rgba(9,9,11,0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sb-text-dim);
  letter-spacing: 0.08em;
}
.project-center-arrows {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}
.project-arr-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(9,9,11,0.7);
  color: var(--sb-text);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.project-arr-btn:hover {
  background: var(--sb-yellow);
  color: var(--sb-bg);
  border-color: var(--sb-yellow);
}
.project-thumb-strip {
  padding: 0 1rem 1.25rem;
  min-width: 0;
  max-width: 100%;
}
.project-thumb-strip-inner {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
  overflow: hidden;
  padding-bottom: 0.3rem;
  min-width: 0;
  max-width: 100%;
}
.project-thumb {
  width: 100%;
  height: 66px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: var(--sb-surface-2);
}
.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.6);
}
.project-thumb.active { border-color: var(--sb-yellow); }
.project-thumb.active img { filter: brightness(1) saturate(1); }

.project-mobile-gallery { display: none; }
.project-mobile-focus {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--sb-surface-2);
  overflow: hidden;
}
.project-mobile-focus img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-mobile-focus::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, transparent 60%, rgba(9,9,11,0.8) 100%);
}
.project-mobile-arrows {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
}
.project-mobile-arr {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(9,9,11,0.7);
  color: var(--sb-text);
  font-size: 1rem;
}
.project-mobile-badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 3;
  font-size: 0.72rem;
  border-radius: 20px;
  color: var(--sb-text-dim);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(9,9,11,0.65);
  padding: 0.28rem 0.75rem;
}
.project-mobile-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem 1rem 0.5rem;
}
.project-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 0;
}
.project-dot.active {
  background: var(--sb-yellow);
  transform: scale(1.35);
}
.project-mobile-thumbs { padding: 1rem; }
.project-mobile-thumbs h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--sb-text-muted);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.project-mobile-thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.project-mobile-thumb {
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  background: var(--sb-surface-2);
}
.project-mobile-thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.6);
}
.project-mobile-thumb.active { border-color: var(--sb-yellow); }
.project-mobile-thumb.active img { filter: brightness(1) saturate(1); }

/* ─── FAQ ─── */
.faq { display: flex; flex-direction: column; gap: 0; max-width: 800px; }
.faq-item { border-top: 1px solid var(--sb-border-dark); padding: 1.5rem 0; }
.faq-item:last-child { border-bottom: 1px solid var(--sb-border-dark); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; gap: 1rem;
}
.faq-q h4 { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--sb-text); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid var(--sb-border-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--sb-yellow);
  font-size: 1.1rem;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(255,217,1,0.08); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding-top: 1rem; font-size: 0.95rem; color: var(--sb-text-dim); line-height: 1.7; }

/* ─── CTA / CONTACT SECTION ─── */
.cta-section {
  position: relative;
  background: var(--sb-surface-1);
  padding: 7rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.cta-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.cta-copy h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--sb-text); margin-top: 0.75rem; }
.cta-copy p { margin-top: 1rem; font-size: 1rem; color: var(--sb-text-dim); max-width: 44ch; line-height: 1.7; }
.cta-bullets { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.cta-bullets li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; color: var(--sb-text-dim); }
.cta-bullets li::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sb-green);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--sb-green-glow);
}

/* ─── FORM ─── */
.form-card {
  background: var(--sb-surface-2);
  border: 1px solid var(--sb-border-dark);
  border-radius: 16px;
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sb-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 0 1rem;
  color: var(--sb-text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { padding: 0.75rem 1rem; min-height: 100px; resize: none; }
.field select { cursor: pointer; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sb-green);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.12);
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.12);
}
.field-error {
  font-size: 0.72rem;
  color: #ef4444;
  margin-top: 0.3rem;
  display: none;
}
.field.has-error .field-error { display: block; }
.btn-submit {
  width: 100%;
  background: var(--sb-yellow);
  color: var(--sb-bg);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.25s;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.btn-submit:hover {
  background: var(--sb-yellow-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--sb-yellow-glow);
}
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(9,9,11,0.3);
  border-top-color: var(--sb-bg);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn-submit.loading .btn-spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-feedback {
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 1rem;
  display: none;
  line-height: 1.5;
}
.form-feedback.success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--sb-green);
  display: block;
}
.form-feedback.error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #ef4444;
  display: block;
}
.form-note { font-size: 0.75rem; color: var(--sb-text-muted); text-align: center; margin-top: 1rem; line-height: 1.5; }
.checkbox-group { display: flex; gap: 1.25rem; flex-wrap: wrap; padding: 0.5rem 0; }
.checkbox-label {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; color: var(--sb-text); cursor: pointer;
  user-select: none;
}
.checkbox-label input[type=checkbox] {
  width: 18px; height: 18px; min-height: unset;
  border-radius: 4px; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  accent-color: var(--sb-yellow); cursor: pointer;
  flex-shrink: 0;
  -webkit-appearance: checkbox;
  appearance: auto;
}

/* ─── FOOTER ─── */
footer {
  position: relative;
  background: var(--sb-bg);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 4rem 0 2rem;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-logo img { height: 28px; }
.footer-tagline { font-size: 0.88rem; color: var(--sb-text-muted); max-width: 32ch; line-height: 1.6; }
.footer-col h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sb-text-dim);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.88rem; color: var(--sb-text-muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--sb-text); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--sb-text-muted); }
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: rgba(228,228,231,0.86);
  opacity: 0.82;
  transition: opacity 0.2s ease;
}
.footer-credit:hover { opacity: 1; }
.footer-credit span {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}
.footer-credit img {
  height: 17px;
  width: auto;
  display: block;
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  padding: 1rem 0 calc(1rem + env(safe-area-inset-bottom));
  background: rgba(10, 10, 12, 0.96);
  border-top: 1px solid rgba(255, 217, 1, 0.18);
  backdrop-filter: blur(8px);
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cookie-banner-inner p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--sb-text-muted);
  max-width: 52ch;
  line-height: 1.5;
}
.cookie-banner-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--sb-yellow);
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
}
.cookie-banner-link:hover { color: var(--sb-text); }
.cookie-banner-accept {
  flex-shrink: 0;
  padding: 0.7rem 1.25rem;
  border: none;
  border-radius: 8px;
  background: var(--sb-yellow);
  color: var(--sb-bg);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cookie-banner-accept:hover { opacity: 0.9; }
body.cookie-banner-visible { padding-bottom: 5.5rem; }

/* ─── PRIVACY MODAL ─── */
.privacy-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 120;
}
.privacy-modal.open { display: flex; }
.privacy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(2px);
}
.privacy-modal-dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: 85vh;
  overflow-y: auto;
  background: var(--sb-surface-1);
  border: 1px solid var(--sb-border-dark);
  border-radius: 14px;
  padding: 2rem;
  z-index: 1;
}
.privacy-modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 34px;
  height: 34px;
  border: 1px solid var(--sb-border-dark);
  background: var(--sb-surface-2);
  color: var(--sb-text);
  border-radius: 50%;
  cursor: pointer;
}
.privacy-modal-dialog h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.privacy-modal-dialog h4 {
  margin-top: 1.3rem;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}
.privacy-modal-dialog p,
.privacy-modal-dialog li {
  font-size: 0.92rem;
  color: var(--sb-text-dim);
  line-height: 1.65;
}
.privacy-modal-dialog ul {
  margin-left: 1.1rem;
  display: grid;
  gap: 0.2rem;
}
.privacy-link-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--sb-text-muted);
  font-size: 0.78rem;
  cursor: pointer;
  text-decoration: none;
}
.privacy-link-btn:hover { color: var(--sb-text); }

/* ─── VALUE GRID (Företag) ─── */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 1.5rem; }
.value-card {
  background: var(--sb-surface-2); border: 1px solid var(--sb-border-dark);
  border-radius: 12px; padding: 2rem;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), border-color 0.25s, box-shadow 0.25s;
}
.value-card:hover { transform: translateY(-4px); border-color: rgba(255,217,1,0.15); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.value-card-number {
  font-family: 'Space Grotesk', sans-serif; font-size: 2.8rem; font-weight: 800;
  color: var(--sb-yellow); letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.75rem;
}
.value-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--sb-text); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: var(--sb-text-dim); line-height: 1.65; }

/* ─── FOR VEM GRID (Företag) ─── */
.forvem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem; }
.forvem-card {
  background: #fff; border: 1px solid var(--sb-border-light);
  border-radius: 12px; padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s;
}
.forvem-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.forvem-tag {
  display: inline-block; background: var(--sb-light-text);
  color: var(--sb-yellow); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 4px; margin-bottom: 1rem;
}
.forvem-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--sb-light-text); margin-bottom: 0.5rem; }
.forvem-card p { font-size: 0.88rem; color: var(--sb-light-muted); line-height: 1.65; }

/* ─── PROCESS (Företag) ─── */
.process { position: relative; }
.process-line {
  position: absolute; left: 28px; top: 0; bottom: 0;
  width: 1px; background: var(--sb-border-dark);
}
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 1.5rem; padding: 2rem 0;
  border-bottom: 1px solid var(--sb-border-dark);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.process-dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--sb-surface-2); border: 1px solid var(--sb-border-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 0.9rem;
  color: var(--sb-yellow); position: relative; z-index: 1;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
}
.process-step:hover .process-dot { background: rgba(255,217,1,0.08); border-color: rgba(255,217,1,0.3); }
.process-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--sb-text); margin-bottom: 0.4rem; padding-top: 0.75rem; }
.process-body p { font-size: 0.92rem; color: var(--sb-text-dim); line-height: 1.65; max-width: 60ch; }

/* ─── CREDENTIALS (Företag) ─── */
.cred-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; }
.cred-card {
  background: var(--sb-surface-2); border: 1px solid var(--sb-border-dark);
  border-radius: 12px; padding: 1.75rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), border-color 0.25s;
}
.cred-card:hover { transform: translateY(-3px); border-color: rgba(255,217,1,0.12); }
.cred-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(255,217,1,0.1); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cred-icon svg { width: 20px; height: 20px; stroke: var(--sb-yellow); }
.cred-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--sb-text); margin-bottom: 0.3rem; }
.cred-card p { font-size: 0.82rem; color: var(--sb-text-dim); line-height: 1.55; }

/* ─── ANIMATIONS ─── */
.sb-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.sb-fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
@media(prefers-reduced-motion: reduce) {
  .sb-fade-up { opacity: 1; transform: none; transition: none; }
}

/* ─── RESPONSIVE ─── */
@media(max-width: 1120px) {
  .hero-icon-mark { width: 96px; height: 96px; max-width: 96px; max-height: 96px; }
  .nav-inner { padding: 0 1.25rem; }
  .nav-logo .logo-text { height: 39px; }
  .nav-links { gap: 1.25rem; }
  .nav-links a {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
  }
  .nav-cta {
    font-size: 0.76rem;
    padding: 0.5rem 1rem;
  }
}

@media(max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner {
    height: 58px;
    padding: 0 1.1rem;
  }
  .hero-icon-bg { width: 320px; height: 320px; opacity: 0.08; right: 0; }
  .hero-icon-mark { width: 72px; height: 72px; max-width: 72px; max-height: 72px; margin-bottom: 1.5rem; }
  .nav-logo .logo-text { height: 32px; }
}

@media(max-width: 1440px) {
  .section-icon-bg {
    top: 10%;
    width: 300px;
    height: 300px;
  }
}

@media(max-width: 1024px) {
  .section-icon-bg {
    top: 10%;
    width: 250px;
    height: 250px;
  }
}

@media(max-width: 768px) {
  .hero-icon-mark { width: 56px; height: 56px; max-width: 56px; max-height: 56px; margin-bottom: 1.35rem; }
  .hero-photo { object-position: 78% center; }
  .section-icon-bg {
    top: 8%;
    right: 0;
    width: 220px;
    height: 220px;
    opacity: 0.35;
  }
  .container, .container--wide { padding: 0 1.5rem; }
  .nav-inner { padding: 0 1.25rem; }

  .hero-content { padding: 6rem 1.5rem 4rem; }
  .hero-stats { grid-template-columns: 1fr; gap: 1.25rem; }
  .hero-stat + .hero-stat { border-left: none; border-top: 1px solid var(--sb-border-dark); padding-left: 0; padding-top: 1.25rem; }

  .section-dark, .section-light, .section-bg { padding: 4.5rem 0; }
  .cta-section { padding: 4.5rem 0; }
  .section-header { margin-bottom: 2.5rem; }

  .steps { gap: 1rem; }
  .step { padding: 1.5rem; }

  .deduction-layout { grid-template-columns: 1fr; gap: 3rem; }
  .deduction-item { padding: 1.25rem 1.5rem; }
  .roi-card { padding: 1.75rem 1.5rem; }

  .testimonial { padding: 1.5rem; }

  .project-spotlight-stage,
  .project-thumb-strip,
  .project-counter-bar { display: none; }
  .project-mobile-gallery { display: block; }

  .cta-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-card { padding: 1.75rem 1.5rem; }

  footer { padding: 3rem 0 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .process-line { display: none; }
  .forvem-grid { grid-template-columns: 1fr 1fr; }
}

@media(max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media(max-width: 480px) {
  .hero-photo { object-position: 78% center; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; text-align: center; justify-content: center; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-icon-bg { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .value-grid, .cred-grid, .forvem-grid { grid-template-columns: 1fr; }
  .section-dark, .section-light, .section-bg, .cta-section { padding: 3rem 0; }
  .nav-inner { height: 54px; }
  .nav-logo .logo-text { height: 30px; }
  .hero-icon-mark { width: 40px; height: 40px; max-width: 40px; max-height: 40px; margin-bottom: 1.25rem; }
  .project-mobile-thumb-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 430px) {
  .hero-icon-mark { width: 32px; height: 32px; max-width: 32px; max-height: 32px; }
  .nav-logo .logo-text { height: 25px; }
  .section-icon-bg {
    top: 2%;
    right: 5%;
    width: 120px;
    height: 120px;
    opacity: 0.35;
  }
}
