/* ===================================
   PROFESSIONAL UK SOLAR SITE DESIGN
   Commercial, Trust-Heavy, Conversion-First
   =================================== */

:root {
    /* Colors - Commercial Energy Theme */
    --navy-dark: #0B1F3F;
    --navy-base: #1A3A5C;
    --navy-light: #2A4A6C;
    
    --green-bright: #00D98E;
    --green-dark: #00B876;
    --green-light: #1AE39D;
    
    --orange-accent: #FF6B35;
    --yellow-star: #FFB800;
    
    --gray-50: #F7F9FB;
    --gray-100: #EEF2F6;
    --gray-200: #DFE4EA;
    --gray-300: #C5CDD6;
    --gray-600: #5A6C7D;
    --gray-700: #3E4C59;
    --gray-800: #2C3A47;
    
    --white: #FFFFFF;
    
    /* Typography - Strong, Geometric */
    --font-heading: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing - Intentional, Not Perfect */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    
    /* Shadows - Realistic Depth */
    --shadow-sm: 0 2px 4px rgba(11, 31, 63, 0.08);
    --shadow-md: 0 4px 12px rgba(11, 31, 63, 0.12);
    --shadow-lg: 0 8px 24px rgba(11, 31, 63, 0.16);
    --shadow-xl: 0 12px 40px rgba(11, 31, 63, 0.2);
}

/* ===================================
   RESET & BASE
   =================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ===================================
   CONTAINERS
   =================================== */

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

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

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

/* ===================================
   TOP BAR
   =================================== */

.top-bar {
    background: var(--navy-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--green-bright);
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.3);
}

.top-bar-phone {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 12px;
    }
    .top-bar-right {
        display: none;
    }
}

/* ===================================
   HEADER
   =================================== */

.header {
    background: var(--white);
    border-bottom: 2px solid var(--gray-200);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(11, 31, 63, 0.06);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.header-badges {
    display: flex;
    gap: 20px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
}

@media (max-width: 768px) {
    .header-badges {
        display: none;
    }
    .logo-name {
        font-size: 18px;
    }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    background: linear-gradient(165deg, #0B1F3F 0%, #1A3A5C 50%, #0F2847 100%);
    padding: 48px 0 64px;
    position: relative;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 142, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

@media (min-width: 992px) {
    .hero {
        padding: 64px 0 80px;
    }
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 60px;
    }
}

.hero-content {
    color: var(--white);
    padding-top: 20px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.eyebrow-badge {
    background: var(--orange-accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 12px;
    border-radius: 4px;
}

.eyebrow-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--green-bright);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-highlight {
    color: var(--green-bright);
    font-size: 52px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    max-width: 520px;
}

.hero-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.hero-trust {
    margin-top: 40px;
}

.trust-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--green-bright);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }
    .hero-highlight {
        font-size: 44px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }
    .hero-highlight {
        font-size: 38px;
    }
    .stat-divider {
        display: none;
    }
}

/* ===================================
   FORM CARD
   =================================== */

.hero-form-wrapper {
    position: relative;
}

.form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--green-bright);
}

.form-header {
    margin-bottom: 28px;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.form-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.progress-container {
    margin-top: 20px;
}

.progress-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green-bright), var(--green-light));
    border-radius: 10px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 25%;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
}

.progress-percent {
    color: var(--green-dark);
}

/* ===================================
   FORM STEPS
   =================================== */

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Option Cards (Step 1) */
.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 12px;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-card:hover {
    border-color: var(--green-bright);
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.option-card.selected {
    border-color: var(--green-bright);
    background: rgba(0, 217, 142, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 217, 142, 0.15);
}

.option-icon {
    color: var(--gray-600);
    transition: color 0.2s ease;
}

.option-card:hover .option-icon,
.option-card.selected .option-icon {
    color: var(--green-bright);
}

.option-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-dark);
    text-align: center;
}

@media (max-width: 576px) {
    .options-grid {
        grid-template-columns: 1fr;
    }
}

/* Option Buttons (Steps 2-3) */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-button {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-dark);
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-button:hover {
    border-color: var(--green-bright);
    background: var(--gray-50);
    transform: translateX(4px);
}

.option-button.selected {
    border-color: var(--green-bright);
    background: rgba(0, 217, 142, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 217, 142, 0.15);
}

.option-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-400);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
}

.option-button.selected .option-radio {
    border-color: var(--green-bright);
    background: var(--green-bright);
}

.option-button.selected .option-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
}

/* Input Fields (Step 4) */
.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.form-input {
    padding: 14px 16px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    color: var(--navy-dark);
    transition: all 0.2s ease;
    font-family: var(--font-body);
}

.form-input::placeholder {
    color: var(--gray-600);
}

.form-input:focus {
    outline: none;
    border-color: var(--green-bright);
    box-shadow: 0 0 0 3px rgba(0, 217, 142, 0.15);
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: #EF4444;
}

@media (max-width: 576px) {
    .input-grid {
        grid-template-columns: 1fr;
    }
}

/* Submit Button */
.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--green-bright) 0%, var(--green-light) 100%);
    color: var(--navy-dark);
    font-size: 17px;
    font-weight: 800;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 217, 142, 0.35);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 217, 142, 0.45);
}

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

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

/* Form Navigation */
.form-nav {
    margin-top: 20px;
}

.back-btn {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: transparent;
    border: none;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.back-btn.visible {
    display: inline-flex;
}

.back-btn:hover {
    color: var(--navy-dark);
    background: var(--gray-100);
    border-radius: 6px;
}

/* Form Trust Badges */
.form-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
}

@media (max-width: 991px) {
    .form-card {
        padding: 28px 24px;
    }
}

/* ===================================
   VOUCHER STRIP
   =================================== */

.voucher-strip {
    background: var(--gray-50);
    padding: 48px 0;
    border-top: 3px solid var(--green-bright);
}

.voucher-header {
    text-align: center;
    margin-bottom: 32px;
}

.voucher-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--navy-dark);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.voucher-subtitle {
    font-size: 16px;
    color: var(--gray-700);
    font-weight: 500;
}

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

.voucher-item {
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 10px;
    padding: 28px 24px;
    text-align: center;
    position: relative;
    transition: all 0.2s ease;
}

.voucher-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.voucher-item.featured {
    border-color: var(--green-bright);
    border-width: 3px;
    background: linear-gradient(135deg, rgba(0, 217, 142, 0.05) 0%, var(--white) 100%);
}

.voucher-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange-accent);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 20px;
}

.voucher-tag {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.voucher-amount {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 900;
    color: var(--green-bright);
    line-height: 1;
    margin-bottom: 12px;
}

.voucher-label {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 6px;
}

.voucher-desc {
    font-size: 13px;
    color: var(--gray-700);
    font-weight: 500;
}

@media (max-width: 768px) {
    .voucher-grid {
        grid-template-columns: 1fr;
    }
    .voucher-title {
        font-size: 24px;
    }
}

/* ===================================
   SECTION HEADERS
   =================================== */

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 900;
    color: var(--navy-dark);
    letter-spacing: -0.8px;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray-700);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
    .section-subtitle {
        font-size: 16px;
    }
}

/* ===================================
   EXAMPLE CASE
   =================================== */

.example-case {
    padding: 48px 0;
    background: var(--white);
}

.example-card {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-base) 100%);
    border-radius: 16px;
    padding: 40px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.example-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 217, 142, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.example-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.example-badge {
    display: inline-block;
    background: var(--orange-accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.example-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.5px;
}

.example-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.example-col {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 24px;
}

.example-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--green-bright);
    margin-bottom: 20px;
}

.example-system h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.example-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.example-specs li {
    font-size: 15px;
    color: var(--white);
    padding-left: 20px;
    position: relative;
}

.example-specs li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--green-bright);
    font-weight: 900;
}

.example-costs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.cost-row.voucher {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cost-row.final {
    padding-top: 16px;
}

.cost-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.cost-value {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
}

.cost-value.original {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
}

.cost-value.discount {
    color: var(--green-bright);
}

.cost-value.final-price {
    font-size: 32px;
    color: var(--green-bright);
}

.example-savings h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.savings-stat {
    text-align: center;
    margin-bottom: 20px;
}

.savings-number {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 900;
    color: var(--green-bright);
    line-height: 1;
    margin-bottom: 4px;
}

.savings-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.savings-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.savings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.savings-item span {
    color: rgba(255, 255, 255, 0.7);
}

.savings-item strong {
    color: var(--white);
    font-weight: 700;
}

.example-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

.example-footer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

@media (max-width: 992px) {
    .example-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .example-card {
        padding: 32px 24px;
    }
    
    .example-title {
        font-size: 24px;
    }
}

/* ===================================
   HOW IT WORKS
   =================================== */

.how-it-works {
    padding: 64px 0;
    background: var(--white);
}

.steps-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 240px;
    max-width: 300px;
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-bright);
    color: var(--navy-dark);
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    border-radius: 12px;
    margin: 0 auto 16px;
    box-shadow: 0 4px 16px rgba(0, 217, 142, 0.3);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.step-text {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.5;
}

.step-arrow {
    font-size: 32px;
    color: var(--green-bright);
    font-weight: 700;
}

@media (max-width: 768px) {
    .step-arrow {
        display: none;
    }
}

/* ===================================
   BENEFITS
   =================================== */

.benefits {
    padding: 64px 0;
    background: var(--gray-50);
}

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

.benefit-box {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.2s ease;
}

.benefit-box:hover {
    border-color: var(--green-bright);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--green-bright);
    line-height: 1;
    margin-bottom: 12px;
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.benefit-text {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   ELIGIBILITY
   =================================== */

.eligibility {
    padding: 64px 0;
    background: var(--white);
}

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

.eligibility-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-left: 4px solid var(--green-bright);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.eligibility-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.eligibility-check {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-bright);
    color: var(--navy-dark);
    font-size: 20px;
    font-weight: 900;
    border-radius: 6px;
}

.eligibility-content h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 4px;
}

.eligibility-content p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .eligibility-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   FAQ
   =================================== */

.faq {
    padding: 64px 0;
    background: var(--gray-50);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: var(--green-bright);
}

.faq-item.active {
    border-color: var(--green-bright);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-dark);
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--gray-600);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--green-bright);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
}

/* ===================================
   FINAL CTA
   =================================== */

.final-cta {
    padding: 64px 0;
    background: var(--white);
}

.cta-box {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-base) 100%);
    border-radius: 16px;
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 217, 142, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--green-bright) 0%, var(--green-light) 100%);
    color: var(--navy-dark);
    font-size: 16px;
    font-weight: 800;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 217, 142, 0.4);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 217, 142, 0.5);
}

@media (max-width: 768px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
    }
    .cta-title {
        font-size: 28px;
    }
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 56px 0 32px;
}

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

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 320px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--green-bright);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

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

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

/* ===================================
   UTILITIES & ANIMATIONS
   =================================== */

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

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* ===================================
   ALTERNATIVE OFFER SCREEN
   =================================== */

.alt-offer-step {
    padding: 20px 0;
}

.alt-offer-header {
    text-align: center;
    margin-bottom: 28px;
}

.alt-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.alt-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.alt-text {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.5;
}

.alt-offer-box {
    background: var(--gray-50);
    border: 2px solid var(--green-bright);
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 24px;
}

.alt-offer-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 16px;
}

.alt-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.alt-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-800);
    line-height: 1.5;
}

.alt-benefits li::before {
    content: "✓";
    color: var(--green-bright);
    font-weight: 900;
    font-size: 18px;
    flex-shrink: 0;
}

.alt-cta {
    margin-top: 24px;
}

.alt-cta-text {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-dark);
    text-align: center;
    margin-bottom: 20px;
}

/* Focus States for Accessibility */
*:focus-visible {
    outline: 3px solid var(--green-bright);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .top-bar,
    .header,
    .hero-form-wrapper,
    .final-cta,
    .footer {
        display: none;
    }
}