/* Urgency Countdown Banner */
.urgency-banner-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
    color: white;
    padding: 12px 20px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.5s ease-out;
}

/* Desktop Defaults */
.urgency-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* Gap between timer and text groups */
    font-family: 'Poppins', sans-serif;
}

.timer-container,
.text-container {
    display: flex;
    align-items: center;
    gap: 6px;
}

.urgency-icon {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.urgency-text {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.countdown-timer {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 1px;
    min-width: 80px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.countdown-timer.urgent-pulse {
    animation: urgentPulse 0.5s infinite;
}

.urgency-cta {
    font-weight: 600;
    font-size: 0.875rem;
    opacity: 0.95;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes pulse {

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

    50% {
        transform: scale(1.2);
    }
}

@keyframes urgentPulse {

    0%,
    100% {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1);
    }

    50% {
        background: rgba(255, 255, 255, 0.4);
        transform: scale(1.05);
    }
}

/* Adjust body padding to account for fixed banner */
body {
    padding-top: 60px !important;
}

@media (max-width: 768px) {
    .urgency-banner-top {
        padding: 10px 15px;
    }

    .urgency-content {
        justify-content: center;
        gap: 12px;
        /* Space between timer block and text block */
    }

    .timer-container {
        /* Timer block stays horizontal */
    }

    .text-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 0;
    }

    .urgency-text {
        font-size: 0.9rem;
    }

    .countdown-timer {
        font-size: 1rem;
        padding: 4px 12px;
        min-width: 70px;
    }

    .urgency-cta {
        font-size: 0.8rem;
        margin-top: 0;
    }

    body {
        padding-top: 60px !important;
        /* Reduced height needed */
    }
}
/* ===================================
   MINIMALIST DESIGN SYSTEM
   MOBILE-FIRST APPROACH
   =================================== */
:root {
    /* Colors - Minimalist Palette */
    --primary: #2D3748;
    --primary-light: #4A5568;
    --accent: #667EEA;
    --accent-hover: #5A67D8;
    --success: #48BB78;
    --success-hover: #38A169;

    /* Neutrals - Clean & Subtle */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-50: #F7FAFC;
    --gray-100: #EDF2F7;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E0;
    --gray-600: #718096;
    --gray-700: #4A5568;
    --gray-900: #1A202C;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 5rem;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Shadows - Subtle */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.08);

    /* Border */
    --border: 1px solid var(--gray-200);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 20px;
}

body {
    font-family: var(--font-sans);
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.2s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fast animations for sections from testimonials onwards */
.fade-in-fast {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.fade-in-fast.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--primary);
    letter-spacing: -0.02em;
}

/* Buttons - Minimalist */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-700);
    border: var(--border);
}

.btn-secondary:hover {
    background: var(--gray-200);
}

.btn i {
    font-size: 1.125rem;
}

/* Hero - Clean & Minimal */
.hero-section {
    background: var(--off-white);
    padding: var(--spacing-lg) 0 var(--spacing-2xl);
    /* Reduced top padding */
    border-bottom: var(--border);
}

.hero-content {
    display: grid;
    gap: var(--spacing-xl);
    text-align: center;
}

.hero-text h1 {
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1.2;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    /* Reduced bottom margin */
    color: var(--primary);
    letter-spacing: -0.03em;
}

.hero-text h1 .highlight {
    color: var(--accent);
}

.offer-banner {
    background: linear-gradient(135deg, #FDF4FF 0%, #FFFFFF 100%);
    border: 2px dashed #C084FC;
    box-shadow: 0 8px 25px -5px rgba(192, 132, 252, 0.25);
    padding: 1rem 2rem;
    border-radius: 12px;
    margin: var(--spacing-sm) auto;
    /* Reduced margin */
    display: inline-block;
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.offer-banner:hover {
    transform: rotate(0deg) scale(1.02);
}

.offer-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #9333EA;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-title::before {
    content: '✨';
}

.hero-subtext {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--gray-700);
    margin: var(--spacing-md) 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.price-inline {
    color: #16A34A;
    font-weight: 900;
}

.hero-image {
    display: flex;
    justify-content: center;
    margin: var(--spacing-sm) 0;
    /* Reduced margin */
}

.dress-icon {
    max-width: 250px;
    opacity: 0.95;
    animation: float 3s ease-in-out infinite;
}

.price-highlight {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin: var(--spacing-sm) 0;
    /* Reduced margin */
}

.price-label {
    font-size: 1rem;
    color: var(--gray-700);
    font-weight: 500;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #16A34A;
    line-height: 1;
    animation: priceGlow 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(22, 163, 74, 0.3);
}

@keyframes priceGlow {

    0%,
    100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(22, 163, 74, 0.3);
    }

    50% {
        transform: scale(1.05);
        text-shadow: 0 0 30px rgba(22, 163, 74, 0.5);
    }
}

.trust-badge {
    margin-top: var(--spacing-lg);
}

.badge-img {
    max-width: 220px;
    margin: 0 auto;
    display: block;
    opacity: 0.9;
}

/* Hero CTA Button - Green with Pulse */
.hero-section .btn-primary {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 14px 0 rgba(34, 197, 94, 0.4);
    animation: heroButtonPulse 2s ease-in-out infinite;
}

.hero-section .btn-primary:hover {
    background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(34, 197, 94, 0.5);
}

@keyframes heroButtonPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 14px 0 rgba(34, 197, 94, 0.4);
    }

    50% {
        transform: scale(1.03);
        /* Max scale 1.03 instead of 1.2 */
        box-shadow: 0 6px 20px 0 rgba(34, 197, 94, 0.6);
    }
}

.wave-divider {
    display: none;
    /* Minimalist approach - no decorative elements */
}

/* Features - Purple Background with Checklist */
.features-section {
    background: linear-gradient(135deg, #A21CAF 0%, #7E22CE 100%);
    padding: var(--spacing-3xl) 0;
    color: var(--white);
    position: relative;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--white));
    pointer-events: none;
}

.features-section .section-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: var(--spacing-xl);
    text-align: center;
    letter-spacing: 0.02em;
}

.premium-showcase {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.premium-img {
    max-width: 300px;
    margin: 0 auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.features-checklist {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    max-width: 600px;
    margin: 0 auto var(--spacing-2xl);
}

.feature-check-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.feature-check-item i {
    color: #22C55E;
    font-size: 1.75rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-check-item p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--white);
    margin: 0;
}

.feature-check-item strong {
    font-weight: 900;
    font-size: 1.25rem;
}

.features-security-badge {
    text-align: center;
    position: relative;
    z-index: 1;
}

.security-badge-img {
    max-width: 250px;
    margin: 0 auto;
    display: block;
    opacity: 0.95;
}

/* Bonus - Card Style */
.bonus-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.bonus-section .section-title {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
}

.bonus-grid {
    display: grid;
    gap: var(--spacing-2xl);
    max-width: 900px;
    margin: 0 auto;
}

.bonus-card-new {
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.bonus-header {
    background: var(--primary);
    padding: var(--spacing-lg);
    text-align: center;
}

.bonus-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.bonus-content {
    padding: var(--spacing-xl);
    text-align: center;
}

.bonus-img {
    width: 100%;
    max-width: 350px;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-md);
}

.bonus-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: var(--spacing-lg);
}

.bonus-description strong {
    color: var(--primary);
    font-weight: 700;
}

.bonus-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.strikethrough {
    text-decoration: line-through;
    color: var(--gray-600);
}

.bonus-free {
    display: inline-block;
    background: transparent;
    border: 4px solid #FF6B00;
    border-radius: var(--radius-full);
    padding: var(--spacing-sm) var(--spacing-2xl);
    font-size: 2rem;
    font-weight: 900;
    color: #FF6B00;
    transform: rotate(-5deg);
    animation: pulse 2s ease-in-out infinite;
}

/* Target Audience - Purple Title Only */
.target-section {
    background: var(--white);
    padding: var(--spacing-3xl) 0;
    color: var(--gray-800);
}

.target-section .section-title {
    background: linear-gradient(135deg, #A21CAF 0%, #7E22CE 100%);
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: var(--spacing-2xl);
    text-align: center;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
}

.target-checklist {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
}

.target-check-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.target-check-item i {
    color: #22C55E;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.target-check-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    margin: 0;
}

.target-check-item strong {
    font-weight: 700;
    color: var(--primary);
}

.target-description {
    background: transparent;
    padding: var(--spacing-xl) 0;
    max-width: 700px;
    margin: 0 auto;
}

.target-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-800);
    margin-bottom: var(--spacing-md);
    background: transparent;
}

.target-description strong {
    font-weight: 700;
    color: var(--primary);
}

.target-description .final-price {
    font-size: 1.125rem;
    font-weight: 600;
}

.target-description .final-price strong {
    font-size: 1.5rem;
    font-weight: 900;
    color: #16A34A;
}

.checklist {
    max-width: 100%;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    background: var(--white);
    border-radius: var(--radius-md);
    border: var(--border);
}

.checklist-item i {
    color: var(--success);
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.checklist-item p {
    font-size: 0.9375rem;
    color: var(--gray-700);
}

/* How It Works */
.how-it-works-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.steps-grid {
    display: grid;
    gap: var(--spacing-xl);
}

.step-card {
    position: relative;
    background: var(--white);
    padding: var(--spacing-xl) var(--spacing-lg);
    padding-top: calc(var(--spacing-xl) + 20px);
    border-radius: var(--radius-lg);
    border: var(--border);
    text-align: center;
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: var(--spacing-md);
    opacity: 0.8;
}

.step-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--primary);
}

.step-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.process-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.process-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
}

.process-item i {
    color: var(--success);
    font-size: 1.125rem;
}

/* Testimonials */
.testimonials-section {
    padding: var(--spacing-3xl) 0;
}

.testimonials-grid {
    display: grid;
    gap: var(--spacing-lg);
}

.testimonial-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: var(--border);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.user-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
}

.stars {
    color: #F59E0B;
    font-size: 0.875rem;
}

.testimonial-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Testimonials - Purple Background with Videos */
.testimonials-section {
    background: linear-gradient(135deg, #A21CAF 0%, #7E22CE 100%);
    padding: var(--spacing-3xl) 0;
}

.testimonials-section .section-title {
    color: var(--white);
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: var(--spacing-2xl);
    text-align: center;
    letter-spacing: 0.05em;
}

.testimonials-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.video-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.video-wrapper iframe {
    display: block;
}

/* Guarantee */
.guarantee-section {
    padding: var(--spacing-xl) 0 var(--spacing-3xl) 0;
    background: var(--gray-50);
    margin-top: calc(var(--spacing-lg) * -1);
}

.guarantee-content {
    display: grid;
    gap: var(--spacing-lg);
    text-align: center;
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--success);
}

.guarantee-img {
    max-width: 100px;
    margin: 0 auto;
}

.guarantee-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
}

.guarantee-text p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
}

.guarantee-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    color: var(--success);
    font-weight: 600;
    font-size: 1rem;
}

/* Pricing - New Offer Cards Design */
.pricing-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.pricing-section .section-title {
    background: linear-gradient(135deg, #A21CAF 0%, #7E22CE 100%);
    color: var(--white);
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    border-radius: var(--radius-md);
}

.pricing-grid-new {
    display: grid;
    gap: var(--spacing-2xl);
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card-new {
    border: 4px solid var(--primary);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Card Headers */
.card-header-black {
    background: var(--primary);
    padding: var(--spacing-lg);
    text-align: center;
    position: relative;
}

.card-header-black h3 {
    color: var(--white);
    font-size: 1.5rem;
    /* Slightly smaller to match ref */
    font-weight: 800;
    /* Extra bold */
    margin: 0;
    text-transform: uppercase;
}

.best-seller-badge {
    background: #FFD700;
    color: var(--primary);
    font-weight: 700;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-sm);
    display: inline-block;
}

/* Basic Card - White Body */
.card-body-white {
    background: var(--white);
    padding: var(--spacing-2xl);
    background: var(--white);
    padding: var(--spacing-lg);
    /* Reduced padding to match compact ref */
    text-align: center;
}

.card-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dotted-bottom {
    width: 100%;
    border-bottom: 2px dotted #E5E7EB;
    padding-bottom: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    justify-content: flex-start;
    /* Align icon/text left layout-wise, but centered in card? Ref has them left aligned relative to themselves but centered block */
    padding-left: 10px;
    /* Indent slightly */
}

.plan-benefits {
    margin-bottom: var(--spacing-xl);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.benefit-item i {
    color: #22C55E;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 1rem;
    color: var(--gray-800);
    text-align: left;
}

.price-section {
    margin: var(--spacing-lg) 0;
}

.price-section .currency {
    font-size: 2rem;
    font-weight: 800;
    color: #22C55E;
    vertical-align: middle;
}

.price-section .amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: #22C55E;
    vertical-align: middle;
}

.btn-green {
    display: block;
    /* Full width block */
    background: #22C55E;
    color: var(--white);
    padding: 1rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    margin: var(--spacing-md) 0;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 6px rgba(34, 197, 94, 0.3);
}

.btn-green:hover {
    background: #16A34A;
    transform: translateY(-2px);
}

.upsell-text {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.upsell-highlight {
    font-size: 1rem;
    color: var(--gray-800);
    line-height: 1.6;
}

/* Premium Card - Purple Body */
.card-body-purple {
    background: linear-gradient(135deg, #A21CAF 0%, #7E22CE 100%);
    padding: var(--spacing-2xl);
    color: var(--white);
}

.product-showcase {
    position: relative;
    margin-bottom: var(--spacing-xl);
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    max-width: 300px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.emoji-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    font-size: 4rem;
}

.price-old {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B6B;
    text-decoration: line-through;
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.price-new-label {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: var(--spacing-xs);
}

.price-new-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    text-align: center;
    border: 4px solid #22C55E;
    border-radius: var(--radius-full);
    padding: var(--spacing-md) var(--spacing-xl);
    display: inline-block;
    margin: var(--spacing-lg) auto;
    transform: rotate(-2deg);
}

.payment-logos-premium {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
}

.payment-logos-premium img {
    max-width: 100%;
    height: auto;
    opacity: 0.9;
}

.premium-benefits {
    margin: var(--spacing-2xl) 0;
}

.premium-benefits .benefit-item {
    margin-bottom: var(--spacing-md);
}

.premium-benefits .benefit-item i {
    color: #22C55E;
    font-size: 1.25rem;
}

.premium-benefits .benefit-item span {
    color: var(--white);
    font-size: 1rem;
}

.btn-yellow {
    display: block;
    background: #FFD700;
    color: var(--primary);
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: var(--radius-md);
    font-weight: 900;
    font-size: 1.5rem;
    text-decoration: none;
    text-align: center;
    margin: var(--spacing-2xl) 0;
    transition: all 0.3s ease;
}

.btn-yellow:hover {
    background: #FFC700;
    transform: scale(1.05);
}

.payment-logos-bottom {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.payment-logos-bottom img {
    height: 24px;
    opacity: 0.8;
}


/* About */
.about-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.about-content {
    display: grid;
    gap: var(--spacing-lg);
    text-align: center;
}

.author-img {
    max-width: 160px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    border: var(--border);
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--primary);
}

.about-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: var(--spacing-sm);
}

.author-signature p {
    font-weight: 600;
    color: var(--accent);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: var(--border);
}

/* Final CTA */
.final-cta-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #A21CAF 0%, #7E22CE 100%);
    color: var(--white);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.final-cta-content p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.final-cta-section .btn-primary {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    color: var(--white);
    border: none;
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: 1.25rem;
    font-weight: 700;
    animation: ctaPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    transition: all 0.3s ease;
}

.final-cta-section .btn-primary:hover {
    background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.6);
}

@keyframes ctaPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 20px rgba(34, 197, 94, 0.6);
    }
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question i {
    font-size: 1rem;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.faq-answer p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-600);
}

.faq-answer strong {
    color: var(--primary);
}

/* Footer */
.footer {
    padding: var(--spacing-xl) 0;
    background: var(--gray-900);
    color: var(--gray-300);
    text-align: center;
    font-size: 0.875rem;
}

.footer p {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--gray-300);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

/* Responsive - Tablet */
@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-lg);
    }

    .section-title {
        font-size: 2.25rem;
    }

    .btn {
        width: auto;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .offer-title {
        font-size: 1.5rem;
    }

    .dress-icon {
        max-width: 280px;
    }

    .features-grid,
    .bonus-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin: 0 auto;
    }

    .checklist {
        max-width: 700px;
        margin: 0 auto;
    }

    .process-features {
        flex-direction: row;
        justify-content: center;
    }
}

/* Responsive - Desktop */
@media (min-width: 1025px) {
    .section-title {
        font-size: 2.5rem;
    }

    .hero-content {
        grid-template-columns: 1.2fr 1fr;
        text-align: left;
        align-items: center;
        gap: var(--spacing-3xl);
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .offer-title {
        font-size: 1.75rem;
    }

    .dress-icon {
        max-width: 350px;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .guarantee-content {
        grid-template-columns: auto 1fr;
        text-align: left;
        max-width: 900px;
        margin: 0 auto;
    }

    .guarantee-icon {
        justify-content: flex-start;
    }

    .about-content {
        grid-template-columns: auto 1fr;
        text-align: left;
        gap: var(--spacing-2xl);
        max-width: 1000px;
        margin: 0 auto;
    }

    .author-img {
        max-width: 200px;
    }

    .checklist {
        max-width: 800px;
    }
}
/* Premium Card Ref Styling */
.premium-card-ref {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    transform: scale(1.02);
    /* Slight scale to emphasize importance */
}

.card-header-premium {
    background: #000;
    padding: var(--spacing-md);
    text-align: center;
    position: relative;
    padding-bottom: 2rem;
    /* Space for the badge overlap if needed */
}

.card-header-premium h3 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.best-seller-badge-premium {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    /* Gold/Yellow */
    color: #000;
    font-weight: 800;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    z-index: 10;
    border-bottom: 3px solid #DAA520;
    /* Darker gold border for depth */
}

.card-body-wine {
    background: linear-gradient(160deg, #700b52 0%, #3e052d 100%);
    /* Deep wine/purple */
    /* Alternative more similar to image: #6a0dad to darker */
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1h2v2H1V1zm4 4h2v2H5V5zm4 4h2v2H9V9zm4 4h2v2h-2v-2zm4 4h2v2h-2v-2z' fill='%2390206e' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E"), linear-gradient(160deg, #700b52 0%, #2d0220 100%);
    padding: var(--spacing-2xl) var(--spacing-lg) var(--spacing-lg);
    text-align: center;
    color: var(--white);
    position: relative;
}

.product-showcase-premium {
    position: relative;
    margin-bottom: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.product-image-premium {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.emoji-badge-premium {
    position: absolute;
    bottom: -10px;
    left: -10px;
    font-size: 3rem;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

.price-container-premium {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-md) 0;
}

.price-old-premium {
    color: #ff0000;
    /* Red for emphasis */
    font-weight: 800;
    font-size: 1.5rem;
    /* Large DE price */
    text-decoration: none;
    /* Removed strikethrough based on ref? Ref has "DE R$149,90" in RED without line, or maybe strikethrough. Let's keep no strikethrough but red color if plain text. Ref image has red text "DE R$149,90". */
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.price-label-premium {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.price-ring-green {
    display: inline-block;
    position: relative;
    padding: 5px 30px;
    margin-top: 5px;
}

.price-ring-green::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-2deg);
    width: 100%;
    height: 100%;
    border: 5px solid #00FF00;
    /* Neon Green */
    border-radius: 50%;
    /* Oval */
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
    z-index: 0;
}

.price-ring-green .currency {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    vertical-align: top;
    margin-right: 5px;
    position: relative;
    z-index: 1;
}

.price-ring-green {
    font-size: 5rem;
    /* HUGE price */
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}


.benefits-list-premium {
    text-align: left;
    margin-bottom: var(--spacing-xl);
    padding: 0 var(--spacing-sm);
}

.benefit-item-premium {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 10px;
}

.benefit-item-premium i {
    color: #00FF00;
    /* Neon check */
    font-size: 1.5rem;
    margin-top: 2px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    flex-shrink: 0;
}

.benefit-item-premium span {
    font-size: 1.05rem;
    line-height: 1.4;
    color: var(--white);
}

.benefit-item-premium strong {
    font-weight: 800;
    /* Extra bold for keywords */
}

.btn-yellow-premium {
    display: block;
    width: 100%;
    background: #FFF500;
    /* Bright Neon Yellow */
    color: #000;
    font-weight: 900;
    font-size: 1.3rem;
    padding: 1.2rem;
    border-radius: 12px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 6px 0 #bf9b00, 0 15px 20px rgba(0, 0, 0, 0.4);
    /* 3D effect button */
    transition: all 0.2s;
    margin-top: var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.btn-yellow-premium:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 #bf9b00, 0 10px 15px rgba(0, 0, 0, 0.4);
}

.btn-yellow-premium::after {
    content: "👆";
    margin-left: 10px;
}

.payment-logos-premium {
    margin-top: var(--spacing-lg);
    opacity: 0.8;
    filter: brightness(0) invert(1);
    /* White logos */
}
/* ===================================
   MOBILE-SPECIFIC OPTIMIZATIONS
   Adicionado para performance PageSpeed
   =================================== */

/* Mobile Priority - Reduce font sizes for better above-the-fold */
@media (max-width: 768px) {

    /* Hero Section - Compact for mobile */
    .hero-section {
        padding: 30px 0 40px;
        /* Reduced vertical padding */
    }

    .hero-text h1 {
        font-size: 1.5rem !important;
        /* Reduced from 1.875rem */
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
    }

    .offer-banner {
        margin: 12px auto !important;
        padding: 12px 20px !important;
    }

    .offer-title {
        font-size: 1.1rem !important;
    }

    .hero-subtext {
        font-size: 0.95rem !important;
        margin: 12px auto !important;
        max-width: 90%;
    }

    .hero-image {
        margin: 15px 0 !important;
        /* Reduced */
    }

    .dress-icon {
        max-width: 200px !important;
        /* Reduced from 250px */
    }

    .price-highlight {
        margin: 12px 0 !important;
        /* Compacted */
    }

    .price-value {
        font-size: 2rem !important;
        /* Reduced from 2.5rem */
    }

    /* CTA Button - Larger touch target */
    .btn,
    .btn-primary,
    .btn-cta,
    .btn-green,
    .btn-yellow-premium {
        min-height: 56px !important;
        /* Touch-friendly 56px minimum */
        font-size: 1.05rem !important;
        padding: 16px 24px !important;
        font-weight: 700 !important;
    }

    /* Section spacing - more compact */
    .features-section,
    .bonus-section,
    .target-section,
    .how-it-works-section,
    .testimonials-section,
    .guarantee-section,
    .about-section {
        padding: 40px 0 !important;
        /* Reduced from var(--spacing-3xl) */
    }

    .section-title {
        font-size: 1.5rem !important;
        margin-bottom: 24px !important;
    }

    /* Ensure body has stable padding for fixed banner */
    body {
        padding-top: 50px !important;
        /* Reserve space for urgency banner */
    }

    /* Prevent layout shifts with aspect ratios */
    .dress-icon {
        aspect-ratio: 4/5;
        height: auto;
    }

    .product-image-premium {
        aspect-ratio: 3/4;
        height: auto;
    }

    .bonus-img {
        aspect-ratio: 3/2;
        height: auto;
    }
}

/* Extra Small Mobile (< 375px) - Very compact */
@media (max-width: 374px) {
    .hero-text h1 {
        font-size: 1.3rem !important;
    }

    .dress-icon {
        max-width: 180px !important;
    }

    .price-value {
        font-size: 1.75rem !important;
    }

    .btn {
        font-size: 0.95rem !important;
    }
}

/* Performance: Reduce animations on mobile to save resources */
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
    .fade-in {
        transition: all 0.15s ease !important;
        /* Faster animations */
    }

    @keyframes heroButtonPulse {

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

        50% {
            transform: scale(1.015);
            /* Reduced from 1.03 */
        }
    }

    @keyframes priceGlow {

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

        50% {
            transform: scale(1.02);
            /* Reduced */
        }
    }
}

/* Disable animations if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
