/* Premium Solar Design System */
:root {
    /* Colors */
    --teal-dark: #041916;
    --teal: #075d7a;
    --teal-light: #0f766e;
    --teal-bg: #e9f5f2;
    --sun: #ffd21f;
    --sun-hover: #f4bd12;
    --sun-light: #fff2bd;
    --ink: #0f172a;
    --muted: #475569;
    --white: #ffffff;
    --off-white: #f8fafc;
    --border: #e2e8f0;
    
    /* Layout */
    --max-w: 1280px;
    --padding-x: clamp(1.25rem, 4vw, 3.5rem);
    --section-y: clamp(4rem, 8vw, 7rem);
    
    /* Shadows & Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 20px rgba(255, 210, 31, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.4);
    --glass-blur: blur(12px);
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, p, ul { margin: 0; padding: 0; }
body {
    font-family: var(--font-main);
    color: var(--ink);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}
html.is-loading body { overflow: hidden; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Site Loader */
.site-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    place-items: center;
    padding: 1.5rem;
    background:
        linear-gradient(145deg, rgba(233,245,242,0.98), rgba(255,255,255,0.99) 46%, rgba(255,242,189,0.92));
    backdrop-filter: blur(10px);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}
html.is-loading .site-loader,
html.is-loaded .site-loader { display: grid; }
html.is-loaded .site-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-card {
    width: min(92vw, 320px);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    text-align: center;
    color: var(--teal-dark);
}
.loader-mark {
    position: relative;
    width: 150px;
    height: 150px;
    display: grid;
    place-items: center;
    margin-bottom: 0.25rem;
}
.loader-mark::before,
.loader-mark::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(7, 93, 122, 0.16);
}
.loader-mark::before {
    inset: 0;
    border-top-color: var(--sun);
    border-right-color: var(--teal-light);
    animation: loaderSpin 1.4s linear infinite;
}
.loader-mark::after {
    inset: 20px;
    border-bottom-color: rgba(255, 210, 31, 0.8);
    animation: loaderSpin 2.2s linear infinite reverse;
}
.loader-mark img {
    position: relative;
    z-index: 2;
    width: 74px;
    max-height: 74px;
    filter: drop-shadow(0 12px 18px rgba(4, 25, 22, 0.14));
}
.loader-sun {
    position: absolute;
    top: 8px;
    right: 18px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--sun);
    box-shadow: 0 0 0 8px rgba(255, 210, 31, 0.16);
    animation: loaderPulse 1.8s ease-in-out infinite;
}
.loader-panel {
    position: absolute;
    bottom: 16px;
    width: 54px;
    height: 32px;
    border-radius: 0.45rem;
    background:
        linear-gradient(90deg, transparent 32%, rgba(255,255,255,0.45) 32% 36%, transparent 36% 66%, rgba(255,255,255,0.45) 66% 70%, transparent 70%),
        linear-gradient(0deg, transparent 45%, rgba(255,255,255,0.42) 45% 52%, transparent 52%),
        linear-gradient(135deg, var(--teal), var(--teal-light));
    box-shadow: 0 12px 22px rgba(7, 93, 122, 0.16);
}
.loader-panel--one {
    left: 24px;
    transform: rotate(-10deg);
    animation: loaderPanelLeft 1.8s ease-in-out infinite;
}
.loader-panel--two {
    right: 24px;
    transform: rotate(10deg);
    animation: loaderPanelRight 1.8s ease-in-out infinite;
}
.loader-card strong {
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.1;
}
.loader-card > span {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}
.loader-progress {
    width: min(100%, 220px);
    height: 5px;
    margin-top: 0.7rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(7, 93, 122, 0.12);
}
.loader-progress i {
    display: block;
    width: 45%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--sun), var(--teal-light));
    animation: loaderProgress 1.25s ease-in-out infinite;
}

@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}
@keyframes loaderPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 210, 31, 0.16); }
    50% { transform: scale(1.08); box-shadow: 0 0 0 13px rgba(255, 210, 31, 0.08); }
}
@keyframes loaderPanelLeft {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-5px) rotate(-7deg); }
}
@keyframes loaderPanelRight {
    0%, 100% { transform: translateY(0) rotate(10deg); }
    50% { transform: translateY(-5px) rotate(7deg); }
}
@keyframes loaderProgress {
    0% { transform: translateX(-105%); }
    100% { transform: translateX(235%); }
}

@media (prefers-reduced-motion: reduce) {
    .loader-mark::before,
    .loader-mark::after,
    .loader-sun,
    .loader-panel,
    .loader-progress i {
        animation: none;
    }
}

/* Utilities */
.max-w-7xl { max-width: var(--max-w); margin: 0 auto; }
.max-w-5xl { max-width: 1024px; margin: 0 auto; }
.text-teal { color: var(--teal); }
.text-sun { color: var(--sun); }
.text-white { color: var(--white); }
.center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.w-full { width: 100%; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.gap-10 { gap: 2.5rem; }
.align-start { align-items: flex-start; }

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Typography */
h1, h2, h3, h4 { line-height: 1.1; font-weight: 800; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 1rem; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.eyebrow { 
    color: var(--teal-light);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    gap: 0.5rem;
}
.btn-primary { background: var(--sun); color: var(--teal-dark); }
.btn-primary:hover { background: var(--sun-hover); transform: translateY(-2px); }
.btn-secondary { background: var(--teal-bg); color: var(--teal); }
.btn-secondary:hover { background: #d0f0e8; }
.btn-outline { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); color: var(--white); backdrop-filter: blur(4px); }
.btn-outline:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.glow-effect:hover { box-shadow: var(--shadow-glow); }

/* Header & Nav */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0.9rem var(--padding-x);
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    background: rgba(255,255,255,0.94);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border);
    padding: 0.55rem var(--padding-x);
    box-shadow: 0 14px 35px rgba(15,23,42,0.08);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.32rem;
    min-width: 0;
}
.logo-wrapper {
    background: transparent;
    width: 86px;
    min-height: 62px;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.brand-logo {
    width: 86px;
    max-height: 58px;
    height: auto;
    object-fit: contain;
}
.brand-text {
    display: flex;
    min-width: 0;
    flex-direction: column;
}
.brand-text strong {
    color: var(--teal);
    line-height: 1.05;
    font-size: 1.08rem;
    font-weight: 900;
    white-space: nowrap;
}
.brand-text span {
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 700;
}
.site-header:not(.scrolled) .brand-text strong { color: var(--white); text-shadow: 0 2px 14px rgba(0,0,0,0.28); }
.site-header:not(.scrolled) .brand-text span { color: rgba(255,255,255,0.82); }

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 999px;
    background: rgba(4,25,22,0.14);
    backdrop-filter: blur(12px);
}
.site-header.scrolled .main-nav {
    border-color: rgba(7,93,122,0.10);
    background: rgba(248,250,252,0.86);
}
.main-nav a {
    position: relative;
    display: inline-flex;
    min-height: 2.55rem;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.68rem 0.92rem;
    border-radius: 999px;
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1;
}
.site-header:not(.scrolled) .main-nav a:not(.btn) { color: var(--white); }
.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    right: 0.9rem;
    bottom: 0.38rem;
    left: 0.9rem;
    width: auto;
    height: 2px;
    background: var(--sun);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}
.main-nav a:not(.btn):hover::after,
.main-nav a.active:not(.btn)::after {
    transform: scaleX(1);
}
.main-nav a:not(.btn):hover,
.main-nav a.active:not(.btn) {
    background: rgba(255,255,255,0.12);
}
.site-header.scrolled .main-nav a:not(.btn):hover,
.site-header.scrolled .main-nav a.active:not(.btn) {
    color: var(--teal);
    background: var(--teal-bg);
}
.main-nav a.active { color: var(--teal); }
.site-header:not(.scrolled) .main-nav a.active { color: var(--sun); }
.main-nav .btn-quote {
    padding: 0.72rem 1.05rem;
    background: var(--sun);
    color: var(--teal-dark);
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(255,210,31,0.24);
}
.main-nav .btn-quote:hover {
    background: var(--sun-hover);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 0.85rem;
    background: rgba(255,255,255,0.12);
    cursor: pointer;
    padding: 0;
    backdrop-filter: blur(10px);
}
.nav-toggle .bar {
    display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: all 0.3s;
}
.site-header:not(.scrolled) .nav-toggle .bar { background: var(--white); }
.site-header.scrolled .nav-toggle {
    border-color: var(--border);
    background: var(--white);
}

/* Heroes */
.hero, .page-hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: var(--section-y) var(--padding-x); overflow: hidden; }
.page-hero { min-height: 50vh; align-items: flex-end; padding-bottom: 4rem; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-image { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(4, 25, 22, 0.95) 0%, rgba(7, 93, 122, 0.8) 50%, rgba(4, 25, 22, 0.3) 100%);
}
.page-hero .hero-overlay {
    background: linear-gradient(to top, rgba(4, 25, 22, 0.95) 0%, rgba(7, 93, 122, 0.6) 100%);
}
.dark-hero .hero-overlay { background: var(--teal-dark); }
.hero-container { width: 100%; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: center; }
.hero-content, .page-hero-content { color: var(--white); position: relative; z-index: 1; }
.hero-subtitle, .page-subtitle { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; margin-bottom: 1rem; color: rgba(255,255,255,0.9); }
.hero-copy { font-size: 1.125rem; color: rgba(255,255,255,0.8); max-width: 600px; }
.hero-actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-proof { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-proof span {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1rem; border-radius: 0.5rem; font-size: 0.875rem; font-weight: 700; backdrop-filter: blur(4px);
    display: flex; align-items: center; gap: 0.5rem;
}
.hero-proof i { color: var(--sun); }

.hero-graphic { position: relative; z-index: 1; }
.glass-card {
    background: var(--glass-bg); backdrop-filter: var(--glass-blur);
    border: var(--glass-border); border-radius: 1rem; padding: 2.5rem;
    box-shadow: var(--shadow-lg); transition: transform 0.4s ease;
}
.glass-card img { width: 100%; max-width: 200px; margin: 0 auto; filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)); }

/* Sections */
.section { padding: var(--section-y) var(--padding-x); }
.alt-bg { background: var(--white); }
.dark-section { background: var(--teal-dark); color: var(--white); }
.section-head { max-width: 800px; margin-bottom: 3.5rem; }
.section-head.center p:not(.eyebrow) { margin: 0 auto; }
.section-head p:not(.eyebrow) { font-size: 1.125rem; color: var(--muted); margin-top: 1rem; }
.dark-section .section-head p:not(.eyebrow) { color: rgba(255,255,255,0.7); }

/* Stats Band */
.stats-band {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    background: var(--teal); color: var(--white); border-bottom: 4px solid var(--sun);
}
.stat-item {
    padding: 2.5rem 1rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.1);
    display: flex; flex-direction: column; gap: 0.5rem;
}
.stat-item strong { font-size: 2.5rem; line-height: 1; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.stat-item span { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--sun); }

/* Intro & Story */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.intro-content p { color: var(--muted); font-size: 1.125rem; margin-bottom: 1.5rem; }
.image-wrapper { position: relative; border-radius: 1rem; overflow: hidden; aspect-ratio: 4/3; }
.glass-border { border: 8px solid var(--white); box-shadow: var(--shadow-lg); }
.gradient-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--teal-bg) 0%, #c1e8de 100%); }
.floating-badge {
    position: absolute; bottom: 2rem; left: -1rem; background: var(--white);
    padding: 1rem 1.5rem; border-radius: 0.5rem; box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 0.75rem; font-weight: 800; font-size: 1.125rem;
}
.floating-badge i { color: #10b981; font-size: 1.5rem; }

.mission-vision .glass-panel { padding: 2rem; background: var(--white); border-radius: 1rem; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.icon-box {
    width: 3rem; height: 3rem; border-radius: 0.5rem; background: var(--sun-light);
    color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 1rem;
}

/* Taglines */
.taglines-band { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--white); }
.tagline-item { padding: 3rem 2rem; text-align: center; border: 1px solid var(--border); background: var(--off-white); display: flex; align-items: center; justify-content: center; }
.tagline-item span { font-size: 1.25rem; font-weight: 800; color: var(--teal-dark); }

/* Services */
.service-card { padding: 2.5rem; text-align: left; }
.service-card .card-icon {
    width: 3.5rem; height: 3.5rem; border-radius: 0.75rem; background: linear-gradient(135deg, var(--sun) 0%, var(--sun-hover) 100%);
    color: var(--teal-dark); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(255, 210, 31, 0.3);
}
.service-card p { color: var(--muted); margin-top: 0.5rem; }
.hover-lift { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hover-lift:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

/* Benefits */
.benefit-item { display: flex; gap: 1rem; background: var(--off-white); padding: 1.5rem; border-radius: 1rem; border: 1px solid var(--border); }
.benefit-check { width: 2rem; height: 2rem; border-radius: 50%; background: #10b981; color: white; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.25rem; }
.benefit-item p { color: var(--muted); font-size: 0.95rem; }

/* Products */
.products-list li {
    display: flex; align-items: center; gap: 1rem; padding: 1.5rem; background: var(--white);
    border-radius: 0.75rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); font-weight: 600;
}
.products-list i { font-size: 1.5rem; }

/* Process */
.timeline-item {
    display: flex; gap: 1.5rem; padding: 2rem; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 1rem; backdrop-filter: blur(10px);
}
.step-number {
    width: 3.5rem; height: 3.5rem; border-radius: 0.75rem; background: var(--sun); color: var(--teal-dark);
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 900; flex-shrink: 0;
}
.step-content h3 { margin-bottom: 0.5rem; }
.step-content p { color: rgba(255,255,255,0.7); }

/* Testimonials */
.testimonial-card { display: flex; flex-direction: column; padding: 2rem; }
.quote-icon { font-size: 2rem; color: var(--sun); margin-bottom: 1rem; opacity: 0.5; }
.quote-text { font-size: 1.125rem; font-style: italic; color: var(--muted); flex-grow: 1; margin-bottom: 1.5rem; }
.author-info { display: flex; flex-direction: column; border-top: 1px solid var(--border); padding-top: 1rem; }
.author-info strong { color: var(--ink); }
.author-info span { color: var(--teal); font-size: 0.875rem; font-weight: 600; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-toggle {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 0; background: none; border: none; font-size: 1.125rem; font-weight: 700;
    color: var(--ink); cursor: pointer; text-align: left; font-family: inherit;
}
.faq-icon { color: var(--teal); transition: transform 0.3s ease; }
.faq-content { padding-bottom: 1.5rem; display: none; color: var(--muted); }
.faq-item.is-open .faq-content { display: block; animation: slideDown 0.3s ease-out; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }

@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* Contact */
.contact-info ul { display: flex; flex-direction: column; gap: 1rem; }
.contact-info li { display: flex; align-items: center; gap: 1rem; font-weight: 500; }
.contact-info i { width: 1.5rem; text-align: center; font-size: 1.25rem; }
.glass-panel { padding: 2rem; background: var(--white); border-radius: 1rem; box-shadow: var(--shadow-md); border: 1px solid var(--border); }

.quote-form { display: flex; flex-direction: column; gap: 1.25rem; }
.quote-form h3 { margin-bottom: 0.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.875rem; font-weight: 700; color: var(--ink); }
.form-group input, .form-group select, .form-group textarea {
    padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 0.5rem;
    font-family: inherit; font-size: 1rem; background: var(--off-white); transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--teal); background: var(--white); box-shadow: 0 0 0 3px rgba(7, 93, 122, 0.1);
}
.form-message { padding: 1rem; border-radius: 0.5rem; margin-top: 1rem; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; }
.success-message { background: #d1fae5; color: #065f46; border: 1px solid #34d399; }
.error-message { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

/* Footer */
.site-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 0%, rgba(255, 210, 31, 0.14), transparent 34rem),
        linear-gradient(135deg, #041916 0%, #063747 58%, #041916 100%);
    color: rgba(255,255,255,0.76);
    padding-top: clamp(3rem, 6vw, 5rem);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent);
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--padding-x);
    display: grid;
    grid-template-columns: minmax(260px, 1.45fr) minmax(150px, 0.75fr) minmax(230px, 1fr) minmax(260px, 1.25fr);
    gap: clamp(2rem, 4vw, 4rem);
    margin-bottom: 3rem;
}

.footer-logo-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    min-height: 124px;
    margin-bottom: 1.25rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
}

.footer-logo {
    width: 170px;
    max-height: 118px;
    height: auto;
    object-fit: contain;
}

.footer-brand h3 {
    max-width: 320px;
    margin-bottom: 0.35rem;
    color: var(--white);
    font-size: 1.35rem;
    line-height: 1.2;
}

.footer-subtitle {
    display: block;
    margin-bottom: 1rem;
    color: var(--sun);
    font-size: 0.86rem;
    font-weight: 800;
}

.footer-brand p {
    max-width: 390px;
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

.footer-credential {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 0.75rem;
    color: var(--white);
    font-size: 0.86rem;
    font-weight: 800;
    background: rgba(255,255,255,0.08);
}

.footer-credential i,
.footer-links i,
.footer-services i,
.footer-contact i {
    color: var(--sun);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    position: relative;
    margin-bottom: 1.35rem;
    color: var(--white);
    font-size: 1.05rem;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    margin-top: 0.65rem;
    border-radius: 999px;
    background: var(--sun);
}

.footer-links nav,
.footer-services nav,
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a,
.footer-services a {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    line-height: 1.35;
}

.footer-links i {
    margin-top: 0.3rem;
    font-size: 0.72rem;
}

.footer-services i {
    width: 1rem;
    margin-top: 0.15rem;
    font-size: 0.92rem;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-contact-list p {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.footer-contact-list i {
    width: 1.25rem;
    margin-top: 0.2rem;
    text-align: center;
}

.footer-contact-list span {
    display: grid;
    gap: 0.15rem;
}

.footer-contact-list small {
    color: rgba(255,255,255,0.48);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-service-area {
    margin-top: 1.3rem;
    padding: 1rem;
    border-radius: 0.9rem;
    background: rgba(255,255,255,0.07);
    line-height: 1.65;
}

.footer-service-area strong {
    color: var(--white);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1.4rem var(--padding-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 0.94rem;
}

.mnre {
    font-weight: 800;
    color: var(--sun);
}

.footer-legal {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem 0.75rem;
    color: rgba(255,255,255,0.72);
    font-weight: 700;
}

.footer-legal span + span::before {
    content: "|";
    margin-right: 0.75rem;
    color: rgba(255,255,255,0.28);
}

.footer-legal strong {
    color: var(--sun);
    font-weight: 900;
}

/* Animations */
.fade-up,
.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.js .fade-up {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js .fade-in {
    opacity: 1;
    transition: opacity 1s ease-out;
}

.js .fade-up.visible,
.js .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HOMEPAGE PREMIUM STYLES
   ============================================ */

/* --- Home Hero --- */
.home-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 var(--padding-x);
    overflow: hidden;
}
.home-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(115deg,
        rgba(4,25,22,0.97) 0%,
        rgba(7,93,122,0.85) 45%,
        rgba(4,25,22,0.5) 100%);
}

/* Animated sun rays */
.sun-rays {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.sun-rays span {
    position: absolute;
    top: -30%; right: -5%;
    width: 2px; height: 200%;
    background: linear-gradient(to bottom, rgba(255,210,31,0.18), transparent);
    transform-origin: top center;
    animation: rotate-ray 12s linear infinite;
}
.sun-rays span:nth-child(1) { transform: rotate(0deg);   animation-delay: 0s; }
.sun-rays span:nth-child(2) { transform: rotate(30deg);  animation-delay: -2s; }
.sun-rays span:nth-child(3) { transform: rotate(60deg);  animation-delay: -4s; }
.sun-rays span:nth-child(4) { transform: rotate(90deg);  animation-delay: -6s; }
.sun-rays span:nth-child(5) { transform: rotate(120deg); animation-delay: -8s; }
.sun-rays span:nth-child(6) { transform: rotate(150deg); animation-delay: -10s; }
@keyframes rotate-ray {
    from { transform: rotate(var(--r,0deg)); }
    to   { transform: rotate(calc(var(--r,0deg) + 360deg)); }
}

.home-hero-inner {
    position: relative; z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    padding: 8rem 0 5rem;
}
.home-hero-content { color: var(--white); }

/* Badge pill */
.badge-pill {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,210,31,0.15); border: 1px solid rgba(255,210,31,0.4);
    color: var(--sun); padding: 0.4rem 1rem; border-radius: 999px;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em;
    text-transform: uppercase; margin-bottom: 1.5rem; backdrop-filter: blur(6px);
}

/* Text gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--sun) 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); margin-bottom: 1.25rem; line-height: 1.05; }

.hero-lead {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: rgba(255,255,255,0.8);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* CTA Row */
.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.btn-sun {
    background: linear-gradient(135deg, var(--sun) 0%, var(--sun-hover) 100%);
    color: var(--teal-dark); font-weight: 800;
    box-shadow: 0 8px 24px rgba(255,210,31,0.35);
}
.btn-sun:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,210,31,0.5); }
.btn-lg { padding: 1.1rem 2.25rem; font-size: 1.1rem; }

.btn-glass {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white); backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }

.btn-glass-dark {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white); backdrop-filter: blur(8px);
}
.btn-glass-dark:hover { background: rgba(255,255,255,0.15); }

.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-light); transform: translateY(-2px); }

.btn-teal-outline {
    background: transparent; color: var(--teal);
    border: 2px solid var(--teal); font-weight: 700;
}
.btn-teal-outline:hover { background: var(--teal); color: var(--white); }

/* Pulse animation */
@keyframes pulse-ring {
    0%   { box-shadow: 0 0 0 0 rgba(255,210,31,0.5); }
    70%  { box-shadow: 0 0 0 14px rgba(255,210,31,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,210,31,0); }
}
.pulse-btn { animation: pulse-ring 2.5s infinite; }

/* Trust badges */
.trust-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.trust-badge {
    display: flex; align-items: center; gap: 0.4rem;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    padding: 0.45rem 0.9rem; border-radius: 0.5rem; font-size: 0.82rem;
    font-weight: 700; color: rgba(255,255,255,0.9); backdrop-filter: blur(6px);
}
.trust-badge i { color: var(--sun); }

/* Floating stat cards */
.hero-cards-col {
    display: flex; flex-direction: column; gap: 1.25rem;
    position: relative; z-index: 2;
}
.float-card {
    display: flex; align-items: center; gap: 1rem;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(16px); border-radius: 1rem; padding: 1.25rem 1.5rem;
    color: var(--white); box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.float-card i { font-size: 2rem; }
.float-card strong { display: block; font-size: 1.75rem; font-weight: 900; line-height: 1; }
.float-card span { font-size: 0.8rem; font-weight: 600; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.05em; }
.float-card--1 { animation: float1 5s ease-in-out infinite; }
.float-card--2 { animation: float2 5s ease-in-out infinite; margin-left: 2rem; }
.float-card--3 { animation: float1 5s ease-in-out 1s infinite; }
@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}
.text-green { color: #34d399; }

/* Scroll hint */
.scroll-hint {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: rgba(255,255,255,0.5); font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; z-index: 2;
}
.scroll-line { width: 1px; height: 50px; background: rgba(255,255,255,0.15); overflow: hidden; border-radius: 1px; }
.scroll-line span {
    display: block; width: 100%; height: 50%;
    background: var(--sun); animation: scroll-anim 1.8s ease-in-out infinite;
}
@keyframes scroll-anim {
    0%   { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

/* --- Stats Ticker --- */
.stats-ticker {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    background: var(--teal);
    border-top: 4px solid var(--sun);
    border-bottom: 4px solid var(--sun);
}
.ticker-item {
    padding: 2rem 1rem; text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
    display: flex; flex-direction: column; gap: 0.25rem; color: var(--white);
    transition: background 0.3s;
}
.ticker-item:hover { background: rgba(255,255,255,0.08); }
.ticker-item strong { font-size: 2.25rem; font-weight: 900; line-height: 1; }
.ticker-item span { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sun); }

/* --- About Intro --- */
.about-intro-section { background: var(--off-white); }
.about-intro-grid {
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 5rem; align-items: center;
}
.about-image-frame {
    position: relative; border-radius: 1.5rem; overflow: visible;
    min-height: 400px;
}
.about-img-bg {
    position: relative;
    width: 100%; min-height: 400px; border-radius: 1.5rem;
    overflow: hidden;
    background: var(--teal-dark);
    box-shadow: 0 32px 64px rgba(4,25,22,0.25);
}
.about-img-bg img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    object-position: center;
}
.about-img-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(4,25,22,0.28));
    pointer-events: none;
}
.about-feat-card {
    position: absolute; bottom: -1.5rem; right: -1.5rem;
    background: var(--white); border-radius: 1rem; padding: 1.25rem 1.5rem;
    display: flex; align-items: center; gap: 1rem;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    font-weight: 700; font-size: 1rem; color: var(--ink);
}
.about-feat-card i { font-size: 2rem; }
.about-savings-card {
    position: absolute; top: 2rem; left: -2rem;
    background: linear-gradient(135deg, var(--sun) 0%, var(--sun-hover) 100%);
    border-radius: 1rem; padding: 1.25rem 1.75rem;
    box-shadow: 0 12px 30px rgba(255,210,31,0.35);
    display: flex; flex-direction: column; align-items: center;
}
.savings-number { font-size: 2.5rem; font-weight: 900; color: var(--teal-dark); line-height: 1; }
.savings-label { font-size: 0.75rem; font-weight: 700; color: var(--teal-dark); opacity: 0.8; text-align: center; }

.about-intro-text p { color: var(--muted); font-size: 1.125rem; margin-bottom: 1.25rem; }
.about-pillars { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.pillar { display: flex; align-items: flex-start; gap: 1rem; }
.pillar i { font-size: 1.5rem; margin-top: 0.2rem; flex-shrink: 0; }
.pillar strong { display: block; font-weight: 800; color: var(--ink); }
.pillar span { font-size: 0.9rem; color: var(--muted); }

/* --- Services Home --- */
.services-home-section { background: var(--white); }
.section-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 3rem;
}
.section-header h2 { margin-bottom: 0; }
.center-header { flex-direction: column; text-align: center; align-items: center; gap: 0.5rem; }

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.home-service-card {
    background: var(--off-white); border: 1px solid var(--border);
    border-radius: 1.25rem; padding: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column; gap: 0;
    position: relative; overflow: hidden;
}
.home-service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sun), var(--teal));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
}
.home-service-card:hover::before { transform: scaleX(1); }
.home-service-card:hover {
    background: var(--white);
    box-shadow: 0 20px 40px rgba(7,93,122,0.12);
    transform: translateY(-6px);
    border-color: transparent;
}
.hsc-media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--teal-bg);
}
.hsc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.home-service-card:hover .hsc-media img { transform: scale(1.05); }
.hsc-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    padding: 1.5rem 1.75rem 1.75rem;
}
.hsc-icon {
    width: 3.5rem; height: 3.5rem; border-radius: 0.875rem;
    background: linear-gradient(135deg, var(--sun-light), #fef9c3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--teal); flex-shrink: 0;
    transition: background 0.3s;
}
.home-service-card:hover .hsc-icon {
    background: linear-gradient(135deg, var(--sun), var(--sun-hover));
    color: var(--teal-dark);
}
.home-service-card h3 { font-size: 1.1rem; margin: 0; color: var(--ink); }
.home-service-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; flex-grow: 1; margin: 0; }
.hsc-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: var(--teal); font-weight: 700; font-size: 0.875rem;
    margin-top: 0.5rem;
}
.hsc-link:hover { gap: 0.75rem; }
.hsc-link i { font-size: 0.7rem; transition: transform 0.2s; }
.hsc-link:hover i { transform: translateX(3px); }

/* --- Process Banner --- */
.process-banner-section {
    position: relative; overflow: hidden;
    background: var(--teal-dark);
    padding: var(--section-y) var(--padding-x);
}
.process-banner-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(7,93,122,0.6) 0%, transparent 70%);
}
.process-banner-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
}
.process-banner-text { color: var(--white); }
.process-banner-text h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); line-height: 1.15; }
.process-banner-text p { color: rgba(255,255,255,0.7); margin: 1rem 0; font-size: 1.05rem; }

.process-steps-preview { display: flex; flex-direction: column; gap: 1.25rem; }
.process-image-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 24px 48px rgba(0,0,0,0.22);
}
.process-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.psp-item {
    display: flex; gap: 1.25rem; align-items: flex-start;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1rem; padding: 1.25rem 1.5rem; backdrop-filter: blur(10px);
    transition: background 0.3s;
}
.psp-item:hover { background: rgba(255,255,255,0.1); }
.psp-num {
    width: 2.5rem; height: 2.5rem; flex-shrink: 0;
    background: var(--sun); color: var(--teal-dark);
    border-radius: 0.625rem; display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 900;
}
.psp-text { flex: 1; }
.psp-text strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: 0.25rem; }
.psp-text span { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.5; }
.psp-more {
    text-align: right; padding-right: 0.5rem;
}
.psp-more a { color: var(--sun); font-weight: 700; font-size: 0.875rem; }

/* --- Benefits Grid --- */
.benefits-home-section { background: var(--off-white); }
.benefits-home-showcase {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: stretch;
}
.benefits-home-photo {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    box-shadow: 0 24px 56px rgba(7,93,122,0.16);
    min-height: 100%;
    background: var(--teal-dark);
}
.benefits-home-photo img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}
.benefits-home-grid {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem;
    align-content: center;
}
.bhg-item {
    display: flex; gap: 1rem; align-items: flex-start;
    background: var(--white); padding: 1.25rem 1.35rem; border-radius: 0.85rem;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s, transform 0.3s;
}
.bhg-item:hover { box-shadow: 0 12px 30px rgba(7,93,122,0.1); transform: translateY(-4px); }
.bhg-icon {
    width: 2.5rem; height: 2.5rem; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; margin-top: 0.2rem;
}
.bhg-item h3 { font-size: 1.05rem; margin-bottom: 0.35rem; color: var(--ink); }
.bhg-item p { color: var(--muted); font-size: 0.875rem; line-height: 1.55; margin: 0; max-width: 52ch; }

/* --- Testimonials --- */
.testimonials-home-section { background: var(--white); }
.testimonials-home-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.thg-card {
    background: var(--off-white); border: 1px solid var(--border); border-radius: 1.25rem;
    padding: 2rem; display: flex; flex-direction: column; gap: 1rem;
    transition: all 0.3s ease;
}
.thg-card:hover { background: var(--white); box-shadow: 0 16px 36px rgba(7,93,122,0.1); transform: translateY(-4px); }
.thg-top { display: flex; gap: 0.2rem; font-size: 0.9rem; }
.thg-quote { color: var(--muted); font-size: 0.9rem; line-height: 1.7; flex-grow: 1; font-style: italic; }
.thg-author { display: flex; align-items: center; gap: 0.875rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.thg-avatar {
    width: 2.5rem; height: 2.5rem; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 1rem;
}
.thg-author strong { display: block; font-size: 0.9rem; color: var(--ink); }
.thg-author span { font-size: 0.8rem; color: var(--teal); font-weight: 600; }

/* --- Tagline Marquee --- */
.tagline-marquee-wrap {
    overflow: hidden; background: var(--sun); padding: 1rem 0;
    border-top: 2px solid var(--sun-hover); border-bottom: 2px solid var(--sun-hover);
}
.tagline-marquee {
    display: flex; gap: 3rem; white-space: nowrap;
    animation: marquee 20s linear infinite;
    will-change: transform;
}
.tagline-marquee span {
    font-weight: 900; font-size: 1.1rem; color: var(--teal-dark);
    text-transform: uppercase; letter-spacing: 0.05em; flex-shrink: 0;
    display: flex; align-items: center; gap: 1rem;
}
.tagline-marquee i { color: var(--teal); }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* --- CTA Section --- */
.cta-section {
    position: relative; overflow: hidden;
    background: var(--teal-dark);
    padding: var(--section-y) var(--padding-x);
}
.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4,25,22,0.94), rgba(4,25,22,0.78)),
        url("solar-cta-ready-ai.png") center / cover no-repeat;
    opacity: 0.95;
}
.cta-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,210,31,0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}
.cta-inner {
    position: relative; z-index: 2;
    display: flex; justify-content: space-between; align-items: center; gap: 3rem;
}
.cta-text { color: var(--white); }
.cta-text h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); margin-bottom: 0.75rem; }
.cta-text p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }
.cta-actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* ============================================
   INNER PAGES STYLES
   ============================================ */

/* --- Inner Hero Common --- */
.inner-hero {
    position: relative;
    min-height: 60vh;
    display: flex; align-items: flex-end;
    padding: var(--section-y) var(--padding-x) 4rem;
    overflow: hidden;
    background: var(--teal-dark);
}
.inner-hero .hero-bg { z-index: 0; }
.inner-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--teal-dark) 0%, rgba(4,25,22,0.4) 100%);
}
.inner-hero-overlay--solid {
    background: radial-gradient(circle at center, rgba(7,93,122,0.6) 0%, var(--teal-dark) 100%);
}
.inner-hero--dark .inner-hero-overlay--solid {
    background: linear-gradient(90deg, rgba(4,25,22,0.94), rgba(4,25,22,0.74));
}
.inner-hero-particles {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1;
}
.particle {
    position: absolute; width: 4px; height: 4px; background: var(--sun);
    border-radius: 50%; opacity: 0.3; animation: floatUp 15s infinite linear;
}
.particle:nth-child(1) { left: 10%; bottom: -10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; bottom: -10%; animation-delay: 2s; width: 6px; height: 6px; }
.particle:nth-child(3) { left: 50%; bottom: -10%; animation-delay: 5s; }
.particle:nth-child(4) { left: 70%; bottom: -10%; animation-delay: 1s; width: 3px; height: 3px; }
.particle:nth-child(5) { left: 90%; bottom: -10%; animation-delay: 7s; }
.particle:nth-child(6) { left: 20%; bottom: -10%; animation-delay: 8s; }
.particle:nth-child(7) { left: 60%; bottom: -10%; animation-delay: 4s; width: 5px; height: 5px; }
.particle:nth-child(8) { left: 80%; bottom: -10%; animation-delay: 9s; }
@keyframes floatUp {
    from { transform: translateY(0) scale(1); opacity: 0.3; }
    to { transform: translateY(-100vh) scale(0); opacity: 0; }
}

.inner-hero-content {
    position: relative; z-index: 2; width: 100%; color: var(--white);
}
.inner-hero-content h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem; }
.inner-hero-sub { font-size: 1.25rem; color: rgba(255,255,255,0.8); max-width: 600px; margin-bottom: 2rem; }
.inner-hero-breadcrumb {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.6);
}
.inner-hero-breadcrumb a { color: var(--sun); }
.inner-hero-breadcrumb a:hover { text-decoration: underline; }
.inner-hero-breadcrumb i { font-size: 0.75rem; }

/* --- About Page --- */
.story-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center; }
.story-img-block { position: relative; height: 500px; border-radius: 1.5rem; }
.story-img-bg {
    width: 100%; height: 100%; border-radius: 1.5rem;
    overflow: hidden;
    background: var(--teal-dark);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.story-img-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.story-badge {
    position: absolute; background: var(--white); padding: 1.25rem 1.5rem;
    border-radius: 1rem; box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex; align-items: center; gap: 1rem;
}
.story-badge--top { top: -2rem; left: 2rem; }
.story-badge--bottom { bottom: -2rem; right: -1rem; }
.story-badge i { font-size: 2rem; }
.story-badge strong { display: block; font-weight: 800; color: var(--ink); line-height: 1.2; }
.story-badge span { font-size: 0.8rem; color: var(--muted); font-weight: 600; text-transform: uppercase; }

.story-text-block h2 { margin-bottom: 1.5rem; }
.story-text-block p { color: var(--muted); font-size: 1.1rem; margin-bottom: 1rem; }
.story-stats-row {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border);
}
.story-stat strong { display: block; font-size: 2rem; font-weight: 900; color: var(--teal); line-height: 1; margin-bottom: 0.5rem; }
.story-stat span { font-size: 0.85rem; font-weight: 700; color: var(--muted); text-transform: uppercase; }

.mission-section { position: relative; padding: var(--section-y) var(--padding-x); background: var(--teal-dark); overflow: hidden; }
.mission-bg { position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(7,93,122,0.4) 0%, transparent 60%); }
.mission-layout { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.mission-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px); border-radius: 1.25rem; padding: 2.5rem; color: var(--white);
    transition: transform 0.3s;
}
.mission-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.08); }
.mission-card-icon {
    width: 3.5rem; height: 3.5rem; border-radius: 0.75rem; background: var(--sun);
    color: var(--teal-dark); display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 1.5rem;
}
.mission-card p { color: rgba(255,255,255,0.7); line-height: 1.7; }

.why-us-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.why-card { background: var(--off-white); border: 1px solid var(--border); border-radius: 1rem; padding: 2rem; transition: all 0.3s; }
.why-card:hover { background: var(--white); box-shadow: 0 15px 30px rgba(0,0,0,0.08); transform: translateY(-5px); }
.why-card-icon { color: var(--teal); font-size: 2rem; margin-bottom: 1.5rem; }
.why-card h3 { margin-bottom: 0.75rem; color: var(--ink); }
.why-card p { color: var(--muted); font-size: 0.95rem; }

/* --- Services Page --- */
.services-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.spg-card {
    display: grid; grid-template-columns: 180px 1fr; gap: 0; background: var(--off-white); border: 1px solid var(--border);
    border-radius: 1.25rem; padding: 0; transition: all 0.3s;
    overflow: hidden;
}
.spg-card:hover { background: var(--white); box-shadow: 0 20px 40px rgba(7,93,122,0.1); transform: translateY(-5px); }
.spg-media {
    min-height: 100%;
    background: var(--teal-bg);
    overflow: hidden;
}
.spg-media img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.spg-card:hover .spg-media img { transform: scale(1.05); }
.spg-card-main {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
}
.spg-icon-wrap { display: flex; flex-direction: column; align-items: center; gap: 1rem; flex-shrink: 0; }
.spg-icon {
    width: 4rem; height: 4rem; border-radius: 1rem; background: var(--teal-bg);
    color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 1.75rem;
}
.spg-card:hover .spg-icon { background: var(--teal); color: var(--white); }
.spg-num { font-weight: 900; color: var(--border); font-size: 1.25rem; }
.spg-body h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.spg-body p { color: var(--muted); line-height: 1.7; }

.benefits-page-section { position: relative; padding: var(--section-y) var(--padding-x); background: var(--white); }
.benefits-page-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.bpg-card { position: relative; padding: 2rem; border-radius: 1rem; border: 1px solid var(--border); background: var(--off-white); z-index: 1; overflow: hidden; }
.bpg-num { position: absolute; right: -1rem; top: -1rem; font-size: 6rem; font-weight: 900; color: rgba(0,0,0,0.03); z-index: -1; line-height: 1; }
.bpg-check { width: 2rem; height: 2rem; border-radius: 50%; background: #10b981; color: var(--white); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.bpg-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.bpg-card p { color: var(--muted); font-size: 0.9rem; }

.products-intro { display: flex; justify-content: space-between; align-items: center; gap: 4rem; margin-bottom: 3rem; }
.products-intro-text { max-width: 700px; font-size: 1.1rem; color: var(--muted); line-height: 1.7; }
.products-page-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.product-card {
    display: flex; align-items: center; gap: 1.5rem; background: var(--white);
    border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem;
    transition: all 0.3s; cursor: pointer;
}
.product-card:hover { border-color: var(--teal); box-shadow: 0 10px 20px rgba(7,93,122,0.1); }
.product-card-icon { width: 3rem; height: 3rem; border-radius: 0.75rem; background: var(--sun-light); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.product-card-text { flex-grow: 1; }
.product-card-text strong { display: block; font-size: 1.1rem; color: var(--ink); }
.product-card-text span { font-size: 0.9rem; color: var(--muted); }
.product-arrow { color: var(--border); transition: color 0.3s, transform 0.3s; }
.product-card:hover .product-arrow { color: var(--teal); transform: translateX(5px); }

/* --- Process Page --- */
.process-steps-full { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }
.psf-item { display: flex; gap: 2rem; }
.psf-left { display: flex; flex-direction: column; align-items: center; }
.psf-num {
    width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--sun);
    color: var(--teal-dark); font-weight: 900; font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    box-shadow: 0 0 0 8px rgba(255,210,31,0.2);
}
.psf-connector { width: 2px; flex-grow: 1; background: var(--border); margin-top: 1rem; min-height: 50px; }
.psf-card {
    flex-grow: 1; background: var(--white); border: 1px solid var(--border);
    border-radius: 1.25rem; padding: 2.5rem; position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s;
}
.psf-card:hover { transform: translateX(10px); border-color: var(--teal); }
.psf-card-badge {
    position: absolute; top: 1.5rem; right: 1.5rem; background: var(--off-white);
    padding: 0.4rem 0.8rem; border-radius: 999px; font-size: 0.8rem; font-weight: 700; color: var(--muted);
}
.psf-card h3 { margin-bottom: 1rem; font-size: 1.5rem; color: var(--teal-dark); }
.psf-card p { color: var(--muted); font-size: 1.1rem; line-height: 1.6; }

.guarantee-strip {
    background: var(--teal); display: flex; flex-wrap: wrap;
    justify-content: center; gap: 3rem; padding: 3rem var(--padding-x);
}
.guarantee-item { display: flex; align-items: center; gap: 0.75rem; color: var(--white); font-weight: 700; }
.guarantee-item i { color: var(--sun); font-size: 1.25rem; }

.faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; }
.faq-support-card {
    display: flex; align-items: center; gap: 1.25rem; margin-top: 3rem;
    padding: 1.5rem; background: var(--white); border: 1px solid var(--border); border-radius: 1rem;
}
.faq-support-icon { width: 3rem; height: 3rem; border-radius: 50%; background: var(--sun-light); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.faq-support-card strong { display: block; color: var(--muted); font-size: 0.9rem; margin-bottom: 0.2rem; }
.faq-support-card span { font-size: 1.25rem; font-weight: 900; color: var(--ink); }

/* --- Contact Page --- */
.contact-page-section { background: var(--off-white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }

.contact-info-card { background: var(--white); border-radius: 1.5rem; padding: 3rem; box-shadow: var(--shadow-lg); overflow: hidden; }
.contact-card-media {
    margin: -3rem -3rem 2rem;
    height: 230px;
    overflow: hidden;
    background: var(--teal-bg);
}
.contact-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-details-list { display: flex; flex-direction: column; gap: 2rem; margin: 2.5rem 0; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
.contact-details-list li { display: flex; gap: 1.25rem; }
.cd-icon { width: 3rem; height: 3rem; border-radius: 50%; background: var(--teal-bg); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.cd-text span { display: block; font-size: 0.85rem; color: var(--muted); font-weight: 600; text-transform: uppercase; margin-bottom: 0.2rem; }
.cd-text strong { font-size: 1.1rem; color: var(--ink); }

.contact-hours h3, .service-areas-mini h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.contact-hours p, .service-areas-mini p { color: var(--muted); margin-bottom: 0.5rem; }
.hours-note { display: block; font-size: 0.8rem; color: var(--teal); font-weight: 600; margin-top: 1rem; }
.service-areas-mini { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }

.form-wrapper { background: var(--white); border-radius: 1.5rem; padding: 3.5rem; box-shadow: var(--shadow-lg); }
.form-header { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
.form-header h3 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.form-header p { color: var(--muted); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.form-group-premium { display: flex; flex-direction: column; gap: 0.5rem; }
.full-width { grid-column: 1 / -1; margin-bottom: 2rem; }
.form-group-premium label { font-size: 0.9rem; font-weight: 700; color: var(--ink); }
.req { color: #ef4444; }

.input-wrap { position: relative; display: flex; align-items: center; width: 100%; }
.input-wrap > i:first-child {
    position: absolute;
    top: 50%;
    left: 1.15rem;
    z-index: 1;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1;
    pointer-events: none;
    transform: translateY(-50%);
}
.input-wrap input, .input-wrap select, .input-wrap textarea {
    width: 100%; padding: 1rem 1rem 1rem 3.25rem; border: 1px solid var(--border);
    border-radius: 0.75rem; background: var(--off-white); font-family: inherit; font-size: 1rem;
    transition: all 0.3s;
}
.input-wrap input:focus, .input-wrap select:focus, .input-wrap textarea:focus {
    background: var(--white); border-color: var(--teal); box-shadow: 0 0 0 4px rgba(7,93,122,0.1); outline: none;
}
.select-wrap select { appearance: none; cursor: pointer; }
.select-arrow { position: absolute; right: 1.25rem; color: var(--muted); pointer-events: none; }
.textarea-wrap { align-items: stretch; }
.textarea-wrap > i:first-child {
    display: none;
}
.textarea-wrap textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.55;
    padding: 1rem 1.15rem;
}

.form-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.privacy-note { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--muted); }
.btn-submit { display: flex; align-items: center; gap: 0.75rem; padding: 1rem 2rem; font-size: 1.1rem; border-radius: 0.75rem; border: none; cursor: pointer; }

.success-message {
    margin-top: 2rem; padding: 1.5rem; background: #ecfdf5; border: 1px solid #34d399;
    border-radius: 0.75rem; display: flex; gap: 1rem; align-items: flex-start;
}
.success-message i { color: #10b981; font-size: 1.5rem; margin-top: 0.2rem; }
.success-message strong { display: block; color: #065f46; font-size: 1.1rem; margin-bottom: 0.2rem; }
.success-message span { color: #047857; font-size: 0.9rem; }
.error-message {
    margin-top: 2rem; padding: 1.5rem; background: #fef2f2; border: 1px solid #fca5a5;
    border-radius: 0.75rem; display: flex; gap: 1rem; align-items: flex-start;
}
.error-message i { color: #ef4444; font-size: 1.5rem; margin-top: 0.2rem; }
.error-message strong { display: block; color: #991b1b; font-size: 1.1rem; margin-bottom: 0.2rem; }
.error-message span { color: #b91c1c; font-size: 0.9rem; }

@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-actions, .hero-proof { justify-content: center; }
    .hero-graphic { display: none; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .site-header {
        padding: 0.65rem var(--padding-x);
        background: rgba(255,255,255,0.96);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 12px 26px rgba(15,23,42,0.08);
        backdrop-filter: var(--glass-blur);
    }

    .nav-toggle { display: grid; }
    .main-nav {
        position: absolute;
        top: calc(100% + 0.65rem);
        left: var(--padding-x);
        right: var(--padding-x);
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        padding: 0.75rem;
        border: 1px solid var(--border);
        border-radius: 1rem;
        background: rgba(255,255,255,0.98);
        box-shadow: 0 22px 50px rgba(15,23,42,0.16);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.35s ease;
    }
    .main-nav.is-open { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .brand-text strong { color: var(--teal) !important; }
    .brand-text span { color: var(--muted) !important; }
    .main-nav a {
        width: 100%;
        justify-content: flex-start;
        color: var(--ink) !important;
        padding: 0.9rem 1rem;
        border-radius: 0.75rem;
    }
    .main-nav a:not(.btn)::after { display: none; }
    .main-nav a:not(.btn):hover,
    .main-nav a.active:not(.btn) {
        background: var(--teal-bg);
        color: var(--teal) !important;
    }
    .main-nav .btn-quote {
        width: 100%;
        justify-content: center;
        text-align: center;
        margin-top: 0.25rem;
    }
    .nav-toggle .bar { background: var(--ink) !important; }
    
    .intro-grid { grid-template-columns: 1fr; }
    .taglines-band { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }

    /* Homepage responsive */
    .home-hero-inner { grid-template-columns: 1fr; padding: 7rem 0 4rem; }
    .hero-cards-col { display: none; }
    .hero-cta-row, .trust-badges { justify-content: center; }
    .about-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-savings-card { left: 0; }
    .home-services-grid { grid-template-columns: 1fr 1fr; }
    .process-banner-inner { grid-template-columns: 1fr; gap: 3rem; }
    .benefits-home-showcase { grid-template-columns: 1fr; }
    .benefits-home-photo img { min-height: 360px; }
    .benefits-home-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-home-grid { grid-template-columns: 1fr 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .stats-ticker { grid-template-columns: repeat(3, 1fr); }
    .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

    /* Inner Pages Responsive */
    .story-layout, .faq-layout, .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
    .mission-layout { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: 1fr; }
    .services-page-grid { grid-template-columns: 1fr; }
    .spg-card { grid-template-columns: 1fr; }
    .spg-media img { height: 220px; min-height: 220px; }
    .benefits-page-grid { grid-template-columns: 1fr 1fr; }
    .products-intro { flex-direction: column; gap: 1.5rem; text-align: center; }
    .products-page-list { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-wrapper { padding: 2rem; }
    .inner-hero-content h1 { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .brand {
        gap: 0.28rem;
    }
    .logo-wrapper {
        width: 70px;
        min-height: 54px;
    }
    .brand-logo {
        width: 70px;
        max-height: 48px;
    }
    .brand-text strong {
        max-width: 150px;
        overflow: hidden;
        font-size: 0.96rem;
        text-overflow: ellipsis;
    }
    .brand-text span {
        display: none;
    }

    .home-services-grid { grid-template-columns: 1fr; }
    .benefits-home-grid { grid-template-columns: 1fr; }
    .benefits-home-photo img { min-height: 280px; }
    .testimonials-home-grid { grid-template-columns: 1fr; }
    .stats-ticker { grid-template-columns: repeat(2, 1fr); }
    .hero-cta-row { flex-direction: column; }
    .hero-cta-row .btn { width: 100%; }

    /* Inner Pages Mobile */
    .benefits-page-grid { grid-template-columns: 1fr; }
    .spg-media img { height: 190px; min-height: 190px; }
    .spg-card-main { padding: 1.25rem; }
    .story-stats-row { grid-template-columns: 1fr; gap: 2rem; }
    .contact-card-media { margin: -2rem -2rem 1.5rem; height: 190px; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { width: 100%; }
}
