/*New Flow Lander*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f0f4f8;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── TOP BANNER ── */
.top-banner {
    width: 100%;
    background: #1a3a5c;
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.top-banner span {
    color: #f9c848;
    font-weight: 700;
}

/* ── HEADER ── */
header {
    width: 100%;
    background: #fff;
    border-bottom: 3px solid #e8edf2;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logo-shield {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #1a3a5c, #2e6da4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-shield svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    color: #1a3a5c;
    letter-spacing: -0.3px;
}

.logo-text span {
    color: #2e6da4;
}

/* ── PROGRESS BAR ── */
.progress-wrap {
    width: 100%;
    max-width: 520px;
    padding: 18px 20px 0;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #888;
    margin-bottom: 6px;
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: #d9e5f0;
    border-radius: 99px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    border-radius: 99px;
    transition: width 0.5s ease;
}

/* ── CARD ── */
.card {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    margin: 18px 20px 30px;
    overflow: hidden;
    animation: fadeUp 0.4s ease;
}

.flow-3 .card {
    box-shadow: none;
    border: 0 none;
    background: transparent;
    border-radius: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-description {
    width: 100%;
    max-width: 520px;
    margin: 30px 20px 18px;
    animation: fadeUp 0.4s ease;
    text-align: center;
}

.card-description h4 {
    margin-bottom: 20px;
}

.card-description h3 {
    font-weight: 700;
}

.card-description p {
    margin-bottom: 0;
}

.card-top {
    background: linear-gradient(135deg, #1a3a5c 0%, #2e6da4 100%);
    padding: 22px 24px 18px;
    color: #fff;
    text-align: center;
}

.flow-3 .card-top {
    background: #2e6da4;
}

.step-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 12px;
    margin-bottom: 10px;
    color: #d0e8ff;
}

.card-top h1 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.35;
    color: #fff;
}

.card-top h1 span {
    color: #f9c848;
}

.card-body {
    padding: 24px 24px 28px;
}

/* ── CHOICE BUTTONS ── */
.choices {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.choice-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f5f9ff;
    border: 2px solid #d0e3f5;
    border-radius: 12px;
    padding: 14px 18px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #1a3a5c;
    transition: all 0.18s;
    text-align: left;
}

.choice-btn:hover {
    background: #e3f0ff;
    border-color: #2e6da4;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(46, 109, 164, 0.15);
}

.choice-btn.yes-btn:hover {
    opacity: 0.8;
}

.choice-btn.yes-btn:hover .choice-icon {
    background: #27ae60;
}

.choice-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: #2e6da4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

.yes-btn .choice-icon {
    background: #27ae60;
    font-size: 18px;
}

.no-btn .choice-icon {
    background: #b0bec5;
}

.flow-3 .yes-btn{
    background: #59b555;
    border: 0 none;
}
.flow-3 .no-btn{
    background: #d54139;
    border: 0 none;
}

/* ── AGE BRACKETS ── */
.age-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 4px;
}

.age-btn {
    background: #f5f9ff;
    border: 2px solid #d0e3f5;
    border-radius: 12px;
    padding: 18px 8px;
    cursor: pointer;
    text-align: center;
    font-size: 17px;
    font-weight: 800;
    color: #1a3a5c;
    transition: all 0.18s;
}

.age-btn small {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #888;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.age-btn:hover {
    background: #e3f0ff;
    border-color: #2e6da4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 109, 164, 0.15);
}

.age-btn.highlight:hover {
    background: #eafaf1;
    border-color: #27ae60;
}

/* ── CHECKING SCREEN ── */
.checking-wrap {
    text-align: center;
    padding: 10px 0 6px;
}

.spinner {
    width: 56px;
    height: 56px;
    border: 5px solid #d0e3f5;
    border-top-color: #2e6da4;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.checking-wrap h2 {
    font-size: 18px;
    color: #1a3a5c;
    font-weight: 700;
}

.checking-wrap p {
    font-size: 14px;
    color: #777;
    margin-top: 6px;
}

.dots span {
    animation: blink 1.2s infinite;
    font-size: 20px;
}

.dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {

    0%,
    80%,
    100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}

/* ── CONGRATULATIONS SCREEN ── */
.congrats-wrap {
    text-align: center;
}

.flow-3 .congrats-wrap {
    font-weight: 500;
}

.highlight{
    background: linear-gradient(to bottom, transparent 40%, #ffff54);
	width: fit-content;
}

.flow-3 .congrats-wrap .text-red{
    color: #d54139;
}

.flow-3 .swiper-container {
    width:100%;
    max-width:300px;
    margin:0 auto 30px;
    overflow: hidden;
}

.confetti-emoji {
    font-size: 44px;
    margin-bottom: 6px;
    display: block;
    animation: pop 0.5s ease;
}

@keyframes pop {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.congrats-badge {
    display: inline-block;
    background: #eafaf1;
    border: 2px solid #27ae60;
    border-radius: 99px;
    color: #1e8449;
    font-weight: 800;
    font-size: 13px;
    padding: 5px 16px;
    letter-spacing: 0.4px;
    margin-bottom: 14px;
}

.congrats-wrap h2 {
    font-size: 22px;
    font-weight: 900;
    color: #1a3a5c;
    line-height: 1.3;
    margin-bottom: 8px;
}

.congrats-wrap h2 span {
    color: #27ae60;
}

.congrats-wrap p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 22px;
}

.amount-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #1a3a5c, #2e6da4);
    color: #f9c848;
    font-size: 24px;
    font-weight: 900;
    border-radius: 12px;
    padding: 12px 28px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
	flex-wrap: wrap;
    gap: 12px;
    background: linear-gradient(135deg, #27ae60, #1e8449);
    color: #fff;
    border: none;
    border-radius: 14px;
    width: 100%;
    padding: 18px 20px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.35);
    transition: transform 0.15s, box-shadow 0.15s;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(39, 174, 96, 0.35);
    }

    50% {
        box-shadow: 0 8px 28px rgba(39, 174, 96, 0.55);
    }
}

.call-btn:hover {
    transform: translateY(-2px);
}

.call-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.call-btn-sub {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.88;
    display: block;
    margin-top: 2px;
}

.urgency-note {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff8e1;
    border: 1px solid #f9c848;
    border-radius: 10px;
    padding: 10px 14px;
    margin-top: 16px;
    font-size: 13px;
    color: #7d5a00;
    font-weight: 600;
}

.urgency-note span {
    font-size: 18px;
}

/* ── TRUST BAR ── */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 14px 20px 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #777;
    font-weight: 600;
}

.trust-item svg {
    width: 16px;
    height: 16px;
    fill: #2e6da4;
}

/* ── DISCLAIMER ── */
footer {
    font-size: 11px;
    color: #aaa;
    text-align: center;
    padding: 0 20px 30px;
    max-width: 520px;
    line-height: 1.5;
}

/* ── HIDDEN ── */
.step {
    display: none;
}

.step.active {
    display: block;
}

/* ── START OVER BUTTON ── */
.restart-bar {
    width: 100%;
    max-width: 520px;
    display: flex;
    justify-content: flex-end;
    padding: 6px 20px 0;
}

.restart-btn {
    background: none;
    border: 1.5px solid #ccc;
    border-radius: 99px;
    color: #888;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.restart-btn:hover {
    background: #fff;
    border-color: #2e6da4;
    color: #2e6da4;
}

#restart-bar-wrap {
    display: none;
}

#restart-bar-wrap.visible {
    display: flex;
}

.swiper-slide {
	background-color: #6292bb!important;
	color: white!important;
}