:root {
    --primary-blue: #2367ca;
    --brand-blue: #2367ca;
    --brand-blue-hover: #2a65b3;
    --light-blue-bg: #e6f7ff;
    --dark-blue-btn: #2b6cb0;
    --red: #ff0000;
    --green: #2ecc71;
    --cream-bg: #fff7d7;
    --text-dark: #333333;
    --text-gray: #4b5563;
    --oto-dark-bg: #0f172a;
    --oto-gold: #eab308;
    --body-font-size: clamp(1.2rem, 2.5vw, 1.4rem);
}

.price-slash {
    display: inline-block;
    transform: scaleY(0.7);
    /* Aggressive scale to ensure it never exceeds digit height */
    transform-origin: center;
    vertical-align: middle;
    position: relative;
    top: -0.02em;
    /* Subtle nudge for perfect centering */
    margin: 0 1px;
    font-weight: inherit;
    line-height: 1;
}

.no-wrap-price {
    white-space: nowrap !important;
    display: inline-block;
}

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

html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

body {
    background-color: #ffffff;
    color: var(--text-dark);
    font-family: 'Barlow Semi Condensed', sans-serif;
    line-height: 1.6;
    text-align: center;
}

/* Add padding only for pages with the sticky footer bar */
body.oto-page-has-sticky {
    padding-bottom: 80px;
}

/* Subtle horizontal movement animation for buttons */
@keyframes slideHorizontal {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

.oto-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 0 20px;
    overflow-x: hidden;
}

.oto-top-banner {
    background-color: #ffffff;
    color: var(--text-dark);
    padding: 15px 10px;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: clamp(1.2rem, 5.5vw, 2.5rem);
    letter-spacing: 0.5px;
    font-weight: 700;
    text-transform: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
}

.oto-top-banner span {
    flex-shrink: 1;
}

.progress-container {
    max-width: 1400px;
    margin: 15px auto 0;
    padding: 0 20px;
}

.progress-bar-wrap {
    height: 55px;
    background: #cbd5e1;
    /* Darkened background color */
    width: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1e40af 0%, #3174cf 50%, #1e40af 100%);
    background-size: 200% 100%;
    animation: shimmerBar 4s linear infinite;
    width: 66%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-fill span {
    white-space: nowrap;
}

@keyframes shimmerBar {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

@keyframes glowPulseRed {
    0% {
        box-shadow: 0 10px 30px -5px rgba(153, 27, 27, 0.1), 0 4px 12px -5px rgba(153, 27, 27, 0.1);
    }

    50% {
        box-shadow: 0 15px 45px -5px rgba(153, 27, 27, 0.25), 0 8px 25px -5px rgba(153, 27, 27, 0.25);
    }

    100% {
        box-shadow: 0 10px 30px -5px rgba(153, 27, 27, 0.1), 0 4px 12px -5px rgba(153, 27, 27, 0.1);
    }
}

@keyframes glowPulseYellow {
    0% {
        box-shadow: 0 10px 30px -5px rgba(251, 191, 36, 0.1), 0 4px 12px -5px rgba(251, 191, 36, 0.1);
    }

    50% {
        box-shadow: 0 15px 45px -5px rgba(251, 191, 36, 0.2), 0 8px 25px -5px rgba(251, 191, 36, 0.2);
    }

    100% {
        box-shadow: 0 10px 30px -5px rgba(251, 191, 36, 0.1), 0 4px 12px -5px rgba(251, 191, 36, 0.1);
    }
}

@keyframes slightBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes subtleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes valuePulse {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.03);
        filter: brightness(1.2);
    }
}

@keyframes borderShimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.warning-box-outline {
    max-width: 900px;
    margin: 10px auto 35px;
    background: linear-gradient(135deg, #fffafa 0%, #fff1f2 100%);
    border: 1px solid rgba(153, 27, 27, 0.15);
    border-radius: 12px;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 10px 30px -5px rgba(153, 27, 27, 0.08);
    transition: all 0.3s ease;
    animation: glowPulseRed 4s ease-in-out infinite;
}

.warning-box-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px -10px rgba(153, 27, 27, 0.15);
}

.warning-icon-svg {
    width: 32px;
    height: 32px;
    color: #991b1b;
    flex-shrink: 0;
    animation: slightBlink 2s ease-in-out infinite;
}

.warning-text-content {
    color: #991b1b;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.4;
    margin: 0;
}

.highlight-once {
    color: #ff0000;
    font-weight: 900;
    position: relative;
    animation: slightBlink 1.5s ease-in-out infinite;
}

.highlight-once::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff0000;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(255, 0, 0, 0.3);
}

/* Premium Info Box for Thank You Page */
.important-info-box-premium {
    position: relative;
    max-width: 700px;
    margin: 60px auto;
    background: linear-gradient(135deg, #ffffff 0%, #fffdf2 100%);
    border: 1px solid rgba(251, 191, 36, 0.15);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px -15px rgba(251, 191, 36, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: glowPulseYellow 4s ease-in-out infinite;
}

.important-info-box-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -15px rgba(251, 191, 36, 0.25);
}

.info-badge-premium {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #1e293b;
    padding: 10px 28px;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 8px 20px -5px rgba(251, 191, 36, 0.4);
}

.info-icon-svg {
    width: 20px;
    height: 20px;
    animation: slightBlink 2.5s ease-in-out infinite;
}

.premium-info-text {
    color: #334155;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.55rem);
    font-weight: 600;
    line-height: 1.5;
    margin: 15px 0 0 0;
}

.highlight-orange {
    color: #ea580c;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.highlight-orange::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(234, 88, 12, 0.15);
    z-index: -1;
}

.do-you-know {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 2.2rem;
    /* Increased size */
    margin: 40px 0 25px;
    text-transform: none;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

.main-headline-oto {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.5rem);
    max-width: 1400px;
    margin: 0 auto 40px;
    line-height: 1.1;
    text-transform: none;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.highlight-blue {
    color: var(--brand-blue);
}

.content-card {
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
    color: var(--text-dark);
    border-radius: 12px;
    padding: 15px 40px 10px;
    /* Reduced top padding */
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.bonus-title-header {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    /* Adjusted for better impact matching the screenshot style */
    color: var(--text-dark);
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    text-transform: none;
    letter-spacing: 0.5px;
    /* Tighter letter spacing for that modern premium look */
    font-weight: 700;
    line-height: 1.1;
}

.bonus-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-detailed-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    position: relative;
    border: 2px solid var(--brand-blue);
    color: #000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.bonus-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.bonus-image-placeholder {
    width: 45%;
    flex-shrink: 0;
    background: #f1f5f9;
    aspect-ratio: 16/10;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #cbd5e1;
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
    overflow: hidden;
    /* Ensure image doesn't bleed out */
}

.bonus-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-info {
    flex-grow: 1;
}

.bonus-badge {
    background-color: #fef08a;
    color: #854d0e;
    display: inline-block;
    padding: 8px 24px;
    border-radius: 100px;
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid #facc15;
    font-family: 'Poppins', sans-serif;
}

.bonus-detailed-card h3 {
    color: var(--text-dark);
    font-size: 2.2rem;
    margin-bottom: 12px;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.bonus-desc {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #1e293b;
    margin-bottom: 20px;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 450;
}

.bonus-val-line {
    text-align: right;
    font-size: clamp(1.2rem, 4.5vw, 1.8rem);
    font-weight: 500;
    color: #475569;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .bonus-val-line {
        text-align: center;
        margin-top: 15px;
    }
}

.bonus-val-line span {
    color: var(--brand-blue);
    font-weight: 900;
}

@media (max-width: 992px) {
    .bonus-detailed-card {
        flex-direction: column;
        padding: 25px;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .bonus-image-placeholder {
        width: 100%;
        max-width: 450px;
    }

    .bonus-detailed-card h3 {
        font-size: clamp(1.4rem, 6vw, 2rem);
        text-align: center;
        width: 100%;
    }

    .bonus-desc {
        font-size: 1.1rem;
        text-align: center;
        line-height: 1.5;
    }

    .bonus-badge {
        margin-bottom: 12px;
    }
}

@media (max-width: 500px) {
    .bonus-detailed-card {
        padding: 15px 12px;
    }

    .bonus-info {
        width: 100%;
    }
}

.pricing-section {
    padding: 10px 20px 5px;
    /* Reduced top padding for tighter layout */
    margin-top: 10px;
    /* Minimized top margin */
    text-align: center;
}

.total-worth-line {
    font-size: 2.22rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #000;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
    display: inline-block;
    border-bottom: 5px solid #000;
    padding-bottom: 0px;
}

.highlight-red {
    color: var(--red);
}

.price-tiered-row {
    margin-bottom: 15px;
}

.normal-price-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e293b;
}

.not-even-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e293b;
    text-transform: uppercase;
}

.scratch-price {
    text-decoration: line-through;
    color: #64748b;
    margin-left: 10px;
}

.get-everything-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: #000;
    margin: 35px 0 10px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.final-price-oto {
    font-size: 5.5rem;
    font-weight: 900;
    color: var(--brand-blue);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -2px;
    margin-bottom: 25px;
    line-height: 1;
}

.super-crazy-heading {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.upgrade-btn {
    background-color: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 22px 50px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    letter-spacing: 0px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    transition: all 0.2s ease;
    text-transform: none;
    box-shadow: 0 4px 15px rgba(35, 103, 202, 0.3);
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: slideHorizontal 0.5s ease-in-out infinite;
}

.upgrade-btn:hover {
    background-color: var(--brand-blue-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(49, 116, 207, 0.5);
}

.decline-text {
    display: block;
    margin: 10px auto 0;
    /* Zero margin for no gap */
    color: #cbd5e1;
    /* Lighter gray to de-emphasize */
    text-decoration: underline;
    font-size: 0.75rem;
    /* Reduced size further as requested */
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    max-width: 800px;
    line-height: 1.4;
}

.decline-text:hover {
    color: var(--brand-blue);
}

.alert-section-wrap {
    position: relative;
    max-width: 900px;
    margin: 60px auto 40px;
    padding: 35px 30px;
    border: 2px solid var(--red);
    border-radius: 12px;
    text-align: center;
    background-color: #fff;
}

.alert-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    padding: 8px 30px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.alert-main-text {
    color: var(--red);
    font-size: clamp(1.6rem, 4vw, 1.95rem);
    font-weight: 700;
    margin-top: 5px;
    text-transform: none;
    font-family: 'Barlow Semi Condensed', sans-serif;
    line-height: 1.2;
}

.alert-sub-text {
    color: var(--text-dark);
    font-weight: 500;
    margin-top: 10px;
    font-size: clamp(1.15rem, 3vw, 1.35rem);
}

/* --- LUXURY SAAS STYLE VIP BENEFITS SECTION --- */
.vip-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 60px auto;
    max-width: 1000px;
    padding: 0 20px;
}

.vip-benefit-card {
    background: var(--card-bg, #ffffff);
    border: 2px solid var(--accent-color, #2367ca);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03);
    position: relative;
    animation: subtleFloat 5s ease-in-out infinite;
}

.vip-benefit-card:nth-child(even) {
    animation-delay: -2.5s;
}

.vip-benefit-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    /* Clean white pop on hover */
    animation-play-state: paused;
}

.benefit-icon-ring {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color, #2367ca);
    color: #ffffff;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px -5px var(--accent-color, #2367ca);
}

.vip-benefit-card:hover .benefit-icon-ring {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.1);
}

.benefit-icon-ring svg {
    width: 28px;
    height: 28px;
}

.benefit-badge-top {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1.5px solid var(--accent-color, #2367ca);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent-color, #2367ca);
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s ease;
}

.vip-benefit-card:hover .benefit-badge-top {
    transform: translateX(-50%) translateY(-2px);
    background: #ffffff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}


.benefit-title-text {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 0;
}

.benefit-desc-text {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.benefit-pricing-tag {
    margin-top: auto;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: valuePulse 3s ease-in-out infinite;
}

.benefit-pricing-tag .val-label {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Card Themes */
.theme-blue {
    --accent-color: #2563eb;
    --accent-soft: #eff6ff;
    --card-bg: #f8fbff;
}

.theme-emerald {
    --accent-color: #059669;
    --accent-soft: #ecfdf5;
    --card-bg: #f6fdf9;
}

.theme-indigo {
    --accent-color: #4f46e5;
    --accent-soft: #eef2ff;
    --card-bg: #f9f8ff;
}

.theme-orange {
    --accent-color: #ea580c;
    --accent-soft: #fff7ed;
    --card-bg: #fffaf5;
}

@media (max-width: 992px) {
    .vip-benefits-grid {
        gap: 20px;
    }
}

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

    .vip-benefit-card {
        padding: 30px;
    }
}

.summary-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@keyframes slideUpFadeCard {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.summary-feature-card {
    position: relative;
    background: var(--card-bg, #ffffff);
    border: 2px solid var(--accent-color, #2367ca);
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    cursor: default;

    opacity: 0;
    animation: slideUpFadeCard 0.7s ease-out forwards, subtleFloat 5s ease-in-out infinite;
}

.summary-feature-card:nth-child(even) {
    animation-delay: 0.2s, -2.5s;
    /* staggered entry and staggered idle float */
}

.summary-feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    animation-play-state: paused;
}

.summary-feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.summary-feature-card:nth-child(2) {
    animation-delay: 0.25s;
}

.summary-feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

.summary-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 70%);
    pointer-events: none;
}

.summary-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color, #2367ca);
    color: #ffffff;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 18px -5px var(--accent-color);
}

.summary-feature-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff !important;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.summary-feature-card:hover .summary-feature-icon {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.1);
}

/* Icons in summary feature grid should be white by default across all themes */
.summary-feature-icon svg path,
.summary-feature-icon svg polygon,
.summary-feature-icon svg rect,
.summary-feature-icon svg circle {
    fill: #ffffff !important;
}

/* Theme-based icon ring support for summary features */
.summary-feature-card.theme-blue {
    --accent-color: #2563eb;
    --card-bg: #f8fbff;
}

.summary-feature-card.theme-emerald {
    --accent-color: #059669;
    --card-bg: #f6fdf9;
}

.summary-feature-card.theme-indigo {
    --accent-color: #4f46e5;
    --card-bg: #f9f8ff;
}

.summary-feature-title {
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: capitalize;
    color: #1e293b;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 2;
    margin: 0;
}

@media (max-width: 900px) {
    .summary-feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.seize-opportunity-text {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 50px;
    text-align: center;
    color: var(--text-dark);
}

.seize-opportunity-text span {
    color: var(--red);
    text-decoration: underline;
}

@media (max-width: 992px) {
    .summary-feature-grid {
        grid-template-columns: 1fr;
    }

    .bonus-summary-container {
        padding: 30px 20px;
        margin: 40px 15px;
    }

    .bonus-summary-item {
        font-size: 1.1rem;
    }
}

.vip-upgrade-headline {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--text-dark);
    text-align: center;
    margin: 50px auto 30px;
    text-transform: none;
    letter-spacing: 0.5px;
    line-height: 1.1;
    max-width: 1200px;
    font-weight: 700;
}

.serious-note-wrap {
    position: relative;
    max-width: 900px;
    margin: 60px auto 40px;
    padding: 30px;
    border: 2px solid var(--brand-blue);
    /* Button color outline */
    border-radius: 12px;
    text-align: center;
}

.serious-note-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-blue);
    /* Button color background */
    color: #fff;
    padding: 8px 30px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.serious-note-text {
    color: var(--brand-blue);
    font-size: clamp(1.6rem, 4vw, 1.95rem);
    font-weight: 700;
    margin-top: 5px;
    text-transform: none;
    font-family: 'Barlow Semi Condensed', sans-serif;
}

.disappear-warning {
    color: var(--text-dark);
    /* Black color */
    font-weight: 500;
    margin-top: 15px;
    font-size: clamp(1.15rem, 3vw, 1.35rem);
}

@media (max-width: 768px) {
    .main-headline-oto {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .content-card {
        padding: 20px 12px;
    }

    .oto-top-banner {
        padding: 12px 10px;
        gap: 6px;
        font-size: clamp(0.9rem, 4.5vw, 1.3rem);
    }

    .warning-box-outline {
        font-size: 0.9rem;
        padding: 10px;
        margin: 15px auto;
    }

    .do-you-know {
        font-size: 1.5rem;
        /* Increased mobile size */
        margin: 25px 0 15px;
    }

    .progress-bar-wrap {
        height: 36px;
        border-radius: 6px;
    }

    .progress-fill {
        padding: 0 8px;
        font-size: 0.6rem;
        letter-spacing: 0.1px;
        justify-content: center;
        gap: 5px;
    }

    .upgrade-btn {
        font-size: 1rem;
        padding: 15px 20px;
        width: 100%;
        max-width: none;
    }

    .upgrade-btn span {
        font-size: 0.8rem !important;
    }

    .pricing-section {
        margin-top: 30px;
        padding: 20px 0 5px;
    }

    .final-price-oto {
        font-size: 3rem;
    }

    .total-worth-line {
        font-size: 1.3rem;
    }

    .serious-note-wrap {
        border-radius: 12px;
        padding: 40px 15px 25px;
        margin: 40px 10px;
    }

    .serious-note-badge {
        font-size: 0.8rem;
        padding: 6px 20px;
        width: max-content;
    }

    .serious-note-text {
        font-size: 1.35rem;
        line-height: 1.25;
    }

    .disappear-warning {
        font-size: 1rem;
        margin-top: 10px;
    }

    .alert-section-wrap {
        border-radius: 12px;
        padding: 40px 15px 25px;
        margin: 40px 10px;
    }

    .alert-badge {
        font-size: 0.8rem;
        padding: 6px 20px;
        width: max-content;
    }

    .alert-main-text {
        font-size: 1.35rem;
        line-height: 1.25;
    }

    .alert-sub-text {
        font-size: 1rem;
        margin-top: 10px;
    }
}

/* --- STICKY FOOTER BAR --- */
.sticky-footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary-blue);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 10000;
    padding: 4px 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Timer Section */
.footer-timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 180px;
}

.timer-tag {
    background: #ef4444;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 2px 10px;
    border-radius: 4px;
    position: absolute;
    top: -12px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-display {
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 8px 15px;
    display: flex;
    gap: 12px;
    background: rgba(49, 116, 207, 0.1);
}

.time-num {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.time-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 4px;
}

/* Price Section */
.footer-price-info {
    text-align: center;
}

.price-top-label {
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: block;
    margin-bottom: 2px;
}

.price-main-val {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1;
}

/* CTA Section */
.footer-cta-btn {
    background: #ffffff;
    color: var(--primary-blue);
    padding: 12px 45px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.45rem;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.footer-cta-btn:hover {
    background: #f8fafc;
    color: #2a65b3;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .sticky-footer-bar {
        padding: 8px 0;
    }

    .footer-inner {
        flex-direction: row;
        justify-content: space-around;
        gap: 10px;
        padding: 0 10px;
    }

    .footer-timer-box {
        display: none;
    }

    .price-main-val {
        font-size: 1.4rem;
    }

    .footer-cta-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
        font-weight: 900;
    }
}

/* Thank You Page Styles */
.thank-you-container {
    max-width: 900px;
    margin: 10px auto;
    text-align: center;
    padding: 20px 20px 5px 20px;
}

.alert-banner {
    background-color: #e6f0ff;
    border: 2px dashed #0096ff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 40px;
    display: inline-block;
}

.alert-banner p {
    font-weight: 800;
    font-size: 1.4rem;
    color: #000;
}

.congrats-title {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: clamp(1.2rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: none;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    line-height: 1.1;
    white-space: nowrap;
}

.whatsapp-btn {
    font-family: 'Poppins', sans-serif;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 18px 45px;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    min-width: 280px;
    max-width: 100%;
    margin: 0 auto 30px auto;
    box-shadow: 0 4px 15px rgba(35, 103, 202, 0.3);
    transition: transform 0.2s, background 0.2s;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 700;
    gap: 15px;
    line-height: 1;
    text-transform: none;
}

.whatsapp-btn:hover {
    background: var(--brand-blue-hover);
    transform: translateY(-2px);
}

.whatsapp-btn img {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.confirm-text {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #000;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.confirm-text .blue-underline {
    color: #1271c2;
    text-decoration: underline;
    font-weight: 800;
}

.confirm-text i {
    font-style: italic;
}

.event-details {
    margin-top: 20px;
}

.event-details p {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #000;
}

.script-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.script-headline span {
    text-decoration: none;
    color: #3b82f6;
    font-weight: 700;
}

.see-you-text {
    font-family: 'Poppins', sans-serif;
    color: #1271c2;
    font-size: 1.4rem;
    margin-top: 20px;
    text-align: center;
    width: 100%;
    display: block;
    font-weight: 600;
    font-style: italic;
}

@media (max-width: 600px) {
    .congrats-title {
        font-size: clamp(1.1rem, 7vw, 2rem);
    }

    .confirm-text {
        font-size: 1.1rem;
    }

    .script-headline {
        font-size: 2rem;
    }

    .whatsapp-btn {
        padding: 10px 15px;
        min-width: 100%;
        font-size: 1.1rem;
    }

    .warning-box-outline {
        flex-direction: column;
        padding: 20px 15px;
        gap: 10px;
        margin: 20px auto 30px;
    }

    .warning-text-content {
        font-size: 1.1rem;
    }

    .important-info-box-premium {
        padding: 40px 20px 30px;
        margin: 40px 10px;
    }

    .premium-info-text {
        font-size: 1.2rem;
    }
}

/* Horizontal Button Animation */
.whatsapp-btn,
.footer-cta-btn {
    animation: slideHorizontal 0.5s ease-in-out infinite;
}

/* --- MODERN PERSUASION CALLOUT BOXES --- */
.persuasion-callout {
    background: #f1f7ff;
    border: 1px solid rgba(22, 78, 175, 0.15);
    /* Slightly darker border */
    border-radius: 50px;
    padding: 10px 24px;
    margin: 15px auto 22px;
    display: inline-block;
    /* Essential for breathing animation and centering */
    max-width: 95%;
    box-shadow: 0 4px 15px rgba(22, 78, 175, 0.08);
    opacity: 0;
    transform: translateY(15px);
    animation: floatInFade 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
        breathingCallout 3s ease-in-out infinite 0.8s;
    text-align: center;
}

.persuasion-callout p {
    margin: 0 !important;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem !important;
    color: var(--brand-blue) !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    text-transform: none !important;
    text-align: center !important;
    letter-spacing: 0.2px;
}

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

@keyframes breathingCallout {

    0%,
    100% {
        transform: scale(1) translateY(0);
        box-shadow: 0 4px 15px rgba(22, 78, 175, 0.08);
    }

    50% {
        transform: scale(1.025) translateY(-2px);
        box-shadow: 0 8px 25px rgba(22, 78, 175, 0.15);
    }
}

.pricing-one-liner {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 4.2vw, 2.22rem);
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
    border-bottom: 5px solid #000;
    padding-bottom: 2px;
    display: inline-block;
    white-space: nowrap;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.3px;
}

.oto-recap-card {
    margin: 40px auto;
    text-align: center;
    max-width: 95%;
}

.oto-recap-card .deal-line {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
    font-weight: 900;
    color: var(--red);
    margin-top: 10px;
    line-height: 1;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
    .oto-recap-card {
        margin: 30px auto;
    }
}