:root {
    --primary-color: #FFD600;
    /* Vivid Yellow */
    --primary-hover: #FFAB00;
    /* Vivid Amber */
    --secondary-color: #00B4D8;
    /* Vivid Sky Blue */
    --secondary-dark: #0077B6;
    --background-color: #E1F5FE;
    --text-color: #212121;
    --text-light: #546E7A;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 6px 12px rgba(0, 168, 232, 0.15);
    /* Blue tinted shadow */
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.15);
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --font-main: 'Poppins', sans-serif;
    --text-dark: #3D1D13;
    /* New variable for the dark brown used often */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: linear-gradient(135deg, #4FC3F7 0%, #0288D1 100%);
    /* Brighter Blue Gradient */
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.container {
    background-color: var(--background-color);
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    padding-bottom: 80px;
    animation: fadeIn 0.8s ease-out;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    /* Bolder headings */
    line-height: 1.2;
    color: #01579B;
    /* Deep Blue for headings */
    margin-bottom: 1rem;
}

h1 {
    animation: slideInDown 0.8s ease-out;
}

h2 {
    animation: slideInDown 1s ease-out;
}

p {
    margin-bottom: 1rem;
    color: #37474F;
}

.text-center {
    text-align: center;
}

.text-highlight {
    color: #0091EA;
    font-weight: 800;
}

.text-price {
    color: #F57F17;
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.05);
    animation: popIn 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.text-small {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2rem;
    background: linear-gradient(to bottom, #FFEA00, #FFD600);
    /* Super vivid yellow */
    color: #BF360C;
    /* Deep warm text */
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 6px 0 #FFAB00, 0 10px 20px rgba(255, 193, 7, 0.4);
    /* Colored shadow */
    transition: transform 0.1s, box-shadow 0.1s;
    width: 100%;
    max-width: 300px;
    text-align: center;
    margin: 1rem 0;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    animation: pulseBtn 2s infinite;
}

.btn:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #FFAB00, 0 3px 5px rgba(0, 0, 0, 0.2);
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    box-shadow: 0 4px 0 #FFAB00, 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Header/Hero */
.hero {
    background-color: var(--white);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-bottom: 5px solid #FFECB3;
    border-radius: 0 0 30px 30px;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

/* Urgency Trigger */
.urgency-trigger-box {
    background: #FFF5F5;
    border: 2px dashed #FF5252;
    padding: 1rem;
    border-radius: var(--radius-lg);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    animation: shake 4s infinite;
}

.spots-count {
    background: #FF5252;
    color: white;
    padding: 2px 10px;
    border-radius: 5px;
    font-weight: 900;
    font-size: 1.2rem;
    display: inline-block;
    box-shadow: 0 4px 0 #D32F2F;
}

.urgency-text {
    color: #D32F2F;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes shake {

    0%,
    90%,
    100% {
        transform: scale(1);
    }

    92% {
        transform: scale(1.05) rotate(2deg);
    }

    94% {
        transform: scale(1.05) rotate(-2deg);
    }

    96% {
        transform: scale(1.05) rotate(2deg);
    }

    98% {
        transform: scale(1.05) rotate(-2deg);
    }
}

.badge {
    background-color: #FFF8E1;
    color: #FF8F00;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid #FFD54F;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    animation: fadeIn 1.5s ease-out;
}

/* Features Card & List */
.feature-card {
    background: #FFFFFF;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
    overflow: hidden;
    position: relative;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card-header {
    background: linear-gradient(to right, #FFD600, #FFAB00);
    padding: 1rem 1.5rem;
    color: #3D1D13;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.feature-list {
    list-style: none;
    padding: 1.5rem 2rem;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #3D1D13;
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: #FFFDE7;
    color: #FFAB00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(255, 171, 0, 0.15);
}

/* Utility Classes for Snippets */
.section-no-bg {
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.calculator-card {
    border-bottom: 8px solid rgba(61, 29, 19, 0.1) !important;
    box-shadow: var(--shadow-lg) !important;
}

.math-box {
    border: 2px solid rgba(41, 182, 246, 0.2) !important;
}

.rotate-neg-1 {
    transform: rotate(-1deg);
}

.font-display {
    font-family: var(--font-main);
    font-weight: 800;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.opacity-10 {
    background-color: rgba(61, 29, 19, 0.1);
}

.opacity-20 {
    background-color: rgba(255, 193, 7, 0.2);
}

.opacity-70 {
    opacity: 0.7;
}

.opacity-80 {
    opacity: 0.8;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.items-end {
    align-items: flex-end;
}

.max-w-\[260px\] {
    max-width: 260px;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

.w-16 {
    width: 4rem;
}

.h-1\.5 {
    height: 0.375rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-3 {
    padding: 0.75rem;
}

.rounded-\[2rem\] {
    border-radius: 2rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.leading-tight {
    line-height: 1.25;
}

.leading-snug {
    line-height: 1.375;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.font-medium {
    font-weight: 500;
}

.font-black {
    font-weight: 900;
}

.gap-3 {
    gap: 0.75rem;
}


.feature-item:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.8s;
}

.feature-item:nth-child(5) {
    animation-delay: 1.0s;
}

.feature-icon {
    background-color: #E1F5FE;
    color: #0288D1;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 1.1rem;
}

/* Section Styling */
.section {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    margin: 1.5rem 1rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.section-title {
    font-size: 1.6rem;
    text-align: center;
    color: #0277BD;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Calculator/Math Section Modern */
.calculator-modern {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border-bottom: 8px solid rgba(61, 29, 19, 0.1);
    position: relative;
    overflow: hidden;
    margin: 1rem;
}

.calculator-modern .header {
    text-align: center;
    margin-bottom: 2rem;
}

.calculator-modern .math-box-modern {
    background: #F0F9FF;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(0, 180, 216, 0.15);
    position: relative;
}

.calculator-modern .badge-modern {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.calculator-modern .math-row-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 180, 216, 0.1);
    padding-bottom: 0.5rem;
    margin-bottom: 0.8rem;
}

.calculator-modern .math-row-modern span:last-child {
    font-weight: 800;
    color: #3D1D13;
}

.calculator-modern .result-box {
    text-align: center;
    margin-top: 1.5rem;
}

.calculator-modern .total-vivid {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem;
    border: 1px solid rgba(0, 180, 216, 0.1);
    box-shadow: var(--shadow-sm);
    display: inline-block;
    width: 100%;
}

.calculator-modern .profit-tag {
    background: #3D1D13;
    color: var(--white);
    padding: 6px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 1rem;
    transform: rotate(-1deg);
}

.calculator-modern .feature-item-modern {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.calculator-modern .feature-icon-modern {
    color: #4CAF50;
    font-size: 1.2rem;
    margin-top: 2px;
}

.calculator-modern .footer-quote {
    background: rgba(255, 214, 0, 0.1);
    border: 1px solid rgba(255, 214, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.2rem;
    text-align: center;
    font-weight: 700;
    color: #3D1D13;
    line-height: 1.3;
}

.calculator-modern {
    animation: fadeIn 1.2s ease-out;
}


/* Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.support-card {
    background-color: var(--white);
    padding: 1.5rem 1rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: none;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-bottom: 4px solid var(--secondary-color);
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.support-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: center;
    color: var(--secondary-color);
}

.support-card h4 {
    color: #3D1D13;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #B3E5FC;
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -8.5px;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #FFC107;
    border-radius: 50%;
    border: 3px solid #FFF;
    box-shadow: 0 0 0 3px #FFC107;
    transition: background-color 0.3s;
}

.timeline-item:hover .timeline-marker {
    background-color: #FF6F00;
    box-shadow: 0 0 0 4px #FF6F00;
}

/* Bonus Card Premium */
.bonus-premium {
    background: linear-gradient(135deg, #2c3e50, #000000);
    padding: 3px;
    /* for gradient border effect */
    border-radius: var(--radius-xl);
    position: relative;
    margin: 2rem 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
}

.bonus-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #FFD700, #FFEA00, #FFD700);
    z-index: 0;
    animation: borderRotate 4s linear infinite;
    opacity: 0.8;
}

@keyframes borderRotate {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

.bonus-content-inner {
    background: #1a1a1a;
    border-radius: calc(var(--radius-xl) - 3px);
    /* account for padding */
    padding: 2.5rem 1.5rem;
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 20%);
}

.bonus-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FFD700;
    color: #000;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 5px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
    animation: pulse 2s infinite;
}

.bonus-icon-large {
    font-size: 3.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
    animation: float 4s ease-in-out infinite;
}

.bonus-title-premium {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(to right, #FFF, #FFD700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.bonus-desc-premium {
    color: #E0E0E0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bonus-highlight {
    color: #FFD700;
    font-weight: 700;
    border-bottom: 1px dashed #FFD700;
}

.btn-bonus {
    background: linear-gradient(to right, #FFD700, #FDB931);
    color: #000;
    font-weight: 800;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #FFF8E1;
}

.btn-bonus:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    background: linear-gradient(to right, #FDB931, #FFD700);
}

/* Social Proof Carousel */
.section-carousel {
    padding: 2rem 0;
    overflow: hidden;
    /* Hide overflow from section, allow in container */
    background: linear-gradient(to right, #00B4D8, #0077B6);
    /* Blue bg inferred from text-white */
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.carousel-header {
    padding: 0 1.5rem 1.5rem 2.5rem;
}

.section-title-white {
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.2rem;
}

.section-subtitle-white {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 0 1.5rem 2rem 2.5rem;
    /* Left padding matches header */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.carousel-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.testimonial-card-modern {
    flex: 0 0 280px;
    /* Fixed width as requested */
    scroll-snap-align: center;
    background: #fff;
    border-radius: 2rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(61, 29, 19, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s;
}

/* Upsell Specific Styles - Premium Overhaul */
.upsell-progress {
    background: #ffffff;
    padding: 1rem;
    text-align: center;
    border-bottom: 3px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #0277BD;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: #E1F5FE;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    width: 85%;
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #81C784);
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
    border-radius: 10px;
    animation: progressGrow 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.upsell-header {
    background: linear-gradient(to bottom, #ffffff, #f8fdff);
    padding: 3rem 1.5rem 2rem;
    text-align: center;
}

.upsell-headline {
    color: #D32F2F;
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.upsell-subheadline {
    font-size: 1.1rem;
    color: #37474F;
    font-weight: 600;
    max-width: 90%;
    margin: 0 auto;
}

.upsell-vsl-mockup {
    background: #000;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 15px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.play-button:hover {
    transform: scale(1.1);
}

.benefit-pill {
    background: #ffffff;
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 180, 216, 0.1);
}

.benefit-pill i {
    color: #4CAF50;
    font-size: 1.5rem;
}

.offer-box-premium {
    background: linear-gradient(145deg, #ffffff, #fff9c4);
    border: 3px solid #FBC02D;
    border-radius: 30px;
    padding: 2.5rem 1.5rem;
    margin: 2rem 1rem;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(251, 192, 45, 0.2);
}

.exclusive-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF5252;
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 82, 82, 0.4);
    animation: heartBeat 2s infinite;
}

.offer-price-container {
    margin: 1.5rem 0;
}

.offer-price-old {
    color: #9e9e9e;
    text-decoration: line-through;
    font-size: 1.2rem;
    font-weight: 600;
}

.offer-price-new {
    color: #D32F2F;
    font-size: 4.5rem;
    font-weight: 950;
    line-height: 1;
    margin: 5px 0;
}

.people-watching {
    background: rgba(0, 180, 216, 0.05);
    padding: 8px 15px;
    border-radius: 20px;
    color: #0077B6;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.no-thanks-link {
    display: block;
    text-align: center;
    color: #9e9e9e;
    text-decoration: none;
    margin-top: 2rem;
    font-size: 0.9rem;
    transition: all 0.3s;
    font-weight: 500;
    opacity: 0.6;
}

.no-thanks-link:hover {
    color: #D32F2F;
    opacity: 1;
}

@keyframes heartBeat {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

.card-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.avatar-modern {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 193, 7, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.user-name {
    font-weight: 800;
    color: #3D1D13;
    line-height: 1;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.user-loc {
    font-size: 0.65rem;
    color: rgba(61, 29, 19, 0.6);
    font-weight: 500;
    margin-bottom: 0;
}

.card-body {
    position: relative;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.quote-mark {
    position: absolute;
    top: -0.5rem;
    left: -0.25rem;
    font-size: 2.5rem;
    color: #FFC107;
    opacity: 0.4;
    font-family: serif;
    line-height: 1;
}

.quote-text {
    font-size: 0.8rem;
    color: rgba(61, 29, 19, 0.8);
    font-weight: 500;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    z-index: 10;
    padding-left: 0.5rem;
    margin-bottom: 0;
}

.card-footer-modern {
    margin-top: auto;
    background-color: #F0F9FF;
    border: 1px solid rgba(41, 182, 246, 0.2);
    padding: 0.75rem;
    border-radius: 0.75rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #29B6F6;
}

.footer-label {
    font-size: 0.6rem;
    font-weight: 900;
    color: #29B6F6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.footer-value {
    font-weight: 700;
    color: #3D1D13;
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* Footer/Sticky Details */
.sticky-footer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 440px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border: 2px solid #FFC107;
    animation: slideUp 0.5s ease-out;
}

.sticky-text {
    font-weight: 800;
    padding-left: 0.5rem;
    color: #37474F;
    line-height: 1.2;
}

.guarantee-badge {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: #E3F2FD;
    border-radius: var(--radius-lg);
}

/* Accordion */
.accordion-item {
    border-bottom: 1px solid #CFD8DC;
    margin-bottom: 0.5rem;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.2rem;
    background: none;
    border: none;
    font-weight: 700;
    color: #455A64;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    transition: color 0.2s;
}

.accordion-header:hover {
    color: #0288D1;
}

.accordion-content {
    display: none;
    padding: 0 1.2rem 1.2rem 1.2rem;
    color: #607D8B;
    line-height: 1.6;
}

.accordion-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

/* Animations Keyframes */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

@keyframes pulseBtn {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Hero Refinement */
.hero-title {
    font-size: 1.8rem;
    color: #3D1D13;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #F57F17;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-p {
    font-weight: 600;
    color: #0288D1;
    background: #E1F5FE;
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    margin-top: 0.5rem;
}

/* Opacity and UI Helpers */
.bg-opacity-20 {
    background-color: rgba(255, 193, 7, 0.2);
}

.bg-opacity-10 {
    background-color: rgba(255, 193, 7, 0.1);
}

.border-opacity-10 {
    border-color: rgba(61, 29, 19, 0.1);
}

.border-opacity-20 {
    border-color: rgba(41, 182, 246, 0.2);
}

.text-opacity-70 {
    color: rgba(61, 29, 19, 0.7);
}

.text-opacity-80 {
    color: rgba(61, 29, 19, 0.8);
}

.text-opacity-60 {
    color: rgba(61, 29, 19, 0.6);
}

.text-opacity-50 {
    color: rgba(61, 29, 19, 0.5);
}

.shadow-pop-br {
    animation: shadow-pop-br 0.3s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
}

@keyframes shadow-pop-br {
    0% {
        box-shadow: 0 0 #FFAB00, 0 0 #FFAB00, 0 0 #FFAB00, 0 0 #FFAB00, 0 0 #FFAB00, 0 0 #FFAB00, 0 0 #FFAB00, 0 0 #FFAB00;
        transform: translateX(0) translateY(0);
    }

    100% {
        box-shadow: 1px 1px #FFAB00, 2px 2px #FFAB00, 3px 3px #FFAB00, 4px 4px #FFAB00, 5px 5px #FFAB00, 6px 6px #FFAB00, 7px 7px #FFAB00, 8px 8px #FFAB00;
        transform: translateX(-4px) translateY(-4px);
    }
}


.highlight-money {
    display: none;
}

/* Custom Highlight Money Snippet Classes */
.relative-container {
    position: relative;
}

.inline-block {
    display: inline-block;
}

.my-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.rotate-neg-2 {
    transform: rotate(-2deg);
}

.absolute-inset {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.bg-gold-circle {
    background-color: #FFC107;
}

.rounded-full {
    border-radius: 9999px;
}

.scale-110 {
    transform: scale(1.1);
}

.opacity-40 {
    opacity: 0.4;
}

.relative-money {
    position: relative;
}

.font-display-money {
    font-family: var(--font-main);
    font-weight: 900;
}

.text-6xl {
    font-size: 3.5rem;
    line-height: 1;
}

.text-blue-money {
    color: #29B6F6;
}

.drop-shadow-choco {
    filter: drop-shadow(2px 2px 0 #3D1D13);
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.gap-1 {
    gap: 0.25rem;
}

.animate-char {
    display: inline-block;
    animation: bounceChar 1.5s ease-in-out infinite;
}

@keyframes bounceChar {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Final CTA Box Custom Design */
.cta-final-section {
    text-align: center;
    padding: 3rem 1.5rem;
    background-color: transparent;
}

.cta-title-final {
    font-size: 2.2rem;
    /* Matches "Sua Páscoa Lucrativa" */
    line-height: 1.1;
    color: #3D1D13;
    font-weight: 900;
    margin-bottom: 2rem;
    font-family: var(--font-main);
}

.cta-title-final .highlight-blue {
    color: #29B6F6;
    /* Matches "começa aqui." */
    display: block;
    margin-top: 0.2rem;
}

.price-box-final {
    background-color: #FFC107;
    border: 3px solid #3D1D13;
    border-radius: 2rem;
    padding: 1rem 3rem;
    display: inline-block;
    box-shadow: 6px 6px 0px #3D1D13;
    margin-bottom: 2rem;
    transform: rotate(-2deg);
    /* Slight rotation for the sticker look */
    min-width: 280px;
}

.price-label-final {
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #3D1D13;
    margin-bottom: 0;
}

.price-value-final {
    font-size: 3.5rem;
    /* Large R$ 37,90 */
    font-weight: 900;
    color: #3D1D13;
    line-height: 1;
    margin-top: -5px;
}

.btn-final-cta {
    display: inline-block;
    background-color: #FFC107;
    color: #fff;
    font-weight: 900;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid #3D1D13;
    box-shadow: 4px 4px 0px #3D1D13;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
    max-width: 320px;
    margin-bottom: 1rem;
    transition: transform 0.1s, box-shadow 0.1s;
    text-shadow: 1px 1px 0 #D48806;
    /* Text shadow for legibility */
}

.btn-final-cta:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #3D1D13;
}

.btn-final-cta i {
    margin-left: 0.5rem;
    color: #3D1D13;
    /* Checkmark in dark brown to standout */
}

.security-note-final {
    font-size: 0.85rem;
    color: #6D4C41;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}


/* HIGH FIDELITY MOBILE RESPONSIVENESS */
@media screen and (max-width: 768px) {
    body {
        padding: 10px;
        background: linear-gradient(135deg, #4FC3F7 0%, #0288D1 100%);
    }

    .container {
        width: 100%;
        max-width: 100%;
        border-radius: 20px;
        padding-bottom: 90px;
    }

    h1.hero-title {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .text-price {
        font-size: 2.5rem;
    }

    .btn {
        width: 100%;
        max-width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    /* Stack Support Grid on Mobile */
    .support-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .support-card {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 1rem;
    }

    .support-icon {
        margin-bottom: 0;
        margin-right: 1rem;
        font-size: 1.8rem;
    }

    .support-card h4 {
        margin-bottom: 0.2rem;
    }

    /* Calculator Adjustments */
    .calculator-modern {
        padding: 1.5rem 1rem;
        margin: 1rem 0;
    }

    .calculator-modern .header h2 {
        font-size: 1.3rem;
    }

    .math-row-modern {
        font-size: 0.9rem;
    }

    .total-vivid .font-display {
        font-size: 1.1rem;
    }

    .text-price {
        font-size: 2.2rem;
    }

    /* Feature List Mobile */
    .feature-card {
        margin: 1.5rem 0;
        border-radius: 1.5rem;
    }

    .feature-list {
        padding: 1.5rem 1rem;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        margin-right: 0.8rem;
    }

    /* FAQ text size */
    .accordion-header {
        font-size: 0.95rem;
        padding: 1rem;
    }

    /* Sticky Footer */
    .sticky-footer {
        width: 94%;
        padding: 0.6rem 1rem;
        bottom: 15px;
    }

    .sticky-text {
        font-size: 0.8rem;
    }

    .btn-small {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Extra Small Screens */
@media screen and (max-width: 360px) {
    .hero-title {
        font-size: 1.4rem;
    }

    .math-row-modern {
        flex-direction: row;
        /* Keep row but adjust size */
        font-size: 0.8rem;
    }

    .total-vivid .font-display {
        font-size: 1rem;
    }

    .sticky-footer {
        flex-direction: column;
        border-radius: 20px;
        gap: 0.5rem;
        padding: 0.8rem;
    }

    .btn-small {
        width: 100%;
        text-align: center;
    }
}