:root {
    --green-dark: #021814;
    --green-nav: #06352c;
    --green-mid: #1d4c3d;
    --coral: #fe654f;
    --coral-dark: #e54f39;
    --lime: #ccff00;
    --lime-dark: #aad900;
    --gray-bg: #f2f3f1;
    --gray-light: #f8f8f7;
    --gray-mid: #c6c6c6;
    --text-dark: #111111;
    --text-mid: #5a6165;
    --white: #ffffff;
    --border: #e4e5e3;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --font: "Outfit", sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--green-dark);
    background-image: radial-gradient(
        ellipse at 20% 60%,
        rgba(29, 76, 61, 0.5) 0%,
        transparent 65%
    );
    color: var(--text-dark);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    display: grid;
    grid-template-columns: 1fr minmax(0, clamp(320px, 90vw, 1400px)) 1fr;
    grid-auto-rows: auto;
}

header,
main,
footer {
    grid-column: 2;
}

/* ── HEADER ── */
.header {
    z-index: 100;
    padding: 1rem clamp(1rem, 5vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(2, 24, 20, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.header-cta {
    background: var(--coral);
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    padding: 10px 22px;
    border-radius: 999px;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition:
        background 0.18s,
        transform 0.15s;
}
.header-cta:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
}

/* ── WIZARD LAYOUT ── */
.wizard-layout {
    width: 100%;
    padding: 48px clamp(16px, 4vw, 32px) 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.wizard-layout > * {
    width: 100%;
    max-width: 740px;
}

/* ── LOADING SCREEN ── */
.loading-screen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.96);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(1px);
}

.loading-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    padding: 0 40px;
}

.loading-spinner {
    width: 200px;
    height: 6px;
    background: var(--gray-bg);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.loading-spinner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(
        90deg,
        var(--coral),
        var(--coral) 50%,
        rgba(254, 101, 79, 0.5)
    );
    border-radius: 3px;
    animation: loadBarSmooth 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.loading-spinner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 100%;
    background: rgba(254, 101, 79, 0.3);
    border-radius: 3px;
    animation: loadGlow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.loading-text {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.3px;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes loadBarSmooth {
    0% {
        width: 0%;
    }
    50% {
        width: 100%;
    }
    100% {
        width: 0%;
    }
}

@keyframes loadGlow {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeInOut {
    0%,
    10% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    90%,
    100% {
        opacity: 0.6;
    }
}

/* ── HERO SECTION ── */
.hero-section {
    text-align: center;
    margin-bottom: 40px;
}

/* ── HERO TEXT ── */
.hero-badge {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 6px;
    background: rgba(254, 101, 79, 0.13);
    border: 1px solid rgba(254, 101, 79, 0.24);
    color: var(--coral);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 24px;
}
.hero-pretitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}
.hero-headline {
    color: var(--white);
    font-size: clamp(32px, 3.2vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}
.hero-sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.7;
    margin: 0 auto 40px;
    max-width: 600px;
}

/* ── PROGRESS ── */
.progress-wrap {
    max-width: 680px;
    width: 100%;
    margin: 0 auto 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.progress-steps {
    display: flex;
    align-items: center;
    width: 100%;
}
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}
.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.32);
    transition: all 0.25s var(--ease);
}
.step-circle.active {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(254, 101, 79, 0.22);
}
.step-circle.done {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.85);
}
.step-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
    letter-spacing: 0.2px;
}
.step-label.active {
    color: var(--coral);
}
.step-label.done {
    color: rgba(255, 255, 255, 0.48);
}
.step-connector {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.09);
    margin: 0 10px;
    border-radius: 2px;
    transition: background 0.3s var(--ease);
}
.step-connector.done {
    background: rgba(255, 255, 255, 0.26);
}

/* ── STEP TRANSITIONS ── */
.step {
    display: none;
}
.step.active {
    display: block;
    animation: stepIn 0.32s var(--ease) both;
}
@keyframes stepIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── STEP BODY ── */
.step-body {
    padding-bottom: 40px;
    position: relative;
}

/* ── CARD ── */
.card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.35),
        0 2px 12px rgba(0, 0, 0, 0.18);
    position: relative;
}
.card-header {
    margin-bottom: 28px;
}
.card h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 8px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}
.card .subtitle {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ── FORM ── */
.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.1px;
}
select,
input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font);
    color: var(--text-dark);
    background: var(--gray-light);
    appearance: none;
    -webkit-appearance: none;
    transition:
        border-color 0.18s,
        box-shadow 0.18s,
        background 0.18s;
    outline: none;
}
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: var(--gray-light);
    cursor: pointer;
    padding-right: 40px;
}
select:focus,
input[type="text"]:focus,
input[type="email"]:focus {
    border-color: var(--coral);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(254, 101, 79, 0.12);
}
input::placeholder {
    color: var(--gray-mid);
}

/* ── TILE GRID ── */
.tile-count {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 16px;
    min-height: 20px;
    transition: color 0.2s;
}
.tile-count.has-selection {
    color: var(--green-nav);
}
.tile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
    margin-left: -40px;
    margin-right: -40px;
    padding-left: 40px;
    padding-right: 40px;
}
.tile {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition:
        border-color 0.15s,
        background 0.15s,
        box-shadow 0.15s,
        transform 0.1s;
    user-select: none;
    background: var(--white);
}
.tile:hover {
    border-color: var(--coral);
    background: rgba(254, 101, 79, 0.03);
    box-shadow: var(--shadow-sm);
}
.tile:active {
    transform: scale(0.99);
}
.tile.selected {
    border-color: var(--green-nav);
    background: rgba(6, 53, 44, 0.04);
    box-shadow: 0 0 0 3px rgba(6, 53, 44, 0.08);
}
.tile-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 1.5px solid var(--border);
    display: none;
    align-items: center;
    justify-content: center;
    transition:
        background 0.15s,
        border-color 0.15s,
        transform 0.15s;
    margin-top: 2px;
}
.tile-check svg {
    display: none;
}
.tile.selected .tile-check {
    background: var(--green-nav);
    border-color: var(--green-nav);
    transform: scale(1.05);
}
.tile.selected .tile-check svg {
    display: block;
}
.tile-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.3;
}
.tile-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.45;
}

/* ── RADIO GRID ── */
.radio-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}
.radio-tile {
    padding: 18px 16px 16px 44px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition:
        border-color 0.15s,
        background 0.15s,
        box-shadow 0.15s;
    user-select: none;
    position: relative;
    background: var(--white);
}
.radio-tile:hover {
    border-color: var(--coral);
    box-shadow: var(--shadow-sm);
}
.radio-tile:active {
    transform: scale(0.99);
}
.radio-tile.selected {
    border-color: var(--green-nav);
    background: rgba(6, 53, 44, 0.04);
    box-shadow: 0 0 0 3px rgba(6, 53, 44, 0.08);
}
.radio-dot {
    position: absolute;
    left: 16px;
    top: 20px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--border);
    transition:
        border-color 0.15s,
        box-shadow 0.15s;
    background: var(--white);
}
.radio-tile.selected .radio-dot {
    border-color: var(--green-nav);
    box-shadow:
        inset 0 0 0 3px var(--white),
        inset 0 0 0 9px var(--green-nav);
}
.radio-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.3;
}
.radio-desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.55;
}

/* ── BUTTONS ── */
.btn-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 4px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.btn-primary {
    background: var(--coral);
    color: var(--white);
    border: none;
    border-radius: 999px;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition:
        background 0.18s,
        opacity 0.18s,
        transform 0.15s,
        box-shadow 0.18s;
    box-shadow: 0 2px 8px rgba(254, 101, 79, 0.3);
    letter-spacing: 0.1px;
}
.btn-primary:hover:not(:disabled) {
    background: var(--coral-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(254, 101, 79, 0.35);
}
.btn-primary:active:not(:disabled) {
    transform: translateY(0);
}
.btn-primary:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
}
.btn-primary:focus-visible {
    outline: 3px solid rgba(254, 101, 79, 0.4);
    outline-offset: 2px;
}
.btn-back {
    background: transparent;
    color: var(--text-mid);
    border: 1.5px solid var(--border);
    border-radius: 999px;
    padding: 13px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition:
        border-color 0.18s,
        color 0.18s,
        background 0.18s;
}
.btn-back:hover {
    border-color: var(--text-mid);
    color: var(--text-dark);
    background: var(--gray-light);
}

/* ── EMAIL GATE ── */
.email-gate-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}
.email-gate-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(254, 101, 79, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.trust-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-mid);
    font-weight: 500;
}

/* ── RESULTS HERO ── */
.results-hero {
    background: var(--green-nav);
    background-image: radial-gradient(
        ellipse at 80% 20%,
        rgba(29, 76, 61, 0.8) 0%,
        transparent 60%
    );
    border-radius: var(--radius-xl);
    padding: 36px 40px 32px;
    max-width: 740px;
    margin: 32px auto 20px;
    text-align: center;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}
.results-hero h2 {
    color: var(--white);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}
.results-hero > p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 17px;
    margin: 0 auto 24px;
    max-width: 520px;
}
.estimate-cta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid rgba(0, 0, 0, 0.2);
    align-items: center;
    text-align: center;
}
.estimate-cta p {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}
.estimate-cta-btn {
    background: var(--lime);
    color: var(--green-dark);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.2s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.estimate-cta-btn:hover {
    background: #e0ff00;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(204, 255, 0, 0.3);
}
.savings-box {
    display: block;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    margin-bottom: 20px;
}
.savings-pre-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.45);
    margin-bottom: 8px;
}
.savings-badge {
    display: block;
    color: var(--green-nav);
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: -2px;
    line-height: 1;
}
.savings-label {
    color: rgba(0, 0, 0, 0.65);
    font-size: 14px;
    margin-bottom: 6px;
}
.savings-context {
    color: rgba(0, 0, 0, 0.6);
    font-size: 13px;
    line-height: 1.5;
}
.savings-context-old {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.42);
    font-style: italic;
}

/* ── VIEW TOGGLE ── */
.view-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 4px;
    gap: 2px;
}
.toggle-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 999px;
    cursor: pointer;
    transition:
        background 0.18s,
        color 0.18s;
}
.toggle-btn.active {
    background: var(--lime);
    color: var(--green-dark);
}
.toggle-btn:not(.active):hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* ── COMPARE GRID ── */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 740px;
    margin: 0 auto 16px;
    align-items: stretch;
}

.compare-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}
.compare-card .cost-breakdown {
    margin-top: auto;
}
.compare-card.featured {
    border-color: var(--lime);
    border-width: 2px;
    box-shadow:
        var(--shadow-md),
        0 0 0 4px rgba(204, 255, 0, 0.15);
}
.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--green-nav);
    color: var(--lime);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 999px;
    margin-bottom: 12px;
}
.compare-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.compare-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}
.cost-dual {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}
.cost-primary {
    font-size: 34px;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    line-height: 1;
}
.cost-secondary {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-mid);
    letter-spacing: -0.5px;
    line-height: 1;
}
.cost-period {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mid);
    letter-spacing: 0;
}
.cost-divider {
    font-size: 18px;
    font-weight: 300;
    color: var(--gray-mid);
    margin: 0 4px;
    line-height: 1;
    align-self: center;
}
.compare-card.featured .cost-primary {
    color: var(--green-nav);
}
.compare-card.featured .cost-secondary {
    color: #2a7060;
}
.cost-note {
    font-size: 12px;
    color: var(--text-mid);
    margin-bottom: 20px;
}
.cost-breakdown {
    border-top: 1px solid var(--border);
    padding-top: 16px;
}
.breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-mid);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    gap: 12px;
}
.breakdown-row span:first-child {
    flex: 1;
}
.breakdown-row span:last-child {
    font-weight: 600;
    white-space: nowrap;
}
.bv-wrap {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 5px;
    white-space: nowrap;
}
.bv-annual {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}
.bv-monthly {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-mid);
}
.breakdown-row.total .bv-annual {
    font-size: 14px;
    font-weight: 700;
}
.breakdown-row.total .bv-monthly {
    font-size: 12px;
}
.breakdown-row.total {
    font-weight: 700;
    color: var(--text-dark);
    border-top: 1px solid var(--border);
    border-bottom: none;
    padding-top: 12px;
    margin-top: 6px;
    font-size: 14px;
}

/* ── MODEL STRIP ── */
.model-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 740px;
    margin: 0 auto 16px;
}
.strip-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.strip-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    margin-top: 6px;
    border: 2px solid var(--green-nav);
}
.strip-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--green-nav);
    margin-bottom: 6px;
}
.strip-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ── CTA CARD ── */
.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: var(--green-nav);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 36px 40px;
    max-width: 740px;
    margin: 0 auto 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
}
.cta-text h3 {
    color: var(--lime);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.cta-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    line-height: 1.65;
}
.cta-btn {
    flex-shrink: 0;
    background: var(--coral);
    color: var(--white);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 999px;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    transition:
        background 0.18s,
        transform 0.15s,
        box-shadow 0.18s;
    box-shadow: 0 2px 8px rgba(254, 101, 79, 0.35);
}
.cta-btn:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(254, 101, 79, 0.4);
}

/* ── SECONDARY LINK ── */
.secondary-link-row {
    text-align: center;
    margin: 12px 0 32px;
}
.secondary-link-row p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 10px;
}
.secondary-link {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-bottom: 2px solid rgba(204, 255, 0, 0.4);
    padding-bottom: 2px;
    transition:
        color 0.15s,
        border-color 0.15s;
}
.secondary-link:hover {
    color: var(--white);
    border-color: var(--lime);
}

/* ── RESULTS BACK ── */
.results-back-wrap {
    max-width: 740px;
    margin: 32px auto -8px;
    padding: 0 4px;
}
.results-back-wrap .btn-back {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}
.results-back-wrap .btn-back:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

/* ── DISCLAIMER ── */
.disclaimer {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    max-width: 620px;
    margin: 0 auto 60px;
    line-height: 1.7;
    padding: 0 24px;
}

/* ── FOOTER ── */
.footer {
    text-align: center;
    padding: 24px;
    color: rgba(255, 255, 255, 0.25);
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    grid-column: 1 / -1;
}
.footer a {
    color: rgba(255, 255, 255, 0.38);
    text-decoration: none;
    transition: color 0.15s;
}
.footer a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ════════════════════════════════════════
   RESPONSIVE — Stacked layout (≤1024px)
   Covers tablets, large phones, everything
   that can't fit the side-by-side split.
════════════════════════════════════════ */
/* ════════════════════════════════════════
   RESPONSIVE — Small mobile (≤640px)
════════════════════════════════════════ */
@media (max-width: 640px) {
    .header {
        padding: 14px clamp(16px, 4vw, 20px);
    }
    .wizard-layout {
        padding: 32px clamp(16px, 4vw, 20px) 60px;
    }
    .hero-section {
        margin-bottom: 28px;
    }
    .hero-headline {
        font-size: 28px;
        letter-spacing: -1px;
    }
    .hero-sub {
        font-size: 14px;
    }

    .card {
        padding: 24px 20px 28px;
        border-radius: var(--radius-lg);
    }
    .tile-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .radio-grid {
        gap: 8px;
    }

    .btn-row {
        flex-wrap: wrap;
    }
    .btn-primary {
        flex: 1;
        min-width: 120px;
    }

    /* Results */
    .results-back-wrap {
        margin: 20px 0 0;
    }
    .results-hero {
        border-radius: var(--radius-lg);
        margin: 16px 0;
        padding: 24px 20px 20px;
    }
    .savings-badge {
        font-size: 34px;
        padding: 10px 20px;
        letter-spacing: -1.5px;
    }
    .savings-box {
        padding: 18px 18px 16px;
    }
    .compare-grid {
        grid-template-columns: 1fr;
    }
    .model-strip {
        grid-template-columns: 1fr;
    }
    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        border-radius: var(--radius-lg);
    }
    .secondary-link-row {
        margin: 8px 0 24px;
    }
    .disclaimer {
        padding: 0 20px;
        margin-bottom: 40px;
    }
}

/* ════════════════════════════════════════
   RESPONSIVE — Tiny screens (≤360px)
════════════════════════════════════════ */
@media (max-width: 360px) {
    .step-label {
        display: none;
    }
}
