/*
 * Solar Assessment – Frontend CSS
 * Version: 2.0.1 | Author: EMPIREX Tech | empirex.tech
 * Mobile-first, premium gradient design system.
 * Max-width 900px, large typography, high-contrast CTAs.
 */

/* ── Google Font ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Design Tokens ───────────────────────────────────────────────── */
:root {
    --sa-green:        #1F6F5C;
    --sa-green-dark:   #155446;
    --sa-green-light:  #26906F;
    --sa-accent:       #4ADE80;
    --sa-accent-glow:  rgba(74, 222, 128, 0.25);
    --sa-navy:         #060D17;
    --sa-navy-mid:     #0D1B2E;
    --sa-white:        #ffffff;
    --sa-off-white:    #F8FAFB;
    --sa-light:        #EEF4F2;
    --sa-border:       #DDE8E4;
    --sa-text:         #0f172a;
    --sa-muted:        #64748b;
    --sa-radius:       14px;
    --sa-radius-sm:    8px;
    --sa-shadow:       0 4px 24px rgba(0,0,0,0.08);
    --sa-shadow-lg:    0 12px 48px rgba(0,0,0,0.14);
    --sa-font:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --sa-gradient:     linear-gradient(135deg, #1F6F5C 0%, #0D4D3C 50%, #060D17 100%);
    --sa-gradient-btn: linear-gradient(135deg, #26906F 0%, #1F6F5C 100%);
    --sa-transition:   all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ────────────────────────────────────────────────── */
.sa-lp * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.sa-lp {
    font-family: var(--sa-font);
    color: var(--sa-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── Layout Container ────────────────────────────────────────────── */
.sa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ═══════════════════════════════════════════════════════════════════
   1. HERO SECTION
═══════════════════════════════════════════════════════════════════ */
.sa-hero-section {
    /* Hero background: London solar house photo + dark green gradient overlay */
    background:
        linear-gradient(
            135deg,
            rgba(6, 13, 23, 0.82) 0%,
            rgba(21, 84, 70, 0.72) 50%,
            rgba(6, 13, 23, 0.88) 100%
        ),
        url('../img/hero-bg.jpg') center/cover no-repeat;
    padding: 0 0 72px;
    position: relative;
    overflow: hidden;
}

/* Subtle bottom vignette */
.sa-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 0%, rgba(74,222,128,0.07) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 100%, rgba(31,111,92,0.15) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.sa-hero-section > * { position: relative; z-index: 1; }

/* ── Animated Energy Line ── */
.sa-energy-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 3px;
    background: linear-gradient(
        90deg,
        rgba(38,144,111,0) 0%,
        rgba(38,144,111,0.8) 25%,
        rgba(74,222,128,1) 50%,
        rgba(38,144,111,0.8) 75%,
        rgba(38,144,111,0) 100%
    );
    z-index: 2;
    animation: saEnergyFlow 4s linear infinite;
    box-shadow: 0 -2px 10px rgba(74,222,128,0.4);
}

@keyframes saEnergyFlow {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}




/* ── Top bar: logo + phone ── */
.sa-top-bar {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 52px;
}

.sa-top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sa-top-logo { display: inline-flex; align-items: center; }
.sa-top-logo img { height: 34px; width: auto; display: block; }

.sa-top-phone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    opacity: 0.95;
    transition: opacity 0.2s;
}
.sa-top-phone:hover { opacity: 1; color: #4ADE80 !important; }
.sa-top-phone svg   { flex-shrink: 0; stroke: #ffffff; }


@media (max-width: 768px) {
    .sa-top-bar { padding: 16px 0; margin-bottom: 32px; }
    .sa-top-bar-inner {
        flex-direction: column;
        justify-content: center;
        gap: 12px;
    }
    .sa-top-logo img { height: 30px; }
    .sa-top-phone { font-size: 15px; justify-content: center; }
}


/* Subtle radial glow behind the headline */
.sa-hero-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.sa-hero-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(31, 111, 92, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

/* Two-column grid: copy left, form right (form gets slightly more space) */
.sa-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.12fr;
    gap: 44px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* ── Badge ── */
.sa-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: var(--sa-accent);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.sa-hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--sa-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--sa-accent);
    animation: saPulse 2.2s infinite;
}

@keyframes saPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.55; transform: scale(0.85); }
}

/* ── Headline ── */
.sa-hero-h1 {
    font-size: clamp(32px, 5vw, 52px) !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    line-height: 1.15 !important;
    letter-spacing: -1px !important;
    margin-bottom: 20px !important;
}

.sa-hero-h1 strong,
.sa-lp .sa-hero-h1 strong {
    color: #4ADE80 !important;
    font-style: normal !important;
}

.sa-hero-sub {
    font-size: 17px !important;
    color: rgba(255,255,255,0.85) !important;
    line-height: 1.6 !important;
    margin-bottom: 30px !important;
    font-weight: 400 !important;
    max-width: 90%;
}

/* ── Trust bullets ── */
.sa-trust-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.sa-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: rgba(255,255,255,0.88) !important;
}

.sa-trust-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: #4ADE80;
    border-radius: 50%;
    flex-shrink: 0;
    color: #055C40 !important;
}


/* ═══════════════════════════════════════════════════════════════════
   MULTI-STEP FORM CARD — transparent glass, fixed height
═══════════════════════════════════════════════════════════════════ */
.sa-form-card {
    background: rgba(10, 25, 40, 0.55) !important;
    backdrop-filter: blur(10px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-radius: 16px !important;
    padding: 24px 24px 20px !important;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35), 0 4px 16px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #fff;
}

/* Form Header */
.sa-form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sa-form-header svg {
    color: #ffffff;
    flex-shrink: 0;
}

.sa-form-header h3 {
    color: #ffffff !important;
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
    font-family: var(--sa-font);
}

/* Progress bar */
.sa-progress-wrap {
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.3);
}

.sa-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4ADE80 0%, #10B981 100%);
    border-radius: 100px;
    box-shadow: 0 0 12px rgba(74,222,128,0.8), 0 0 4px rgba(74,222,128,0.4);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sa-progress-label {
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 2px !important;
    color: #4ADE80 !important;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-shadow: 0 0 10px rgba(74,222,128,0.4);
}

/* Form step wrapper */
.sa-step { animation: saFadeIn 0.28s ease; }

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

.sa-step-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}

.sa-step-title {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 4px;
    line-height: 1.3 !important;
}

.sa-step-desc {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.45) !important;
    margin-bottom: 14px;
}

/* Text inputs — ghost style on dark */
.sa-field {
    display: block;
    width: 100%;
    padding: 11px 14px !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-family: var(--sa-font);
    outline: none;
    background: rgba(255,255,255,0.05) !important;
    color: #fff !important;
    transition: var(--sa-transition);
    margin-bottom: 10px;
}

.sa-field:focus {
    border-color: #4ADE80 !important;
    background: rgba(255,255,255,0.09) !important;
    box-shadow: 0 0 0 3px rgba(74,222,128,0.12);
}

.sa-field::placeholder { color: rgba(255,255,255,0.3) !important; }


.sa-field-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Choice buttons (homeowner + property) — dark style */
.sa-choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px;
}

.sa-choice-grid-4 { grid-template-columns: 1fr 1fr; }

.sa-choice-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 8px;
    border: 1px solid rgba(255,255,255,0.14) !important;
    border-radius: 8px !important;
    background: rgba(255,255,255,0.04) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    font-family: var(--sa-font);
    color: rgba(255,255,255,0.8) !important;
    cursor: pointer;
    transition: var(--sa-transition);
    text-align: center;
}

.sa-choice-btn:hover {
    border-color: rgba(74,222,128,0.4) !important;
    background: rgba(74,222,128,0.07) !important;
    color: #fff !important;
}

.sa-choice-btn.sa-choice-active {
    border-color: #4ADE80 !important;
    background: rgba(74,222,128,0.14) !important;
    color: #4ADE80 !important;
    box-shadow: 0 0 0 1px rgba(74,222,128,0.25);
}


/* Primary continue / submit buttons — override WP themes */
.sa-form-card .sa-btn-next,
.sa-form-card .sa-btn-submit,
.sa-form-card button.sa-btn-next,
.sa-form-card button.sa-btn-submit,
.sa-form-card a.sa-btn-next {
    appearance: none !important;
    -webkit-appearance: none !important;
    display: block !important;
    width: 100% !important;
    padding: 13px 24px !important;
    background: linear-gradient(135deg, #26906F 0%, #1F6F5C 100%) !important;
    background-color: #1F6F5C !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    font-family: var(--sa-font) !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    text-decoration: none !important;
    text-align: center !important;
    margin-top: 10px !important;
    box-shadow: 0 4px 14px rgba(31,111,92,0.4) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    line-height: 1.2 !important;
    height: auto !important;
    text-shadow: none !important;
}

.sa-form-card .sa-btn-next:hover,
.sa-form-card .sa-btn-submit:hover,
.sa-form-card button.sa-btn-next:hover,
.sa-form-card button.sa-btn-submit:hover,
.sa-form-card a.sa-btn-next:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(31,111,92,0.5) !important;
    color: #fff !important;
}

/* Remove the ::after pseudo used by old style */
.sa-btn-next::after,
.sa-btn-submit::after { display: none !important; }

/* Submit variant: slightly larger */
.sa-form-card .sa-btn-submit { padding: 14px 24px !important; }

/* Step icon — hide completely (emojis removed) */
.sa-step-icon,
.sa-thanks-icon { display: none !important; }

/* Privacy note */
.sa-privacy-note {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.35) !important;
    text-align: center;
    margin-top: 10px;
}


/* Thank-you screen */
.sa-thanks-icon {
    font-size: 48px;
    display: block;
    text-align: center;
    margin-bottom: 14px;
    animation: saFadeIn 0.4s ease;
}

.sa-thanks-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--sa-text);
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.35;
}

.sa-thanks-body {
    font-size: 14px;
    color: var(--sa-muted);
    text-align: center;
    margin-bottom: 18px;
    line-height: 1.6;
}

.sa-thanks-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sa-thanks-list li {
    font-size: 13px;
    font-weight: 600;
    color: var(--sa-green);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sa-thanks-phone {
    background: var(--sa-light);
    border: 1px solid var(--sa-border);
    border-radius: var(--sa-radius-sm);
    padding: 14px 18px;
    text-align: center;
    font-size: 14px;
    color: var(--sa-muted);
}

.sa-thanks-phone a {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: var(--sa-green);
    text-decoration: none;
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════════
   2. SOCIAL PROOF STRIP
═══════════════════════════════════════════════════════════════════ */
.sa-social-proof-section {
    background: var(--sa-white);
    padding: 32px 0;
    border-bottom: 1px solid var(--sa-border);
}

.sa-sp-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 30px;
    text-align: center;
}

@media (max-width: 768px) {
    .sa-sp-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.sa-sp-stars {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.sa-sp-stars-row {
    font-size: 22px;
    letter-spacing: 3px;
    color: #F59E0B;
}

.sa-sp-stars-text {
    font-size: 15px;
    font-weight: 800;
    color: var(--sa-text);
}

.sa-sp-stars-sub {
    font-size: 13px;
    color: var(--sa-muted);
}

.sa-sp-divider {
    display: none; /* Removed dividers for cleaner grid look */
}

.sa-sp-stat {
    font-size: 16px;
    font-weight: 700;
    color: var(--sa-text);
    padding: 0 15px;
    border-left: 1px solid var(--sa-border);
    border-right: 1px solid var(--sa-border);
}

@media (max-width: 768px) {
    .sa-sp-stat {
        border-left: none;
        border-right: none;
        padding: 15px 0;
        border-top: 1px solid var(--sa-border);
        border-bottom: 1px solid var(--sa-border);
    }
}

.sa-sp-stat span {
    color: var(--sa-green);
    font-size: 24px;
    font-weight: 900;
    display: block;
    margin-bottom: 4px;
}

.sa-sp-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sa-sp-phone-label {
    font-size: 13px;
    color: var(--sa-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.sa-sp-phone a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 900;
    color: var(--sa-green-light);
    text-decoration: none;
    background: rgba(38,144,111,0.08);
    padding: 10px 24px;
    border-radius: 50px;
    transition: var(--sa-transition);
}

.sa-sp-phone a:hover {
    background: rgba(38,144,111,0.15);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════
   3. HOW IT WORKS
═══════════════════════════════════════════════════════════════════ */
.sa-hiw-section {
    background: var(--sa-off-white);
    padding: 64px 0;
    border-top: 1px solid var(--sa-border);
    border-bottom: 1px solid var(--sa-border);
}

.sa-section-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sa-green);
    margin-bottom: 10px;
    display: block;
}

.sa-section-heading {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 900;
    color: #000000 !important;
    text-align: center;
    line-height: 1.25;
    margin-bottom: 48px;
    letter-spacing: -0.3px;
}

.sa-hiw-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

@media (max-width: 900px) {
    .sa-hiw-grid {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
}

.sa-hiw-card {
    text-align: center;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.sa-hiw-card:hover {
    transform: translateY(-4px);
}

.sa-hiw-card:active {
    transform: scale(0.96);
}

.sa-hiw-icon-wrapper {
    position: relative;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sa-hiw-icon-outer {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px dashed rgba(31,111,92,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sa-hiw-card:hover .sa-hiw-icon-outer {
    border-color: rgba(74,222,128,0.7);
    background: rgba(74,222,128,0.03);
    box-shadow: 0 0 30px rgba(74,222,128,0.15);
}

.sa-hiw-card:active .sa-hiw-icon-outer {
    border-color: var(--sa-green);
    box-shadow: 0 0 15px rgba(74,222,128,0.3);
}

.sa-hiw-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: #F4FBF9;
    box-shadow: 0 10px 30px rgba(31,111,92,0.06);
    border-radius: 50%;
    color: var(--sa-green);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sa-hiw-card:hover .sa-hiw-icon {
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(31,111,92,0.12);
}

.sa-hiw-card:active .sa-hiw-icon {
    transform: scale(0.95);
    box-shadow: 0 5px 15px rgba(31,111,92,0.1);
}

.sa-hiw-icon svg {
    width: 44px;
    height: 44px;
}

.sa-hiw-num {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 28px;
    height: 28px;
    background: #F4FBF9;
    color: var(--sa-navy);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    z-index: 3;
}

.sa-hiw-title {
    font-size: 19px;
    font-weight: 800;
    color: var(--sa-navy);
    margin-bottom: 12px;
    letter-spacing: -0.4px;
}

.sa-hiw-desc {
    font-size: 14px;
    color: var(--sa-muted);
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}

.sa-hiw-arrow {
    flex-shrink: 0;
    width: 120px;
    margin-top: 50px; /* Align with center of the icons */
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 900px) {
    .sa-hiw-arrow {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   4. SAVINGS POWER SECTION (Animated 3D Grid)
═══════════════════════════════════════════════════════════════════ */
.sa-savings-section {
    background: var(--sa-gradient);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

/* The Animated 3D Energy Grid */
.sa-savings-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(rgba(74,222,128,0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74,222,128,0.2) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: rotateX(65deg) translateY(0);
    animation: saGridMove 10s linear infinite;
    z-index: 0;
}

/* Cinematic Dark Vignette over the grid */
.sa-savings-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 10%, transparent 20%, #060D17 90%);
    z-index: 1;
    pointer-events: none;
}

@keyframes saGridMove {
    0%   { transform: rotateX(65deg) translateY(0); }
    100% { transform: rotateX(65deg) translateY(60px); }
}

.sa-savings-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.elementor-kit-14961 h2 {
    color: #fff;
    font-family: var(--e-global-typography-c397194-font-family), Sans-serif;
    font-size: var(--e-global-typography-c397194-font-size);
    font-weight: var(--e-global-typography-c397194-font-weight);
    text-transform: var(--e-global-typography-c397194-text-transform);
    line-height: var(--e-global-typography-c397194-line-height);
}

.sa-savings-headline {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 900;
    color: #ffffff !important;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.sa-savings-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.68);
    margin-bottom: 36px;
    line-height: 1.6;
}

.sa-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white !important;
    padding: 16px 36px;
    background: transparent;
    border: 2px solid white !important;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.sa-btn-cta:hover {
    background-color: #1f6f5c;
    border-color: #1f6f5c !important;
    color: white !important;
    transform: none;
}

/* ═══════════════════════════════════════════════════════════════════
   5. REAL RESULT BLOCK
═══════════════════════════════════════════════════════════════════ */
.sa-real-result-section {
    background: var(--sa-off-white);
    padding: 42px 0;
    border-top: 1px solid var(--sa-border);
}

.sa-rr-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Slider Container and Track */
.sa-rr-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 0;
}

.sa-rr-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.sa-rr-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 10px; /* Small gap between slides if visible */
    box-sizing: border-box;
}

.sa-rr-card {
    background: #ffffff;
    border: 1px solid rgba(21, 84, 70, 0.08);
    border-radius: 16px;
    padding: 36px 48px;
    margin-bottom: 24px;
    box-shadow: 0 20px 40px rgba(31, 111, 92, 0.04), 0 4px 12px rgba(0, 0, 0, 0.02);
    position: relative;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.sa-rr-card:hover {
    box-shadow: 0 30px 60px rgba(31, 111, 92, 0.06), 0 8px 24px rgba(0, 0, 0, 0.03);
}

.sa-rr-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(74, 222, 128, 0.1);
    color: var(--sa-green);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.sa-rr-verified-badge svg {
    color: #4ADE80;
}

.sa-rr-stat {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 900;
    color: #000000;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.sa-rr-stat .sa-color-main {
    color: var(--sa-green);
}

.sa-rr-stat-sub {
    font-size: 15px;
    font-weight: 500;
    color: var(--sa-muted);
}

.sa-rr-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(31,111,92,0.1), transparent);
    margin: 32px 0;
}

.sa-rr-quote {
    font-size: 19px;
    font-weight: 600;
    color: var(--sa-text);
    line-height: 1.4;
    margin-bottom: 24px;
    font-style: italic;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 0 0 0 40px; /* Padding only on the left for the SVG */
}

.sa-quote-icon {
    position: absolute;
    left: 0;
    top: -4px;
    width: 26px;
    height: 26px;
    color: rgba(74, 222, 128, 0.25);
}

.sa-rr-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sa-rr-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sa-off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sa-muted);
}

.sa-rr-author-info {
    text-align: left;
}

.sa-rr-author-info strong {
    display: block;
    font-size: 14px;
    color: var(--sa-text);
    font-weight: 700;
}

.sa-rr-author-info span {
    display: block;
    font-size: 12px;
    color: var(--sa-muted);
}

/* Slider Dots */
.sa-rr-slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.sa-rr-dot {
    width: 60px;
    height: 6px;
    border-radius: 100px;
    background: rgba(31, 111, 92, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sa-rr-dot:hover {
    background: rgba(31, 111, 92, 0.4);
}

.sa-rr-dot.active {
    background: var(--sa-green);
}

/* ═══════════════════════════════════════════════════════════════════
   6. WARRANTY STRIP
═══════════════════════════════════════════════════════════════════ */
.sa-warranty-section {
    background: var(--sa-white);
    padding: 72px 0;
    border-top: 1px solid var(--sa-border);
}

.sa-warranty-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 900px) {
    .sa-warranty-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .sa-warranty-wrapper .sa-section-heading {
        margin: 0 auto;
        text-align: center !important;
    }
    .sa-warranty-wrapper .sa-hero-badge {
        margin: 0 auto 20px;
    }
}

.sa-warranty-left .sa-section-heading {
    margin-bottom: 0;
}

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

@media (max-width: 600px) {
    .sa-warranty-grid {
        grid-template-columns: 1fr;
    }
}

.sa-warranty-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--sa-off-white);
    border: 1px solid var(--sa-border);
    border-radius: 12px;
    padding: 20px 24px;
    transition: all 0.3s ease;
}

.sa-warranty-item:hover {
    border-color: rgba(31,111,92,0.3);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(31,111,92,0.06);
    transform: translateY(-2px);
}

.sa-warranty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(74, 222, 128, 0.1);
    color: var(--sa-green);
    flex-shrink: 0;
}

.sa-warranty-icon svg {
    width: 24px;
    height: 24px;
}

.sa-warranty-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--sa-text);
    line-height: 1.35;
    text-align: left;
}

.sa-warranty-text span {
    display: block;
    font-size: 16px;
    color: var(--sa-green);
    font-weight: 800;
    margin-top: 4px;
}

.sa-warranty-text span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--sa-muted);
    margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════════════
   7. FINAL PUSH
═══════════════════════════════════════════════════════════════════ */
.sa-final-push-section {
    background: linear-gradient(135deg, #071426 0%, #0B1F3B 30%, #123C4A 65%, #1F6F5C 100%);
    padding: 80px 0 60px;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.sa-final-push-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.sa-fp-headline {
    font-size: clamp(32px, 4.5vw, 46px);
    font-weight: 900;
    color: #ffffff !important;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.sa-fp-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

.sa-fp-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.sa-btn-fp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background: var(--sa-green);
    color: white !important;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--sa-font);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.sa-btn-fp:hover {
    background: transparent;
    border-color: #ffffff;
    color: white !important;
}

.sa-fp-urgency {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin: 0;
}

/* Footer Copyright */
.sa-lp-footer {
    background: #060e0a;
    padding: 24px 0;
    text-align: center;
}

.sa-lp-footer p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER SECTION
═══════════════════════════════════════════════════════════════════ */
.si-footer {
    background: #0b1a15;
    border-top: 2px solid var(--sa-green);
    padding: 50px 0 30px;
    color: rgba(255,255,255,0.75);
    font-family: var(--sa-font);
}

.si-footer-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.si-footer-logo-link { display: inline-block; margin-bottom: 14px; }
.si-footer-logo { height: 30px; width: auto; display: block; }

.si-footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin: 0;
}

.si-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.si-footer-phone,
.si-footer-email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.si-footer-phone:hover,
.si-footer-email:hover { color: var(--sa-accent); }

.si-footer-phone svg,
.si-footer-email svg { flex-shrink: 0; color: var(--sa-green); }

.si-footer-copy { text-align: right; }

.si-footer-copy p {
    margin: 0 0 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
}

.si-footer-disclaimer {
    font-size: 11px !important;
    color: rgba(255,255,255,0.3) !important;
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Hero: stack columns */
    .sa-hero-section { padding: 44px 0 56px; }
    .sa-hero-grid    { grid-template-columns: 1fr; gap: 32px; }

    /* HIW: 1 column */
    .sa-hiw-grid { grid-template-columns: 1fr; gap: 20px; }

    /* Warranty: 1 column */
    .sa-warranty-grid { grid-template-columns: 1fr; }

    /* Full-width choice grids on narrow screens */
    .sa-choice-grid, .sa-choice-grid-4 { grid-template-columns: 1fr; }

    /* Name fields: stack */
    .sa-field-duo { grid-template-columns: 1fr; }

    /* Footer: stack */
    .si-footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    .si-footer-logo-link { margin: 0 auto 14px; }
    .si-footer-contact  { align-items: center; }
    .si-footer-copy     { text-align: center; }

    /* Social Proof: stack */
    .sa-sp-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .sa-sp-divider { display: none; }

    /* Final Push */
    .sa-final-push-section { padding: 60px 0; }
    .sa-btn-fp { padding: 16px 32px; font-size: 15px; }
}

@media (max-width: 480px) {
    .sa-hero-h1     { font-size: 24px; }
    .sa-form-card   { padding: 22px 18px 20px; }
    .sa-btn-next,
    .sa-btn-submit  { font-size: 14px; padding: 14px 18px; }
}

/* ── Global smooth scroll ─────────────────────────────────────────── */
html { scroll-behavior: smooth; }

/* Elementor Override for the user */
.elementor-kit-14961 img {
    border-radius: 0 !important;
}
