/* ============================================================
   ECO CONFORTSISTEM — Industrial Eco — scroll-driven
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #09161E;
  --mint:     #00C9A7;
  --orange:   #FF6B35;
  --text:     #E8F4F2;
  --muted:    #7A9EA0;
  --font-d:   'Big Shoulders Display', sans-serif;
  --font-b:   'Nunito Sans', sans-serif;
}

html { scroll-behavior: auto; overflow-x: hidden; }
body { background: var(--bg); color: var(--text); font-family: var(--font-b); overflow-x: hidden; cursor: none; }

/* ── Scroll Progress ─────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--mint), var(--orange));
  z-index: 10000; pointer-events: none;
}

/* ── Cursor ──────────────────────────────────────── */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px; background: var(--mint);
  border-radius: 50%; pointer-events: none; z-index: 99999;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1.5px solid rgba(0, 201, 167, 0.5);
  border-radius: 50%; pointer-events: none; z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
body.cursor-hover .cursor-ring { width: 52px; height: 52px; border-color: rgba(0, 201, 167, 0.9); }
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── Grain ───────────────────────────────────────── */
.grain-overlay {
  position: fixed; inset: -200%; width: 400%; height: 400%;
  z-index: 9997; pointer-events: none; opacity: 0.035;
  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)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  animation: grain 0.8s steps(1) infinite;
}
@keyframes grain {
  0%  { transform: translate(0,0); }  20% { transform: translate(-5%,10%); }
  40% { transform: translate(10%,-5%); } 60% { transform: translate(-10%,5%); }
  80% { transform: translate(5%,-10%); } 100%{ transform: translate(0,0); }
}

/* ── Loader ──────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 9999; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-brand { font-family: var(--font-d); font-size: clamp(2rem, 7vw, 4.5rem); letter-spacing: 0.15em; color: var(--text); font-weight: 900; }
.loader-brand span { color: var(--mint); }
.loader-bar-wrap { width: min(280px, 55vw); height: 1px; background: rgba(232,244,242,0.1); }
#loader-bar { height: 100%; width: 0%; background: linear-gradient(90deg, var(--mint), var(--orange)); transition: width 0.15s ease; }
#loader-percent { font-size: 0.75rem; letter-spacing: 0.2em; color: var(--muted); font-family: var(--font-b); }

/* ── Header ──────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 4vw;
  background: rgba(9, 22, 30, 0.78);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 201, 167, 0.1);
}
nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img {
  height: 46px; width: auto;
  object-fit: contain;
  transition: opacity 0.25s;
}
.nav-logo-img:hover { opacity: 0.88; }
.nav-links { list-style: none; display: flex; gap: 0.25rem; align-items: center; }
.nav-links a { position: relative; color: rgba(232,244,242,0.65); text-decoration: none; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.45rem 0.9rem; border-radius: 2px; transition: color 0.25s, background 0.25s; font-family: var(--font-b); }
.nav-links a:not(.nav-cta)::after { content: ''; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.3rem; height: 1px; background: var(--mint); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.nav-links a:not(.nav-cta):hover { color: var(--text); background: rgba(232,244,242,0.05); }
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta { background: var(--mint) !important; color: var(--bg) !important; padding: 0.45rem 1.2rem !important; border-radius: 2px; margin-left: 0.5rem; font-weight: 700 !important; }
.nav-cta:hover { background: #00b396 !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,201,167,0.3); }

/* ── Hamburger ───────────────────────────────────── */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 1001; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) { .nav-hamburger { display: flex; } }

/* ── Mobile Nav ──────────────────────────────────── */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(9, 22, 30, 0.97); backdrop-filter: blur(12px);
  display: flex; align-items: flex-start; justify-content: center;
  overflow-y: auto; padding: 5rem 2rem 3rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; }
.mobile-nav ul { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 1.25rem; width: 100%; }
.mobile-nav a { font-family: var(--font-d); font-size: clamp(2rem, 8vw, 3rem); color: var(--text); text-decoration: none; letter-spacing: 0.05em; font-weight: 900; text-transform: uppercase; transition: color 0.3s; display: block; padding: 0.25rem 0; }
.mobile-nav a:hover, .mobile-nav a:active { color: var(--mint); }
.mobile-nav .nav-cta { background: var(--mint) !important; color: var(--bg) !important; border-radius: 4px; padding: 0.75rem 2rem !important; font-size: clamp(1.2rem, 5vw, 1.8rem) !important; }

/* ── Hero ────────────────────────────────────────── */
.hero-standalone {
  position: relative; height: 100vh; background: var(--bg);
  display: flex; align-items: center; z-index: 10; overflow: hidden;
}
.hero-standalone::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(to bottom, var(--mint), var(--orange));
}
.hero-inner { padding-top: 8rem; padding-left: 8vw; padding-right: 10vw; max-width: 1000px; }
.hero-standalone .section-label { display: block; font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--mint); margin-bottom: 1.5rem; font-weight: 600; }
.hero-heading { font-family: var(--font-d); font-size: clamp(5rem, 13vw, 14rem); line-height: 0.9; letter-spacing: 0.01em; color: var(--text); margin-bottom: 2rem; overflow: hidden; font-weight: 900; }
.hero-heading .word { display: inline-block; overflow: hidden; margin-right: 0.04em; }
.hero-tagline { font-size: clamp(0.8rem, 1.2vw, 1rem); color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 400; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

/* ── Buttons ─────────────────────────────────────── */
.cta-button {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; background: var(--mint); color: var(--bg);
  font-family: var(--font-b); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  border: none; border-radius: 2px; cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  pointer-events: all;
}
.cta-button:hover { background: #00b396; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,201,167,0.3); }
.cta-button--ghost { background: transparent !important; color: var(--text) !important; border: 1.5px solid rgba(232,244,242,0.3) !important; }
.cta-button--ghost:hover { border-color: var(--mint) !important; color: var(--mint) !important; box-shadow: none !important; transform: none !important; }
.cta-button--outline { background: transparent !important; color: var(--bg) !important; border: 2px solid rgba(9,22,30,0.4) !important; }
.cta-button--large { padding: 1.1rem 2.5rem; font-size: 1rem; }

.scroll-indicator { display: flex; align-items: center; gap: 0.75rem; color: rgba(232,244,242,0.35); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; }
.scroll-indicator svg { width: 1.1rem; height: 1.1rem; animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ── Canvas ──────────────────────────────────────── */
.canvas-wrap {
  position: fixed; inset: 0; z-index: 1;
  clip-path: circle(0% at 50% 50%);
  will-change: clip-path;
}
canvas { display: block; width: 100%; height: 100%; }

/* ── Mobile image bg ─────────────────────────────── */
.mobile-img-wrap {
  display: none; position: fixed; inset: 0; z-index: 1; overflow: hidden;
}
.mobile-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.8s ease; }

/* ── Dark Overlay ────────────────────────────────── */
#dark-overlay {
  position: fixed; inset: 0; z-index: 2;
  background: #050d12; opacity: 0;
  pointer-events: none; will-change: opacity;
}

/* ── Marquee ─────────────────────────────────────── */
.marquee-wrap {
  position: fixed; bottom: 8vh; left: 0; right: 0; z-index: 5;
  overflow: hidden; opacity: 0; will-change: opacity; pointer-events: none;
}
.marquee-text {
  font-family: var(--font-d); font-size: clamp(5rem, 11vw, 13rem);
  line-height: 1; white-space: nowrap; font-weight: 900;
  color: rgba(232, 244, 242, 0.055); letter-spacing: 0.03em;
  text-transform: uppercase; will-change: transform;
}

/* ── Scroll Container ────────────────────────────── */
#scroll-container { position: relative; height: 900vh; z-index: 3; pointer-events: none; }

/* ── Scroll Sections ─────────────────────────────── */
.scroll-section {
  position: absolute; left: 0; right: 0;
  display: flex; align-items: center;
  pointer-events: none; opacity: 0;
  will-change: opacity, transform;
}
.align-left  { padding-left: 5vw; padding-right: 55vw; justify-content: flex-start; }
.align-right { padding-left: 55vw; padding-right: 5vw;  justify-content: flex-end; }
.align-left .section-inner, .align-right .section-inner { max-width: 38vw; }

.section-inner {
  width: 100%;
  background: rgba(5, 13, 18, 0.84);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-left: 3px solid var(--mint);
  padding: 2.5rem 2rem; border-radius: 0 2px 2px 0;
}

/* Accent by section type */
[data-accent="orange"] .section-inner { border-left-color: var(--orange); }
[data-accent="orange"] .section-label { color: var(--orange) !important; }
[data-accent="orange"] .service-num { color: var(--orange) !important; }
[data-accent="orange"] .section-note { color: rgba(255,107,53,0.7) !important; }

/* ── Section Typography ──────────────────────────── */
.section-label { display: block; font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--mint); margin-bottom: 1rem; font-weight: 600; }
.section-heading { font-family: var(--font-d); font-size: clamp(3rem, 5.5vw, 6rem); line-height: 0.95; color: var(--text); margin-bottom: 1.5rem; letter-spacing: 0.01em; font-weight: 900; text-shadow: 0 2px 16px rgba(0,0,0,0.9); }
.section-body { font-size: clamp(0.9rem, 1.1vw, 1.05rem); line-height: 1.75; color: rgba(232,244,242,0.72); margin-bottom: 1.25rem; font-weight: 300; }
.section-note { display: block; font-size: 0.72rem; letter-spacing: 0.2em; color: rgba(0,201,167,0.65); text-transform: uppercase; margin-top: 1.5rem; }

/* ── Services ────────────────────────────────────── */
.service-list { list-style: none; margin-top: 0.5rem; }
.service-list li { display: flex; align-items: baseline; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid rgba(232,244,242,0.08); font-size: clamp(0.95rem, 1.3vw, 1.15rem); font-weight: 500; color: var(--text); }
.service-list li:first-child { border-top: 1px solid rgba(232,244,242,0.08); }
.service-num { font-family: var(--font-d); font-size: 0.85rem; color: var(--mint); letter-spacing: 0.1em; min-width: 2rem; font-weight: 700; }

/* ── Stats + Solar ───────────────────────────────── */
.section-stats { left: 0; right: 0; justify-content: center; align-items: center; padding: 0 6vw; pointer-events: none; }
.stats-and-solar {
  display: grid; grid-template-columns: 1fr auto; gap: 3rem;
  width: 100%; max-width: 1300px; align-items: center;
  background: rgba(5,13,18,0.82); padding: 3rem; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.stat { display: flex; flex-direction: column; align-items: flex-start; gap: 0.4rem; }
.stat-top { display: flex; align-items: baseline; gap: 0.15rem; }
.stat-number { font-family: var(--font-d); font-size: clamp(3.5rem, 5.5vw, 6rem); color: var(--mint); line-height: 1; font-weight: 900; }
.stat-suffix { font-family: var(--font-d); font-size: clamp(1.5rem, 2.5vw, 2.8rem); color: var(--text); letter-spacing: 0.05em; font-weight: 700; }
.stat-label { font-size: clamp(0.65rem, 0.9vw, 0.8rem); letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.solar-card { border-left: 3px solid var(--orange); padding-left: 2rem; max-width: 360px; }
.solar-card .section-label { color: var(--orange); }
.solar-heading { font-size: clamp(2.5rem, 4vw, 4.5rem); margin-bottom: 1rem; }
.solar-card .cta-button { background: var(--orange); margin-top: 1.5rem; }
.solar-card .cta-button:hover { background: #e05a28; box-shadow: 0 6px 20px rgba(255,107,53,0.3); }

/* ── Section positions ───────────────────────────── */
[data-enter="10"] { top: calc(100vh + 140vh); transform: translateY(-50%); }
[data-enter="28"] { top: calc(100vh + 296vh); transform: translateY(-50%); }
[data-enter="46"] { top: calc(100vh + 468vh); transform: translateY(-50%); }
[data-enter="64"] { top: calc(100vh + 612vh); transform: translateY(-50%); }
[data-enter="82"] { top: calc(100vh + 738vh); transform: translateY(-50%); }

/* ── Pointer events ──────────────────────────────── */
[data-modal-open] { pointer-events: all; cursor: pointer; }
.nav-links a[data-target] { pointer-events: all; cursor: pointer; }
.section-stats { pointer-events: all; }

/* ── CTA FULL ────────────────────────────────────── */
.cta-full {
  position: relative; z-index: 10;
  background: linear-gradient(135deg, #061420 0%, #0c2132 50%, #061420 100%);
  padding: 8rem 8vw;
  border-top: 1px solid rgba(0,201,167,0.2);
  overflow: hidden;
}
.cta-full::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,201,167,0.08) 0%, transparent 70%);
}
.cta-full-inner { position: relative; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-full .section-label { justify-content: center; display: block; margin-bottom: 1.25rem; }
.cta-full-heading { font-family: var(--font-d); font-size: clamp(3.5rem, 8vw, 8rem); line-height: 0.92; font-weight: 900; color: var(--text); letter-spacing: 0.01em; margin-bottom: 1.5rem; }
.cta-full-sub { font-size: clamp(0.9rem, 1.3vw, 1.1rem); color: var(--muted); margin-bottom: 3rem; line-height: 1.7; font-weight: 300; }
.cta-full-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Modal ───────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; z-index: 9000; background: rgba(5,13,18,0.92); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s ease; padding: 1.5rem; }
.modal-overlay.is-open { opacity: 1; visibility: visible; }
.modal-box { position: relative; background: #0d1e28; border-left: 3px solid var(--mint); border-radius: 2px; width: 100%; max-width: 480px; padding: 2.5rem 2rem; transform: translateY(24px); transition: transform 0.35s ease; }
.modal-overlay.is-open .modal-box { transform: translateY(0); }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: var(--muted); font-size: 1.5rem; line-height: 1; cursor: pointer; padding: 0.25rem 0.5rem; transition: color 0.2s; }
.modal-close:hover { color: var(--text); }
.modal-label { display: block; font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--mint); margin-bottom: 0.75rem; }
.modal-title { font-family: var(--font-d); font-size: clamp(2rem, 5vw, 2.8rem); color: var(--text); letter-spacing: 0.02em; line-height: 1; margin-bottom: 0.5rem; font-weight: 900; }
.modal-subtitle { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.75rem; font-weight: 300; }
.form-group { margin-bottom: 1rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(232,244,242,0.15); color: var(--text); font-family: var(--font-b); font-size: 0.9rem; font-weight: 300; padding: 0.65rem 0; outline: none; transition: border-color 0.2s; -webkit-appearance: none; border-radius: 0; }
.form-group select option { background: #0d1e28; color: var(--text); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-bottom-color: var(--mint); }
.form-group textarea { resize: none; }
.form-submit { margin-top: 1.25rem; width: 100%; padding: 0.9rem 1.5rem; background: var(--mint); color: var(--bg); font-family: var(--font-b); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border: none; border-radius: 2px; cursor: pointer; transition: background 0.3s; }
.form-submit:hover { background: #00b396; }
.form-submit:disabled { background: var(--muted); cursor: not-allowed; }
.form-success { text-align: center; padding: 2rem 0; }
.form-success.hidden { display: none; }
.success-icon { font-size: 3rem; color: var(--mint); margin-bottom: 1rem; }
.form-success p { font-size: 0.95rem; line-height: 1.7; color: rgba(232,244,242,0.8); font-weight: 300; }

/* ── TikTok ──────────────────────────────────────── */
.tiktok-section { position: relative; z-index: 10; background: #050d12; padding: 5rem 6vw; border-top: 1px solid rgba(0,201,167,0.08); }
.tiktok-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.tiktok-inner .section-label { display: block; margin-bottom: 2rem; }
.social-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.tiktok-card { display: flex; align-items: center; gap: 1.5rem; background: #0b1c25; border: 1px solid rgba(0,201,167,0.15); border-radius: 16px; padding: 1.75rem 2rem; }
.tiktok-card-icon { flex-shrink: 0; width: 44px; height: 44px; color: #00c9a7; }
.tiktok-card-icon svg { width: 100%; height: 100%; }
.tiktok-card-info { flex: 1; text-align: left; }
.tiktok-card-handle { display: block; font-size: 1rem; font-weight: 700; color: #e8f4f2; }
.tiktok-card-sub { display: block; font-size: 0.8rem; color: #7a9ea0; margin-top: 0.2rem; text-transform: uppercase; letter-spacing: 0.08em; }
.tiktok-card-btn { flex-shrink: 0; }
@media (max-width: 640px) {
  .social-cards { grid-template-columns: 1fr; }
  .tiktok-card { flex-direction: column; text-align: center; }
  .tiktok-card-info { text-align: center; }
}

/* ── Footer ──────────────────────────────────────── */
.site-footer-bottom { position: relative; z-index: 10; background: #050d12; border-top: 1px solid rgba(0,201,167,0.1); padding: 3rem 6vw; }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 2rem; align-items: center; max-width: 1400px; margin: 0 auto; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-logo-img { height: 44px; width: auto; object-fit: contain; flex-shrink: 0; }
.footer-logo-text { display: block; font-family: var(--font-d); font-size: 1.2rem; letter-spacing: 0.15em; color: var(--text); margin-bottom: 0.25rem; font-weight: 900; }
.footer-tagline { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.15em; text-transform: uppercase; }
.footer-contact { display: flex; flex-direction: column; gap: 0.4rem; text-align: right; }
.footer-contact a, .footer-contact span { font-size: 0.85rem; color: rgba(232,244,242,0.6); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--mint); }
.footer-copy { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; text-align: right; }

/* ── MOBILE ──────────────────────────────────────── */
@media (max-width: 768px) {
  #scroll-container { height: auto; pointer-events: all; }
  .hero-inner { padding-top: 5rem; padding-left: 6vw; padding-right: 6vw; }
  .hero-standalone { background: rgba(9, 22, 30, 0.55); }
  .hero-heading { font-size: clamp(4rem, 16vw, 7rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-button--hero { width: 100%; justify-content: center; }

  .scroll-section {
    position: relative; display: flex; width: 100%;
    min-height: 80vh; padding: 5rem 6vw;
    align-items: center; justify-content: center;
    pointer-events: all; opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .scroll-section.mobile-visible { opacity: 1; transform: translateY(0); }

  [data-enter="10"], [data-enter="28"], [data-enter="46"],
  [data-enter="64"], [data-enter="82"] { top: auto; transform: translateY(40px); }

  .section-stats { min-height: auto; padding: 4rem 4vw; }
  .align-left, .align-right { padding-left: 6vw; padding-right: 6vw; justify-content: center; }
  .align-left .section-inner, .align-right .section-inner { max-width: 100%; background: rgba(5,13,18,0.9); padding: 2rem; }

  .stats-and-solar { grid-template-columns: 1fr; gap: 2.5rem; background: rgba(5,13,18,0.9); padding: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .solar-card { border-left: none; border-top: 2px solid var(--orange); padding-left: 0; padding-top: 2rem; max-width: 100%; }

  .marquee-wrap, .canvas-wrap { display: none; }
  .mobile-img-wrap { display: block; }
  .nav-links { display: none; }

  .cta-full { padding: 5rem 6vw; }
  .cta-full-actions { flex-direction: column; align-items: center; }
  .cta-button--large { width: 100%; justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .footer-contact, .footer-copy { text-align: left; }
  .footer-brand { flex-direction: row; }
}
