/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0066FF;
    --blue-dark: #0052CC;
    --blue-light: #E6F2FF;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --bg-white: #ffffff;
    --bg-gray: #f5f5f5;
    --bg-dark: #2d2d2d;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.prefers-reduced-motion *, .prefers-reduced-motion *::before, .prefers-reduced-motion *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

[data-animate-on-scroll] {
    will-change: opacity, transform;
}

.animations-ready [data-animate-on-scroll] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animations-ready [data-animate-on-scroll].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    background: var(--bg-white);
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
}

.trustpilot-text {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

.stars {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    letter-spacing: 2px;
    color: #00B67A; /* Trustpilot green */
}

.stars span:first-child {
    color: #00B67A; /* Trustpilot green */
}

.rating-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark); /* Keep rating text black */
    letter-spacing: 0;
}

/* Google Reviews Badge */
.google-reviews-badge {
    background-color: var(--bg-white);
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 0;
    position: sticky;
    top: 80px;
    z-index: 99;
}

.google-reviews-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.google-logo {
    width: 80px;
    height: 26px;
    flex-shrink: 0;
}

.google-stars {
    display: flex;
    align-items: center;
}

.google-stars svg {
    width: 120px;
    height: 24px;
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-background-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Solar Elements (Suns and Panels) */
.solar-element {
    position: absolute;
    pointer-events: none;
    filter: blur(0.5px);
    z-index: 0;
}

.solar-element svg {
    width: 100%;
    height: 100%;
}

/* Sun elements */
.sun-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation: float-1 8s ease-in-out infinite;
}

.sun-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 2%;
    animation: float-2 10s ease-in-out infinite;
}

.sun-3 {
    width: 110px;
    height: 110px;
    top: 15%;
    right: 8%;
    animation: float-3 12s ease-in-out infinite;
}

/* Solar panel elements */
.panel-1 {
    width: 100px;
    height: 62px;
    top: 70%;
    right: 5%;
    animation: float-4 9s ease-in-out infinite;
}

.panel-2 {
    width: 90px;
    height: 56px;
    bottom: 10%;
    left: 3%;
    animation: float-5 11s ease-in-out infinite;
}

.panel-3 {
    width: 95px;
    height: 59px;
    bottom: 15%;
    right: 3%;
    animation: float-6 13s ease-in-out infinite;
}

/* Sun icon animations */
.sun-icon {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.sun-core {
    animation: sunGlow-float 4s ease-in-out infinite;
}

.sun-rays {
    animation: sunRotate-float 20s linear infinite;
    transform-origin: center;
}

/* Panel shine effect */
.panel-base {
    animation: panelShine-float 3s ease-in-out infinite;
}


@keyframes float-1 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) translateX(15px) rotate(5deg);
    }
}

@keyframes float-2 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    50% {
        transform: translateY(30px) translateX(-10px) rotate(-5deg);
    }
}

@keyframes float-3 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) translateX(-20px) rotate(3deg);
    }
}

@keyframes float-4 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    50% {
        transform: translateY(20px) translateX(15px) rotate(-2deg);
    }
}

@keyframes float-5 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) translateX(10px) rotate(4deg);
    }
}

@keyframes float-6 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) translateX(-15px) rotate(-3deg);
    }
}

@keyframes sunGlow-float {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes sunRotate-float {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes panelShine-float {
    0%, 100% {
        opacity: 0.6;
        filter: brightness(1);
    }
    50% {
        opacity: 0.8;
        filter: brightness(1.2);
    }
}


.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-top-quiz {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-content.hero-single-column {
    grid-template-columns: 1fr;
    text-align: center;
}

.hero-content.hero-single-column .hero-text {
    max-width: 640px;
    margin: 0 auto;
}

.impact-highlights {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(76, 175, 80, 0.08));
    padding: 60px 0;
}

.impact-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: center;
}

.impact-intro {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.impact-kicker {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.6px;
    color: #0066FF;
}

.impact-headline {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.impact-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.12);
    backdrop-filter: blur(6px);
}

.impact-metric {
    font-size: 40px;
    font-weight: 700;
    color: #0066FF;
    margin-bottom: 8px;
}

.impact-label {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--blue-light);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.hero-badge svg {
    flex-shrink: 0;
}

.hero-headline {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtext {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}


/* Quiz Start Styles (Hero Section) */
.quiz-start-container {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.quiz-start-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-align: center;
}

.quiz-start-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
    text-align: center;
}

.quiz-question-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.3;
}

.quiz-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.quiz-option-card {
    background-color: var(--bg-white);
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.quiz-option-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.15);
}

.quiz-card-image {
    width: 100%;
    height: 100px;
    background-color: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.quiz-card-image svg {
    width: 100%;
    height: 100%;
}

.quiz-card-label {
    background-color: var(--primary-blue);
    color: white;
    padding: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.quiz-option-card:hover .quiz-card-label {
    background-color: var(--blue-dark);
}

/* Quiz Form Styles (Old - keeping for reference) */
.quiz-form-container {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.quiz-form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-align: center;
}

.quiz-form-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 30px;
    text-align: center;
}

.quiz-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

.form-label .optional {
    font-weight: 400;
    color: var(--text-gray);
    font-size: 12px;
}

.form-input {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-dark);
    background-color: var(--bg-white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-input::placeholder {
    color: #999;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 4px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
}

.radio-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: border-color 0.3s ease;
    flex-shrink: 0;
}

.radio-input:checked + .radio-custom {
    border-color: var(--primary-blue);
}

.radio-input:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-blue);
}

.radio-input:focus + .radio-custom {
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.radio-text {
    font-size: 14px;
    color: var(--text-dark);
}

.quiz-submit-button {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 4px;
    font-family: inherit;
    margin-top: 10px;
    width: 100%;
}

.quiz-submit-button:hover {
    background-color: var(--blue-dark);
    transform: translateY(-2px);
}

.quiz-submit-button:active {
    transform: translateY(0);
}

.form-disclaimer {
    font-size: 11px;
    color: var(--text-gray);
    text-align: center;
    line-height: 1.5;
    margin-top: 8px;
}

/* CTA Button */
.cta-button {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 4px;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--blue-dark);
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-large {
    padding: 20px 40px;
    font-size: 16px;
}

/* Why Homeowners Are Switching Section */
.why-section {
    padding: 80px 0;
}

.why-headline {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

/* Two Column Section Layout */
.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.two-column-section.image-left {
    grid-template-columns: 1fr 1.2fr;
}

.two-column-section.image-right {
    grid-template-columns: 1.2fr 1fr;
}

.two-column-section.image-right .column-content {
    order: 1;
}

.two-column-section.image-right .column-image {
    order: 2;
}

.column-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.column-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid #e0e0e0;
}

.section-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.why-card {
    background-color: var(--bg-white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.why-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.why-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.why-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.why-card-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Why Content Wrapper */
.why-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Why List Styles */
.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 40px;
}

.why-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.why-list-item:last-child {
    border-bottom: none;
}

.why-list-item:hover {
    padding-left: 8px;
}

.why-list-item strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    min-width: 200px;
    flex-shrink: 0;
    line-height: 1.4;
}

.why-list-separator {
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-list-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    flex: 1;
}

.why-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-inline {
    display: inline-block;
    text-decoration: none;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-gray);
}

.testimonials-headline {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 600;
}

.testimonials-cta {
    text-align: center;
}

/* Partners Section */
.partners {
    padding: 60px 0;
    text-align: center;
    background-color: var(--bg-gray);
}

.partners-headline {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary-blue);
    font-weight: 700;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 1px;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    position: relative;
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.problem-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
}

.problem-illustration svg {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.problem-card {
    background-color: var(--bg-gray);
    padding: 50px 40px;
    border-radius: 8px;
    margin-left: -40px;
}

.problem-headline {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.problem-card p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.problem-card .cta-button {
    margin-top: 10px;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-illustration svg {
    width: 100%;
    max-width: 350px;
    height: auto;
}

.about-headline {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-text p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: var(--bg-gray);
}

.process-headline {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-steps.process-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background-color: var(--bg-white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.process-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: var(--primary-blue);
}

.process-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}

.process-card-header .step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
}

.process-card-header .step-illustration {
    margin-top: 25px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-card-header .step-illustration svg {
    width: 100%;
    max-width: 180px;
    height: auto;
}

.process-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.process-card-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Legacy styles for backwards compatibility */
.process-step {
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-illustration {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-illustration svg {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.step-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 20px;
}

.process-cta {
    text-align: center;
    margin-top: 50px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-headline {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background-color: var(--blue-light);
    padding: 30px;
    border-radius: 8px;
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.faq-answer {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    text-align: center;
}

.final-cta .cta-button {
    margin-bottom: 30px;
}

.urgency-section {
    background-color: var(--bg-gray);
}

.urgency-headline {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.urgency-text {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.easy-text {
    font-size: 32px;
    font-weight: 400;
    font-style: italic;
    color: var(--text-dark);
    margin: 30px 0;
    font-family: 'Georgia', serif;
}

.final-illustration {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.final-illustration svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Footer */
.footer {
    background-color: var(--bg-white);
    padding: 60px 0 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-left .logo {
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-middle {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-blue);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-right svg {
    color: var(--text-dark);
}

.footer-email {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: var(--primary-blue);
}

/* Mobile Responsive Styles */
@media (max-width: 968px) {
    .hero-content,
    .problem-content,
    .about-content,
    .two-column-section {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .impact-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-card {
        padding: 24px;
    }

    .two-column-section.image-left,
    .two-column-section.image-right {
        grid-template-columns: 1fr;
    }

    .two-column-section.image-right .column-content,
    .two-column-section.image-right .column-image {
        order: initial;
    }

    .why-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .why-list-item {
        flex-direction: column;
        gap: 12px;
        padding: 20px 0;
    }

    .why-list-item strong {
        min-width: auto;
        font-size: 17px;
    }

    .why-list-separator {
        display: none;
    }

    .hero-badge {
        font-size: 13px;
        padding: 6px 14px;
    }

    .hero-headline {
        font-size: 36px;
    }

    .problem-card {
        margin-left: 0;
    }

    .process-steps,
    .process-steps.process-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .quiz-form-container {
        padding: 30px 24px;
        max-width: 100%;
    }

    .quiz-form-title {
        font-size: 22px;
    }

    .two-column-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .two-column-section.image-left .column-image,
    .two-column-section.image-right .column-image {
        order: 1;
    }

    .two-column-section.image-left .column-content,
    .two-column-section.image-right .column-content {
        order: 2;
    }

    .quiz-start-container {
        padding: 30px 24px;
        max-width: 100%;
    }

    .quiz-start-title {
        font-size: 20px;
    }

    .quiz-question-text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .quiz-options-grid {
        gap: 10px;
    }

    .quiz-card-image {
        display: none;
    }

    .quiz-card-label {
        padding: 10px;
        font-size: 13px;
    }

    .radio-group {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .impact-highlights {
        padding: 40px 0;
    }

    .impact-headline {
        font-size: 22px;
    }

    .impact-card {
        padding: 20px;
    }

    .impact-metric {
        font-size: 32px;
    }

    .header {
        padding: 15px 0;
    }

    .logo-text {
        font-size: 16px;
    }

    .hero {
        padding: 80px 0 200px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .hero-content {
        gap: 20px;
        margin-top: 100px; /* Push text content well below the fold */
    }

    .hero-top-quiz {
        margin-top: 40px;
        margin-bottom: 120px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 16px;
    }

    .hero-badge svg {
        width: 14px;
        height: 14px;
    }

    .hero-headline {
        font-size: 28px;
    }

    .hero-subtext {
        font-size: 16px;
    }

    .partners,
    .problem-section,
    .about-section,
    .process-section,
    .faq-section,
    .final-cta,
    .why-section,
    .testimonials-section {
        padding: 60px 0;
    }

    .partners-headline,
    .problem-headline,
    .about-headline,
    .process-headline,
    .why-headline,
    .testimonials-headline,
    .urgency-headline,
    .faq-headline {
        font-size: 28px;
    }

    .problem-card {
        padding: 30px 24px;
    }

    .partner-logos {
        gap: 30px;
        flex-direction: column;
    }

    .partner-logo {
        font-size: 20px;
    }

    .cta-button {
        width: 100%;
        padding: 14px 24px;
    }

    .easy-text {
        font-size: 24px;
    }

    .quiz-form-container {
        padding: 24px 20px;
    }

    .quiz-form-title {
        font-size: 20px;
    }

    .quiz-form-subtitle {
        font-size: 13px;
    }

    .quiz-start-container {
        padding: 24px 20px;
    }

    .quiz-start-title {
        font-size: 18px;
    }

    .quiz-start-subtitle {
        font-size: 13px;
    }

    .google-reviews-badge {
        padding: 10px 0;
        top: 70px;
    }

    .google-reviews-content {
        gap: 8px;
    }

    .google-logo {
        width: 60px;
        height: 20px;
    }

    .google-stars svg {
        width: 100px;
        height: 20px;
    }

    .quiz-options-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .quiz-card-image {
        display: none;
    }

    .quiz-card-label {
        padding: 12px;
        font-size: 14px;
    }

    .quiz-start-container {
        padding: 20px 16px;
    }

    .quiz-start-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .quiz-start-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .quiz-question-text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .form-group {
        gap: 6px;
    }

    .form-input {
        padding: 10px 14px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Make solar elements smaller on mobile - less distracting */
    .solar-element {
        opacity: 0.6 !important; /* Reduce opacity on mobile */
        filter: blur(1px);
    }
    
    .sun-1 {
        width: 60px;
        height: 60px;
    }
    
    .sun-2 {
        width: 50px;
        height: 50px;
    }
    
    .sun-3 {
        width: 55px;
        height: 55px;
    }
    
    .panel-1 {
        width: 50px;
        height: 31px;
    }
    
    .panel-2 {
        width: 45px;
        height: 28px;
    }
    
    .panel-3 {
        width: 48px;
        height: 30px;
    }
    
    
    /* Reduce animation intensity on mobile for better performance */
    .sun-rays,
    .sun-rays-animated,
    .sun-rays-final {
        animation-duration: 40s;
    }
    
    .particle-float,
    .energy-bubble,
    .sparkle {
        animation-duration: 4s;
    }
}

/* Performance Optimizations */
img, svg {
    max-width: 100%;
    height: auto;
}

/* Critical above-the-fold optimizations */
.header,
.hero {
    will-change: transform;
}

/* GPU acceleration for animated elements */
.sun-glow,
.sun-rays,
.sun-main,
.solar-panel,
.energy-flow,
.weight-pulse,
.lightning,
.trophy-glow,
.panel-shine,
.star-twinkle,
.particle-float,
.panel-float,
.energy-bubble,
.sparkle {
    will-change: transform, opacity, filter;
    transform: translateZ(0);
}

/* Optimize SVG rendering - balance between quality and performance */
svg {
    shape-rendering: geometricPrecision;
}

/* Ensure SVG text is readable */
svg text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: bold;
}

.hero-illustration svg,
.problem-illustration svg,
.about-illustration svg,
.step-illustration svg,
.final-illustration svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Reduce repaints on scroll */
.header {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Disable CSS animations when JS animations are enabled */
.js-animations-enabled .sun-glow,
.js-animations-enabled .sun-rays,
.js-animations-enabled .sun-main,
.js-animations-enabled .solar-panel,
.js-animations-enabled .energy-flow,
.js-animations-enabled .weight-pulse,
.js-animations-enabled .lightning,
.js-animations-enabled .trophy-glow,
.js-animations-enabled .panel-shine,
.js-animations-enabled .star-twinkle,
.js-animations-enabled .chart-rise,
.js-animations-enabled .particle-float,
.js-animations-enabled .panel-float,
.js-animations-enabled .checkmark-draw,
.js-animations-enabled .energy-bubble,
.js-animations-enabled .sparkle,
.js-animations-enabled .sun-final,
.js-animations-enabled .sun-rays-final,
.js-animations-enabled .roof-panel {
    animation: none !important;
}

.js-animations-enabled .sun-rays,
.js-animations-enabled .sun-rays-animated,
.js-animations-enabled .sun-rays-final {
    transform-origin: center;
}

.js-animations-enabled .solar-element {
    animation: none !important;
}

.js-animations-enabled .sun-core,
.js-animations-enabled .sun-rays,
.js-animations-enabled .panel-base {
    animation: none !important;
}

/* Energy particles styling */
.energy-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, #0066FF 0%, rgba(0, 102, 255, 0.3) 70%, transparent 100%);
    box-shadow: 0 0 6px rgba(0, 102, 255, 0.6);
    transition: opacity 0.3s ease;
}

/* Smooth animations only on non-reduced-motion */
@media (prefers-reduced-motion: no-preference) {
    .cta-button {
        transition: background-color 0.3s ease, transform 0.2s ease;
    }
    
    /* Logo animations */
    .sun-glow {
        animation: sunGlow 3s ease-in-out infinite;
    }
    
    .sun-rays {
        animation: sunRotate 20s linear infinite;
        transform-origin: 30px 30px;
    }
    
    /* Hero section animations */
    .sun-main {
        animation: sunPulse 4s ease-in-out infinite;
    }
    
    .sun-rays-animated {
        animation: sunRotateLarge 25s linear infinite;
        transform-origin: 200px 80px;
    }
    
    .solar-panel {
        animation: panelShine 3s ease-in-out infinite;
    }
    
    .energy-flow {
        animation: energyFlow 2s ease-in-out infinite;
        stroke-dasharray: 5 5;
    }
    
    /* Problem section animations */
    .weight-pulse {
        animation: weightPulse 2s ease-in-out infinite;
        transform-origin: 150px 210px;
    }
    
    .lightning {
        animation: lightningFlash 3s ease-in-out infinite;
        opacity: 0.7;
    }
    
    .burden-arrow {
        animation: arrowMove 2s ease-in-out infinite;
    }
    
    /* About section animations */
    .trophy-glow {
        animation: trophyGlow 2s ease-in-out infinite;
    }
    
    .panel-shine {
        animation: panelShine 4s ease-in-out infinite;
    }
    
    .star-twinkle {
        animation: starTwinkle 2s ease-in-out infinite;
        transform-origin: center;
    }
    
    .chart-rise {
        animation: chartRise 3s ease-in-out infinite;
        stroke-dasharray: 100;
        stroke-dashoffset: 100;
    }
    
    /* Process step animations */
    .sun-pulse {
        animation: sunPulse 3s ease-in-out infinite;
    }
    
    .particle-float {
        animation: particleFloat 3s ease-in-out infinite;
    }
    
    .panel-float {
        animation: panelFloat 4s ease-in-out infinite;
    }
    
    .search-ray {
        animation: searchRay 2s ease-in-out infinite;
    }
    
    .checkmark-draw {
        animation: checkmarkDraw 2s ease-in-out infinite;
        stroke-dasharray: 50;
        stroke-dashoffset: 50;
    }
    
    .energy-bubble {
        animation: energyBubble 3s ease-in-out infinite;
    }
    
    .sparkle {
        animation: sparkle 2s ease-in-out infinite;
        transform-origin: center;
    }
    
    /* Final section animations */
    .sun-final {
        animation: sunPulse 4s ease-in-out infinite;
    }
    
    .sun-rays-final {
        animation: sunRotateLarge 30s linear infinite;
        transform-origin: 200px 50px;
    }
    
    .roof-panel {
        animation: panelShine 5s ease-in-out infinite;
    }
    
    /* Fade in on scroll */
    .hero-illustration,
    .problem-illustration,
    .about-illustration,
    .step-illustration,
    .final-illustration {
        animation: fadeInUp 1s ease-out;
    }
    
    .process-step:nth-child(1) .step-illustration {
        animation-delay: 0.1s;
    }
    
    .process-step:nth-child(2) .step-illustration {
        animation-delay: 0.3s;
    }
    
    .process-step:nth-child(3) .step-illustration {
        animation-delay: 0.5s;
    }
}

/* Keyframe Animations */
@keyframes sunGlow {
    0%, 100% { opacity: 0.9; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes sunRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes sunRotateLarge {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes sunPulse {
    0%, 100% { 
        opacity: 0.9; 
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
    }
    50% { 
        opacity: 1; 
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.9));
    }
}

@keyframes panelShine {
    0%, 100% { opacity: 0.7; filter: brightness(1); }
    50% { opacity: 1; filter: brightness(1.3); }
}

@keyframes energyFlow {
    0% { stroke-dashoffset: 0; opacity: 0.6; }
    50% { opacity: 1; }
    100% { stroke-dashoffset: -20; opacity: 0.6; }
}

@keyframes weightPulse {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.05) translateY(-3px); }
}

@keyframes lightningFlash {
    0%, 90%, 100% { opacity: 0.3; }
    5%, 15% { opacity: 1; }
}

@keyframes arrowMove {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(5px); opacity: 1; }
}

@keyframes trophyGlow {
    0%, 100% { 
        opacity: 0.9; 
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    }
    50% { 
        opacity: 1; 
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.9));
    }
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.7; transform: scale(1) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

@keyframes chartRise {
    0% { stroke-dashoffset: 100; opacity: 0; }
    50% { opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.8; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

@keyframes panelFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes searchRay {
    0%, 100% { opacity: 0.3; stroke-dashoffset: 0; }
    50% { opacity: 1; stroke-dashoffset: -10; }
}

@keyframes checkmarkDraw {
    0% { stroke-dashoffset: 50; opacity: 0; }
    50% { opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes energyBubble {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
    50% { transform: translateY(-15px) scale(1.3); opacity: 1; }
}

@keyframes sparkle {
    0%, 100% { opacity: 0.6; transform: scale(1) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.3) rotate(180deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

