/* ==============================
   LUMORA SOLAR - IMMERSIVE WEBSITE
   ============================== */

/* CSS Variables */
:root {
    --bg-primary: #0a0e17;
    --bg-secondary: #0f1623;
    --bg-card: #131b2e;
    --bg-card-hover: #1a2540;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #6b7a99;
    --accent: #f7a600;
    --accent-light: #ffc846;
    --accent-dark: #c98500;
    --solar-blue: #1a6baa;
    --solar-blue-light: #2d8fd4;
    --solar-blue-dark: #0d4f82;
    --gradient-solar: linear-gradient(135deg, #f7a600 0%, #ff6b00 100%);
    --gradient-blue: linear-gradient(135deg, #1a6baa 0%, #0d4f82 100%);
    --gradient-card: linear-gradient(145deg, rgba(26,107,170,0.1) 0%, rgba(247,166,0,0.05) 100%);
    --border-color: rgba(255,255,255,0.06);
    --glow-accent: rgba(247,166,0,0.3);
    --glow-blue: rgba(26,107,170,0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-primary: 'Inter', -apple-system, sans-serif;
    --font-display: 'Outfit', -apple-system, sans-serif;
    --font-ui: 'Inter', -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--accent) var(--bg-primary); }
body { font-family: var(--font-primary); background: var(--bg-primary); color: var(--text-primary); overflow-x: hidden; line-height: 1.7; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

/* ===== PRELOADER ===== */
.preloader {
    position: fixed; inset: 0;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.9s ease, visibility 0.9s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* Orbital scene container */
.pl-scene {
    position: relative;
    width: 320px; height: 320px;
    display: flex; align-items: center; justify-content: center;
}

/* Radial ambient glow behind logo */
.pl-glow {
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(247,166,0,0.22) 0%,
        rgba(247,166,0,0.08) 42%,
        transparent 68%
    );
    animation: plGlowPulse 2.6s ease-in-out infinite;
    pointer-events: none;
}
@keyframes plGlowPulse {
    0%, 100% { opacity: 0.65; transform: scale(1); }
    50%       { opacity: 1;    transform: scale(1.22); }
}

/* Shared arc base */
.pl-arc {
    position: absolute;
    border-radius: 50%;
    top: 50%; left: 50%;
    pointer-events: none;
}

/* ── Ring 1 · 160 px · ~65 % arc · fast clockwise ── */
.pl-arc-1 {
    width: 160px; height: 160px;
    margin: -80px 0 0 -80px;
    background: conic-gradient(
        from 200deg,
        rgba(247,166,0,0)     0%,
        rgba(255,200,60,0.95) 50%,
        rgba(247,166,0,0.18)  65%,
        rgba(247,166,0,0)     70%
    );
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 2px));
            mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 2px));
    animation: plSpin 2.4s linear infinite;
}

/* ── Ring 2 · 224 px · ~22 % arc · medium counter-clockwise ── */
.pl-arc-2 {
    width: 224px; height: 224px;
    margin: -112px 0 0 -112px;
    background: conic-gradient(
        from 60deg,
        rgba(247,166,0,0)     0%,
        rgba(255,218,80,0.65) 18%,
        rgba(247,166,0,0.07)  26%,
        rgba(247,166,0,0)     32%
    );
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), #fff calc(100% - 1.5px));
            mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), #fff calc(100% - 1.5px));
    animation: plSpinRev 3.8s linear infinite;
}

/* ── Ring 3 · 292 px · ~38 % arc · slow clockwise ── */
.pl-arc-3 {
    width: 292px; height: 292px;
    margin: -146px 0 0 -146px;
    background: conic-gradient(
        from 330deg,
        rgba(247,166,0,0)     0%,
        rgba(255,185,30,0.38) 28%,
        rgba(247,166,0,0.04)  40%,
        rgba(247,166,0,0)     46%
    );
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 1px), #fff calc(100% - 1px));
            mask: radial-gradient(farthest-side, transparent calc(100% - 1px), #fff calc(100% - 1px));
    animation: plSpin 7.2s linear infinite;
}

@keyframes plSpin    { to { transform: rotate( 360deg); } }
@keyframes plSpinRev { to { transform: rotate(-360deg); } }

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s;
}
.navbar.scrolled {
    background: rgba(10,14,23,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}
.nav-container {
    max-width: 1300px; margin: 0 auto;
    padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}
/* nav-logo-img size defined in new section below */
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
    font-family: var(--font-ui);
    font-size: 0.9rem; font-weight: 500;
    padding: 8px 16px; border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}
.nav-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav-link-cta {
    background: var(--gradient-solar) !important;
    color: var(--bg-primary) !important;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-xl);
}
.nav-link-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px var(--glow-accent); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text-primary); transition: var(--transition); border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
}
#heroCanvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.hero-particles {
    position: absolute; inset: 0;
    z-index: 2;
    pointer-events: none;
}
.hero-content {
    position: relative; z-index: 3;
    max-width: 1300px; margin: 0 auto;
    padding: 120px 40px 60px;
    width: 100%;
}
.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.hero-text {
    flex: 1;
    max-width: 680px;
}
.hero-logo-side {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(247,166,0,0.1);
    border: 1px solid rgba(247,166,0,0.2);
    border-radius: var(--radius-xl);
    padding: 8px 20px;
    font-family: var(--font-ui);
    font-size: 0.82rem; font-weight: 500;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 30px;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.8s 2.2s forwards;
}
.hero-badge-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 2s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}
.hero-line {
    display: block;
    opacity: 0; transform: translateY(40px);
    animation: fadeUp 0.8s forwards;
}
.hero-line:nth-child(1) { animation-delay: 2.3s; }
.hero-line:nth-child(2) { animation-delay: 2.5s; }
.hero-line:nth-child(3) { animation-delay: 2.7s; }
.hero-line-accent {
    background: var(--gradient-solar);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin-bottom: 40px;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.8s 2.9s forwards;
}

.hero-cta-group {
    display: flex; gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.8s 3.1s forwards;
}

.hero-stats {
    display: flex; align-items: center; gap: 40px;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.8s 3.3s forwards;
}
.hero-stat { text-align: center; }
.hero-stat-number {
    font-family: var(--font-ui);
    font-size: 2.5rem; font-weight: 700;
    color: var(--accent);
}
.hero-stat-plus, .hero-stat-percent {
    font-family: var(--font-ui);
    font-size: 1.5rem; font-weight: 700;
    color: var(--accent);
}
.hero-stat-label { display: block; font-family: var(--font-ui); font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; letter-spacing: 0.5px; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border-color); }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    opacity: 0; animation: fadeUp 0.8s 3.5s forwards;
}
.scroll-line {
    width: 2px; height: 50px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.3; }
}
.hero-scroll-indicator span {
    font-size: 0.75rem; letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-ui);
    font-size: 0.95rem; font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--gradient-solar);
    color: var(--bg-primary);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--glow-accent);
}
.btn-glow::before {
    content: '';
    position: absolute; inset: -2px;
    background: var(--gradient-solar);
    border-radius: inherit;
    z-index: -1;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.4s;
}
.btn-glow:hover::before { opacity: 0.6; }
.btn-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-primary);
}
.btn-outline:hover {
    border-color: var(--accent);
    background: rgba(247,166,0,0.1);
    transform: translateY(-3px);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTIONS ===== */
.section {
    padding: 120px 0;
    position: relative;
}
.container {
    max-width: 1300px; margin: 0 auto;
    padding: 0 40px;
}
.section-header {
    text-align: center;
    margin-bottom: 70px;
}
.section-tag {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.82rem; font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.section-line {
    width: 60px; height: 3px;
    background: var(--gradient-solar);
    margin: 0 auto 20px;
    border-radius: 2px;
}
.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left { transform: translateX(-60px) translateY(0); }
.reveal-left.revealed { transform: translateX(0); }
.reveal-right { transform: translateX(60px) translateY(0); }
.reveal-right.revealed { transform: translateX(0); }

/* ===== ABOUT ===== */
.about { position: relative; overflow: hidden; }
.about::after {
    content: '';
    position: absolute; top: -100px; right: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(247,166,0,0.03) 0%, transparent 60%);
    border-radius: 50%;
    animation: floatBubble 22s ease-in-out infinite;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.about-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-text p { color: var(--text-secondary); margin-bottom: 16px; }
.about-highlight {
    display: flex; gap: 16px;
    align-items: flex-start;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 24px;
}
.about-highlight-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    background: rgba(247,166,0,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
}
.about-highlight p { color: var(--text-secondary); margin: 0; }

.about-card-stack { position: relative; height: 380px; }
.about-card {
    position: absolute;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--accent);
}
.about-card p { color: var(--text-secondary); font-size: 0.95rem; }
.about-card-1 { top: 0; z-index: 3; }
.about-card-2 { top: 30px; left: 15px; z-index: 2; opacity: 0.7; transform: scale(0.97); }
.about-card-3 { top: 60px; left: 30px; z-index: 1; opacity: 0.4; transform: scale(0.94); }
.about-card-stack:hover .about-card-1 { transform: translateY(-10px); }
.about-card-stack:hover .about-card-2 { opacity: 0.85; transform: scale(0.98) translateY(-5px); }
.about-card-stack:hover .about-card-3 { opacity: 0.6; transform: scale(0.96); }

/* ===== WHY WE STARTED ===== */
.why-started {
    background: var(--bg-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}
#silkCanvas,
.silk-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.55;
}
.why-started-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.why-started-text p { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 20px; }
.big-quote {
    position: relative;
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    font-style: italic;
    margin: 40px auto 0;
    max-width: 560px;
    padding: 28px 32px 28px 48px;
    border-left: 2px solid rgba(247,166,0,0.5);
    background: rgba(247,166,0,0.04);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    text-align: left;
}
.big-quote::before {
    content: '\201C';
    position: absolute;
    top: 8px; left: 12px;
    font-size: 3.5rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(247,166,0,0.35);
    font-style: normal;
}

/* ===== LEADERSHIP ===== */
.leaders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.leader-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s;
}
.leader-card:hover {
    transform: translateY(-8px);
    border-color: rgba(247,166,0,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.leader-card-inner { padding: 40px; }
.leader-icon { margin-bottom: 20px; }
.leader-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem; margin-bottom: 4px;
}
.leader-role {
    display: block;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
}
.leader-credentials {
    display: flex; flex-direction: column; gap: 4px;
    margin-bottom: 16px;
}
.leader-credentials span {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding-left: 16px;
    position: relative;
}
.leader-credentials span::before {
    content: '';
    position: absolute; left: 0; top: 50%;
    width: 6px; height: 6px;
    background: var(--solar-blue);
    border-radius: 50%;
    transform: translateY(-50%);
}
.leader-info p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 16px; }
.leader-companies {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 20px;
}
.leader-companies span {
    font-size: 0.78rem;
    padding: 4px 12px;
    background: rgba(26,107,170,0.15);
    border: 1px solid rgba(26,107,170,0.2);
    border-radius: var(--radius-xl);
    color: var(--solar-blue-light);
}
.leader-quote {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

/* ===== WHY GO SOLAR (BENEFITS) ===== */
.why-solar { background: var(--bg-secondary); }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}
.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(247,166,0,0.3);
    box-shadow: 0 20px 50px rgba(247,166,0,0.1);
}
.benefit-card-glow {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(247,166,0,0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 2;
}
.benefit-card:hover .benefit-card-glow { opacity: 1; }
.benefit-card-img {
    height: 160px;
    position: relative;
    overflow: hidden;
}
.benefit-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.benefit-card:hover .benefit-card-img img { transform: scale(1.1); }
.benefit-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10,14,23,0.85) 100%);
}
.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 12px;
    padding: 20px 24px 0;
}
.benefit-card p { color: var(--text-secondary); font-size: 0.92rem; padding: 0 24px 24px; }

/* ===== SERVICES ===== */
.services-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
.service-main-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s;
}
.service-main-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    border-color: rgba(247,166,0,0.3);
}
.service-3d-wrapper {
    height: 220px;
    perspective: 600px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(180deg, rgba(26,107,170,0.1) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}
.service-3d-wrapper::before {
    content: '';
    position: absolute;
    top: 20%; left: 50%;
    width: 120px; height: 120px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    transform: translateX(-50%);
}
.solar-panel-3d {
    transform: rotateX(45deg) rotateZ(-15deg);
    transform-style: preserve-3d;
    animation: panelFloat 4s ease-in-out infinite;
}
@keyframes panelFloat {
    0%, 100% { transform: rotateX(45deg) rotateZ(-15deg) translateY(0); }
    50% { transform: rotateX(45deg) rotateZ(-15deg) translateY(-10px); }
}
.panel-row { display: flex; gap: 3px; margin-bottom: 3px; }
.panel-cell {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, #1a5a8c 0%, #2d8fd4 50%, #1a6baa 100%);
    border: 1px solid rgba(45,143,212,0.3);
    border-radius: 2px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
}
.panel-cell::after {
    content: '';
    position: absolute; inset: 2px;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    animation: panelShine 3s linear infinite;
}
@keyframes panelShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.commercial-visual .panel-cell { width: 28px; height: 28px; }

.service-main-info { padding: 32px; }
.service-icon-badge {
    width: 48px; height: 48px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.service-icon-badge svg { width: 24px; height: 24px; }
.service-icon-badge.residential { background: rgba(247,166,0,0.15); color: var(--accent); }
.service-icon-badge.commercial { background: rgba(26,107,170,0.15); color: var(--solar-blue-light); }
.service-main-info h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 12px; }
.service-main-info p { color: var(--text-secondary); font-size: 0.95rem; }

.services-included {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
}
.services-included h3 {
    font-family: var(--font-display);
    margin-bottom: 30px;
    color: var(--accent);
}
.included-grid {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 24px;
}
.included-item {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}
.included-item:hover { border-color: var(--accent); background: rgba(247,166,0,0.05); }
.included-icon { width: 20px; height: 20px; color: var(--accent); }
.included-icon svg { width: 100%; height: 100%; }
.included-item span { font-size: 0.9rem; font-weight: 500; }

/* ===== PROCESS ===== */
.process { background: var(--bg-secondary); position: relative; overflow: hidden; }
.process::before {
    content: '';
    position: absolute; bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(26,107,170,0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 18s ease-in-out infinite reverse;
}
.process-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}
.process-line {
    position: absolute;
    left: 38px; top: 0;
    width: 6px; height: 100%;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
}
.process-line::after {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: calc(var(--lp, 0) * 100%);
    background: var(--accent);
    border-radius: 3px;
    /* no CSS transition — scrub handles all interpolation */
    box-shadow: 0 0 20px rgba(247,166,0,0.45), 0 0 40px rgba(247,166,0,0.18);
}
.process-step {
    display: flex; gap: 30px;
    padding: 30px 0;
    position: relative;
}
.process-step-dot {
    flex-shrink: 0;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 3px solid var(--border-color);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.5s;
    z-index: 2;
}
.process-step-dot span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.6rem;
    color: rgba(255,255,255,0.45);
    transition: all 0.5s;
    position: relative;
    z-index: 2;
    -webkit-text-stroke: 2px rgba(0,0,0,0.85);
    paint-order: stroke fill;
}
.process-step.active .process-step-dot {
    border-color: var(--accent);
    background: rgba(247,166,0,0.10);
    box-shadow: 0 0 40px rgba(247,166,0,0.45), 0 0 80px rgba(247,166,0,0.18);
}
.process-step.active .process-step-dot span {
    color: #00e676;
    text-shadow: 0 0 8px rgba(0,230,118,1), 0 0 20px rgba(0,230,118,0.7), 0 0 36px rgba(0,230,118,0.4);
}
.process-step-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem; margin-bottom: 8px;
}
.process-step-content p { color: var(--text-secondary); font-size: 0.95rem; }

/* ===== INCLUDED PROGRESS BAR ===== */
.included-progress-bar {
    position: relative;
    padding: 40px 0 20px;
}
.included-progress-track {
    position: absolute;
    top: 58px;
    left: 5%;
    right: 5%;
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    z-index: 0;
}
.included-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--accent);
    border-radius: 3px;
    transition: width 0.4s ease;
    box-shadow: 0 0 20px rgba(247,166,0,0.55), 0 0 40px rgba(247,166,0,0.22);
}
.included-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.included-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
}
.included-step-dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 3px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    position: relative;
}
.included-step-dot span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.5);
    transition: all 0.5s;
    position: relative;
    z-index: 2;
    -webkit-text-stroke: 1.5px rgba(0,0,0,0.85);
    paint-order: stroke fill;
}
.included-step.active .included-step-dot {
    border-color: var(--accent);
    background: rgba(247,166,0,0.10);
    box-shadow: 0 0 28px rgba(247,166,0,0.5), 0 0 55px rgba(247,166,0,0.2);
}
.included-step.active .included-step-dot span {
    color: #00e676;
    text-shadow: 0 0 8px rgba(0,230,118,1), 0 0 18px rgba(0,230,118,0.7), 0 0 32px rgba(0,230,118,0.4);
}
.included-step-label {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    transition: color 0.5s;
    letter-spacing: 0.5px;
}
.included-step.active .included-step-label {
    color: var(--text-primary);
    font-weight: 600;
}

/* ===== CHOOSE US ===== */
.choose-us {
    position: relative;
    overflow: hidden;
}
/* .choose-us-bg replaced by beams canvas */
.beams-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: block;
}
.choose-us-logo-float {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 32px 0 48px;
    position: relative;
    z-index: 1;
}
/* Big radial glow orb sitting behind the logo */
.choose-us-logo-float::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 260px;
    height: 260px;
    background: radial-gradient(circle,
        rgba(247,166,0,0.48) 0%,
        rgba(247,166,0,0.22) 35%,
        rgba(247,166,0,0.06) 65%,
        transparent 80%
    );
    border-radius: 50%;
    z-index: -1;
    animation: chooseGlowPulse 5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes chooseGlowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.85; }
    50%       { transform: translate(-50%, -50%) scale(1.18); opacity: 1;    }
}
.choose-floating-logo {
    width: 200px;
    opacity: 0.88;
    filter:
        drop-shadow(0 0 14px rgba(247,166,0,0.95))
        drop-shadow(0 0 40px rgba(247,166,0,0.55))
        drop-shadow(0 0 80px rgba(247,166,0,0.25));
    animation: chooseLogoFloat 5s ease-in-out infinite;
    position: relative;
    z-index: 1;
}
@keyframes chooseLogoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 18px rgba(247,166,0,1)) drop-shadow(0 0 60px rgba(247,166,0,0.75)) drop-shadow(0 0 120px rgba(247,166,0,0.45));
    }
    50% {
        transform: translateY(-18px) scale(1.04);
        filter: drop-shadow(0 0 20px rgba(247,166,0,1)) drop-shadow(0 0 55px rgba(247,166,0,0.7)) drop-shadow(0 0 110px rgba(247,166,0,0.35));
    }
}
.choose-us .container { position: relative; z-index: 1; }
.choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}
.choose-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px 24px 28px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.choose-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-solar);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.choose-card:hover::before { transform: scaleX(1); }
.choose-card:hover {
    transform: translateY(-10px);
    border-color: rgba(247,166,0,0.3);
    box-shadow: 0 20px 50px rgba(247,166,0,0.1), 0 10px 30px rgba(0,0,0,0.2);
}
.choose-card-shine {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(135deg, transparent 40%, rgba(247,166,0,0.04) 50%, transparent 60%);
    transform: rotate(0deg);
    transition: transform 0.8s;
    pointer-events: none;
}
.choose-card:hover .choose-card-shine { transform: rotate(180deg); }
.choose-card-number {
    position: absolute;
    top: 12px; right: 16px;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    transition: color 0.5s;
}
.choose-card:hover .choose-card-number { color: rgba(247,166,0,0.1); }
.choose-card-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(247,166,0,0.15), rgba(247,166,0,0.05));
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    color: var(--accent);
    transition: all 0.5s;
    position: relative;
}
.choose-card:hover .choose-card-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(247,166,0,0.2);
    background: linear-gradient(135deg, rgba(247,166,0,0.25), rgba(247,166,0,0.1));
}
.choose-card-icon svg { width: 26px; height: 26px; }
.choose-card h4 {
    font-family: var(--font-ui);
    font-size: 0.95rem; font-weight: 600;
    margin-bottom: 6px;
}
.choose-card-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Savings Visual */
.savings-visual {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 50px;
}
.savings-comparison {
    display: flex; align-items: center; gap: 30px;
}
.savings-bar { flex: 1; }
.savings-bar-fill {
    height: 40px;
    border-radius: var(--radius-sm);
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    width: 0%;
}
.savings-bar-bills .savings-bar-fill { background: linear-gradient(90deg, #dc2626, #ef4444); }
.savings-bar-solar .savings-bar-fill { background: var(--gradient-solar); }
.savings-bar-label {
    display: block;
    font-size: 0.85rem; font-weight: 600;
    margin-top: 12px;
}
.savings-bar-value {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}
.savings-vs {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
}

/* ===== SYSTEMS ===== */
.systems { background: var(--bg-secondary); position: relative; overflow: hidden; }
.systems::before {
    content: '';
    position: absolute; top: 10%; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(247,166,0,0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 15s ease-in-out infinite;
}
@keyframes floatBubble {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-80px, 50px); }
}
.systems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}
.system-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    /* Only transition the properties we actually animate — prevents border-radius jank */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    /* Own compositing layer from the start — fixes WebKit overflow:hidden + transform corner bug */
    will-change: transform;
    /* Belt-and-suspenders: force GPU layer so radius never drops during animation */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}
.system-card:hover {
    transform: translateY(-12px) translateZ(0);
    box-shadow: 0 30px 70px rgba(0,0,0,0.3);
}
/* System card images */
.system-card-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    /* Inherit the GPU layer so the image clip doesn't cause corner artefacts */
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.system-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.system-card:hover .system-card-image img {
    transform: scale(1.12);
}
.system-card-image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(247,166,0,0.15) 70%, rgba(10,14,23,0.9) 100%);
    pointer-events: none;
}
.system-card-image-overlay.off-grid-overlay {
    background: linear-gradient(180deg, transparent 30%, rgba(26,107,170,0.15) 70%, rgba(10,14,23,0.9) 100%);
}
.system-card-image-overlay.hybrid-overlay {
    background: linear-gradient(180deg, transparent 30%, rgba(16,185,129,0.15) 70%, rgba(10,14,23,0.9) 100%);
}
.system-card-image .system-badge {
    position: absolute;
    top: 16px; right: 16px;
    z-index: 2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 16px;
    font-family: var(--font-ui);
    font-size: 0.72rem; font-weight: 600;
    border-radius: var(--radius-xl);
    background: rgba(247,166,0,0.3);
    color: var(--accent-light);
    border: 1px solid rgba(247,166,0,0.2);
}
.system-card-image .off-grid-badge {
    background: rgba(220,38,38,0.25);
    color: #ff6b6b;
    border-color: rgba(220,38,38,0.35);
}
.system-card-image .hybrid-badge {
    background: rgba(16,185,129,0.3);
    color: #6ee7b7;
    border-color: rgba(16,185,129,0.2);
}
.system-card-header {
    padding: 24px 32px 8px;
    position: relative;
    overflow: hidden;
}
.on-grid-header { background: transparent; }
.off-grid-header { background: transparent; }
.hybrid-header { background: transparent; }
.system-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0;
}
.system-card-body { padding: 16px 32px 32px; }
.system-card-body p { color: var(--text-secondary); font-size: 0.93rem; margin-bottom: 20px; }
.system-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.system-features li::before {
    content: '';
    position: absolute; left: 0; top: 50%;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: rgba(247,166,0,0.15);
    border: 2px solid var(--accent);
    transform: translateY(-50%);
}
.system-fact {
    margin-top: 20px;
    padding: 16px;
    background: rgba(247,166,0,0.05);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.86rem;
    color: var(--text-secondary);
}

/* ===== SUBSIDY & PRICING ===== */
.subsidy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}
.subsidy-highlight h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 24px;
}
.subsidy-benefits li {
    display: flex; gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.subsidy-check {
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: rgba(16,185,129,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #10b981;
}
.subsidy-check svg { width: 14px; height: 14px; }
.subsidy-benefits div { font-size: 0.95rem; color: var(--text-secondary); }
.subsidy-benefits strong { color: var(--text-primary); }

.subsidy-table-wrap h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 24px;
}
.subsidy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.subsidy-table th {
    padding: 14px 16px;
    text-align: left;
    background: rgba(247,166,0,0.1);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.subsidy-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}
.subsidy-table tr:hover td { background: rgba(255,255,255,0.02); }
.subsidy-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* Pricing */
.pricing-section { text-align: center; position: relative; }
.pricing-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.pricing-card-shine {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(247,166,0,0.04) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}
.pricing-card:hover .pricing-card-shine { opacity: 1; }
.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(247,166,0,0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.pricing-icon-mini {
    width: 40px; height: 40px;
    background: rgba(247,166,0,0.08);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    color: var(--accent);
    transition: all 0.5s;
}
.pricing-icon-mini svg { width: 20px; height: 20px; }
.pricing-card:hover .pricing-icon-mini {
    transform: scale(1.15);
    background: rgba(247,166,0,0.15);
}
.highlight-card {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(247,166,0,0.08) 0%, var(--bg-card) 100%);
    position: relative;
}
.highlight-card::after {
    content: 'POPULAR';
    position: absolute; top: 0; left: 0; right: 0;
    background: var(--gradient-solar);
    color: var(--bg-primary);
    font-family: var(--font-ui);
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 0;
    text-align: center;
}
.highlight-card .pricing-icon-mini { margin-top: 20px; }
.pricing-capacity {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem; font-weight: 700;
    color: var(--accent);
    margin-bottom: 6px;
}
.pricing-range {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}
.pricing-tag {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    background: rgba(255,255,255,0.04);
    padding: 4px 14px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
}
.pricing-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 20px; }

/* ===== PROJECTS ===== */
.projects { background: var(--bg-secondary); }

/* ===== INFINITE MENU (3D Projects Gallery) ===== */
.im-wrap {
    position: relative;
    height: 580px;
    overflow: hidden;
    perspective: 1000px;
    cursor: grab;
    margin-bottom: 80px;
    /* Fade top/bottom edges for depth illusion */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    user-select: none;
}
.im-wrap:active { cursor: grabbing; }
.im-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 8px 4px;
    will-change: transform;
    transform-style: preserve-3d;
}
.im-item {
    height: 195px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
    transform-style: preserve-3d;
    cursor: pointer;
    flex-shrink: 0;
}
.im-item:hover {
    transform: scale(1.06) translateZ(28px);
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(247,166,0,0.25);
}
.im-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}
.im-item:hover .im-bg { transform: scale(1.1); }
.im-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(170deg, rgba(5,10,20,0.1) 0%, rgba(5,10,20,0.45) 45%, rgba(5,10,20,0.92) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 16px 14px 14px;
    transition: background 0.3s;
}
.im-item:hover .im-overlay {
    background: linear-gradient(170deg, rgba(5,10,20,0.2) 0%, rgba(5,10,20,0.35) 40%, rgba(5,10,20,0.88) 100%);
}
.im-cap {
    font-family: var(--font-ui);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 3px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.im-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1px;
    line-height: 1.2;
}
.im-loc {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 6px;
}
.im-scope {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    color: rgba(247,166,0,0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s, transform 0.3s;
    line-height: 1.3;
}
.im-item:hover .im-scope { opacity: 1; transform: translateY(0); }
.im-hint {
    position: absolute;
    bottom: 18px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-ui);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    pointer-events: none;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Clients Marquee */
.clients-section {
    text-align: center;
}
.clients-section h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 30px;
}
.clients-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.clients-track {
    display: flex; gap: 24px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.client-name {
    flex-shrink: 0;
    padding: 12px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    font-size: 0.9rem; font-weight: 500;
    white-space: nowrap;
    color: var(--text-secondary);
}

/* ===== FAQ ===== */
.faq { position: relative; overflow: hidden; }
.faq::before {
    content: '';
    position: absolute; top: 20%; right: -150px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(247,166,0,0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 20s ease-in-out infinite;
}
.faq::after {
    content: '';
    position: absolute; bottom: 10%; left: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(26,107,170,0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 16s ease-in-out infinite reverse;
}
.faq .container { position: relative; z-index: 1; }
.faq-list { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.faq-footer-note {
    max-width: 800px;
    margin: 36px auto 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    letter-spacing: 0.2px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    opacity: 0.75;
}
.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.4s;
}
.faq-item:hover { border-color: rgba(247,166,0,0.2); }
.faq-item.active { border-color: rgba(247,166,0,0.4); }
.faq-question {
    width: 100%;
    padding: 24px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    font-size: 1rem; font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
    width: 28px; height: 28px;
    flex-shrink: 0;
    position: relative;
}
.faq-icon span {
    position: absolute;
    background: var(--accent);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-icon span:first-child {
    width: 16px; height: 2px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.faq-icon span:last-child {
    width: 2px; height: 16px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.faq-item.active .faq-icon span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-inner {
    padding: 0 24px 24px;
}
.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact { background: var(--bg-secondary); position: relative; overflow: hidden; }
.contact::before {
    content: '';
    position: absolute; top: 50%; left: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(247,166,0,0.03) 0%, transparent 60%);
    border-radius: 50%;
    animation: floatBubble 18s ease-in-out infinite;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-card {
    display: flex; gap: 16px;
    padding: 20px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    margin-bottom: 8px;
}
.contact-card:hover { background: rgba(255,255,255,0.03); }
.contact-card-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    background: rgba(247,166,0,0.1);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-card a {
    color: var(--accent);
    font-size: 0.9rem;
    transition: var(--transition);
}
.contact-card a:hover { color: var(--accent-light); }
.contact-card p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; }
.contact-service-region {
    padding: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 30px;
}
.form-group {
    position: relative;
    margin-bottom: 24px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(247,166,0,0.03);
}
.form-group label {
    position: absolute;
    left: 16px; top: 16px;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.3s;
    pointer-events: none;
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px; left: 12px;
    font-size: 0.75rem;
    color: var(--accent);
    background: var(--bg-card);
    padding: 0 6px;
}
.form-group select {
    width: 100%;
    padding: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}
.form-group select:focus { border-color: var(--accent); }

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}
/* footer-logo size defined in new section below */
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 350px; }
.footer-links h4 {
    font-size: 0.95rem; margin-bottom: 20px;
    color: var(--accent);
}
.footer-links a {
    display: block;
    color: var(--text-muted);
    font-size: 0.88rem;
    padding: 5px 0;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--text-primary); transform: translateX(5px); }
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    display: flex; justify-content: space-between;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ===== SOLAR VIDEO SECTION ===== */
.solar-vid-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.solar-vid-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.52) saturate(1.15);
    transform: scale(1.06);
    will-change: transform;
    /* slight scale headroom so parallax never exposes edges */
}
.solar-vid-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(10,14,23,0.65) 0%,
            rgba(10,14,23,0.30) 40%,
            rgba(10,14,23,0.30) 60%,
            rgba(10,14,23,0.80) 100%);
    z-index: 1;
}
.solar-vid-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    width: 100%;
    padding: 0 32px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.solar-vid-eyebrow {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0;
    transform: translateY(18px);
    animation: svFadeUp 0.8s 0.3s forwards;
}
.solar-vid-heading {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6.5vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.08;
    margin: 14px 0 10px;
    background: linear-gradient(135deg, #fff 30%, rgba(247,166,0,0.95) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    opacity: 0;
    transform: translateY(22px);
    animation: svFadeUp 0.9s 0.55s forwards;
}
.solar-vid-sub {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(18px);
    animation: svFadeUp 0.8s 0.75s forwards;
}
.solar-vid-brand {
    color: var(--accent);
    font-weight: 700;
}
.solar-vid-divider {
    width: 48px; height: 2px;
    background: var(--gradient-solar);
    margin: 22px auto;
    border-radius: 1px;
    opacity: 0;
    animation: svFadeUp 0.6s 0.95s forwards;
}
.solar-vid-body {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto 32px;
    opacity: 0;
    transform: translateY(14px);
    animation: svFadeUp 0.8s 1.1s forwards;
}
.solar-vid-cta {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--accent);
    border: 1px solid rgba(247,166,0,0.35);
    border-radius: var(--radius-xl);
    padding: 12px 28px;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    opacity: 0;
    animation: svFadeUp 0.7s 1.3s forwards;
}
.solar-vid-cta:hover {
    background: var(--accent);
    color: var(--bg-primary);
    box-shadow: 0 0 28px rgba(247,166,0,0.4);
}
.solar-vid-scroll-hint {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.svs-line {
    width: 1px; height: 56px;
    background: linear-gradient(to bottom, rgba(247,166,0,0.7), transparent);
    margin: 0 auto;
    animation: svScrollPulse 1.8s ease-in-out infinite;
}
@keyframes svFadeUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes svScrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ===== WHY GO SOLAR — FLOATING Q-MARKS ===== */
.why-solar { position: relative; overflow: hidden; }
.why-solar-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.wsp-qmark {
    position: absolute;
    font-family: var(--font-display);
    font-weight: 800;
    color: rgba(247,166,0,0.10);
    user-select: none;
    line-height: 1;
    animation: wspFloat linear infinite;
    filter: blur(0.5px);
}
/* Speech-bubble style: round top, small tail at bottom-left */
.wsp-qmark::after {
    content: '';
    position: absolute;
    bottom: -10px; left: 18px;
    width: 14px; height: 14px;
    background: inherit;
    border-radius: 0 0 12px 0;
    box-shadow: inherit;
    opacity: 0.6;
}
.wsp-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(247,166,0,0.12);
    animation: wspFloat linear infinite;
}
@keyframes wspFloat {
    0%   { transform: translateY(0)   rotate(0deg);   opacity: 0; }
    8%   { opacity: 1; }
    92%  { opacity: 1; }
    100% { transform: translateY(-120vh) rotate(360deg); opacity: 0; }
}
.why-solar .container { position: relative; z-index: 1; }

/* ===== WHATSAPP FLOAT ===== */


/* ===== PRELOADER LOGO ===== */
.preloader-logo {
    width: 130px;
    height: auto;
    position: relative;
    z-index: 2;
    animation: plLogoGlow 2.6s ease-in-out infinite;
}
@keyframes plLogoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 14px rgba(247,166,0,0.45))
                drop-shadow(0 0 40px rgba(247,166,0,0.12));
        opacity: 0.88;
    }
    50% {
        filter: drop-shadow(0 0 26px rgba(247,166,0,0.80))
                drop-shadow(0 0 70px rgba(247,166,0,0.30));
        opacity: 1;
    }
}

/* ===== HERO LOGO ===== */
.hero-logo-large {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 0 50px rgba(247,166,0,0.3)) drop-shadow(0 0 100px rgba(247,166,0,0.12));
    opacity: 0; transform: translateY(30px) scale(0.85);
    animation: heroLogoIn 1.2s 2s forwards, logoFloat 5s 3.2s ease-in-out infinite;
}
@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes heroLogoIn {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== ENLARGED NAV LOGO ===== */
.nav-logo-img {
    display: block;
    width: auto;
    height: 64px;
    max-width: 64px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    transition: var(--transition);
}
.navbar.scrolled .nav-logo-img {
    height: 52px;
    max-width: 52px;
}

/* ===== SECTION LOGO (brand watermark) ===== */
.section-logo {
    display: block;
    width: 80px;
    height: auto;
    margin: 0 auto 16px;
    opacity: 0.6;
    filter: drop-shadow(0 0 12px rgba(247,166,0,0.2));
    transition: opacity 0.4s;
}
.section-logo:hover { opacity: 1; }

/* ===== SERVICE IMAGE CARDS ===== */
.service-image-wrapper {
    height: 260px;
    overflow: hidden;
    position: relative;
}
.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-main-card:hover .service-image {
    transform: scale(1.08);
}
.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,14,23,0.8) 100%);
    pointer-events: none;
}

/* ===== FULL-WIDTH LEADER CARD (Sohangi) ===== */
.leader-card-full {
    margin-top: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s;
    border-image: linear-gradient(135deg, var(--accent), var(--solar-blue)) 1;
    border-width: 1px;
    border-style: solid;
}
.leader-card-full:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(247,166,0,0.15);
}
.leader-card-full .leader-card-inner {
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
.leader-card-full .leader-info {
    flex: 1;
}

/* ===== FOOTER LOGO ENLARGED ===== */
.footer-logo {
    display: block;
    width: auto;
    height: 150px;
    max-width: 150px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 16px rgba(247,166,0,0.18));
}

/* ===== DESIGNED BY CREDIT ===== */
.designed-by {
    text-align: center;
    padding: 24px 0 8px;
    margin-top: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.designed-by-logo {
    height: 30px;
    opacity: 0.5;
}
.designed-by p {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}
.designed-by strong {
    color: var(--accent);
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-card-stack { height: 300px; }
    .leaders-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .services-showcase { grid-template-columns: 1fr; }
    .choose-grid { grid-template-columns: repeat(2, 1fr); }
    .systems-grid { grid-template-columns: 1fr; }
    .subsidy-content { grid-template-columns: 1fr; }
    .im-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed; inset: 0;
        background: rgba(10,14,23,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center; align-items: center;
        gap: 20px;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .nav-links.open { transform: translateX(0); }
    .nav-link { font-size: 1.2rem; }
    .nav-toggle { display: flex; z-index: 1001; }
    .hero-content { padding: 120px 24px 80px; }
    .hero-layout { flex-direction: column; text-align: center; }
    .hero-text { max-width: 100%; }
    .hero-logo-side { order: -1; margin-top: 0; }
    .hero-logo-large { width: 200px; }
    .hero-badge { margin-left: auto; margin-right: auto; }
    .hero-cta-group { justify-content: center; }
    .hero-stats { flex-wrap: wrap; gap: 20px; justify-content: center; }
    .hero-stat-divider { display: none; }
    /* Scroll indicator: hide on mobile (hero taller than viewport) */
    .hero-scroll-indicator { display: none; }
    .container { padding: 0 24px; }
    .section { padding: 80px 0; }

    /* ── Why Go Solar cards: 2-col compact ── */
    .benefits-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .benefit-card-img { height: 90px; }
    .benefit-card h3 { font-size: 0.85rem; padding: 10px 12px 0; margin-bottom: 6px; }
    .benefit-card p   { font-size: 0.74rem; padding: 0 12px 12px; line-height: 1.5; }

    /* ── Pricing cards: 2-col compact ── */
    .pricing-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .pricing-card { padding: 16px 12px; }
    .pricing-icon-mini { width: 30px; height: 30px; margin-bottom: 10px; }
    .pricing-icon-mini svg { width: 16px; height: 16px; }
    .pricing-capacity { font-size: 1.35rem; }
    .pricing-range { font-size: 0.72rem; margin-bottom: 6px; }
    .pricing-tag { font-size: 0.6rem; padding: 3px 10px; }
    .highlight-card .pricing-icon-mini { margin-top: 12px; }

    /* ── Also Included steps: compact dots + labels ── */
    .services-included { padding: 28px 16px; }
    .included-step-dot { width: 36px; height: 36px; }
    .included-step-dot span { font-size: 0.82rem; }
    .included-step { gap: 8px; }
    .included-step-label { font-size: 0.6rem; letter-spacing: 0; line-height: 1.3; }
    .included-progress-track { top: 54px; }   /* re-centre to 40px pad + 18px (half 36px dot) */

    .choose-grid { grid-template-columns: 1fr 1fr; }
    .im-grid { grid-template-columns: 1fr; }
    .savings-comparison { flex-direction: column; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .subsidy-table { font-size: 0.78rem; }
    .subsidy-table th, .subsidy-table td { padding: 10px 8px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-cta-group { flex-direction: column; }
    .choose-grid { grid-template-columns: 1fr; }
    /* Keep pricing 2-col even on small phones — cards are compact enough */
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    /* Keep benefit cards 2-col */
    .benefits-grid { grid-template-columns: 1fr 1fr; }
}
