:root {
    --christmas-red: #B20D30;
    /* Richer, deeper red */
    --christmas-red-dark: #7D0922;
    --christmas-green: #155724;
    --christmas-green-bright: #28a745;
    --christmas-gold: #FFD700;
    --cream-white: #FFFAFA;
    --text-dark: #2C3E50;
    --whatsapp-green: #25D366;
    --font-heading: 'Fredoka', sans-serif;
    /* Replaced with user request "Daora" font */
    --font-body: 'Nunito', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #F5F0E8 0%, #E8DCC8 100%);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.5;
    min-height: 100vh;
}

/* --- Common Util --- */
.container {
    max-width: 600px;
    /* Mobile First Max Width */
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    /* Ensure z-index works inside */
    z-index: 2;
}

/* Ensure body occupies full height properly */
html,
body {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

.text-center {
    text-align: center;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* --- Typography --- */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.headline {
    color: var(--cream-white);
    font-size: 2.4rem;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.15);
}

.subheadline {
    color: #e0e0e0;
    /* Platinum Gray */
    font-size: 1.15rem;
    font-family: var(--font-body);
    font-weight: 400;
    margin-bottom: 25px;
}

.section-title {
    color: var(--cream-white);
    font-size: 2.1rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.section-desc {
    color: var(--cream-white);
    margin-bottom: 35px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* --- Hero --- */
.hero-section {
    padding-top: 30px;
    padding-bottom: 50px;
    background-image: url('hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    /* Dark overlay for text readability */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: 160px;
    margin-bottom: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
    border: 3px solid var(--cream-white);
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(-2deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(-2deg);
    }
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--cream-white);
    font-weight: 700;
    opacity: 1;
}

/* --- Buttons --- */
.cta-button {
    display: inline-block;
    width: 100%;
    background: linear-gradient(to bottom, #2ecc71, #219150);
    /* 3D Green */
    color: white;
    text-decoration: none;
    padding: 20px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.2rem;
    box-shadow: 0 6px 0 #145f32, 0 15px 20px rgba(0, 0, 0, 0.2);
    border: none;
    transition: transform 0.1s;
    position: relative;
    top: 0;
    cursor: pointer;
}

.cta-button:active {
    top: 6px;
    box-shadow: 0 0 0 #145f32, 0 0 5px rgba(0, 0, 0, 0.2);
}

.pulse-animation {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* --- 3D Steps (How it Works) --- */
.steps-3d-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.step-card-3d {
    width: 100%;
    max-width: 400px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-radius: 20px;
    padding: 5px;
    /* Border effect */
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0.15), 0 20px 30px rgba(0, 0, 0, 0.1);
    transform: perspective(800px) rotateX(5deg);
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.step-card-3d:hover {
    transform: perspective(800px) rotateX(0deg) translateY(-5px);
}

.step-card-inner {
    background: #fff;
    border-radius: 17px;
    padding: 20px;
    display: flex;
    align-items: center;
    /* Center vertically */
    gap: 15px;
    text-align: left;
    border: 1px solid #eee;
}

.step-number {
    background: var(--christmas-green);
    /* CHANGED TO GREEN */
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 0 #0f3d19;
    /* Darker Green Shadow */
}

.step-content h3 {
    color: var(--christmas-red);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    line-height: 1.3;
}

.step-connector {
    color: #FFEC00;
    /* Brighter Yellow */
    font-size: 2rem;
    opacity: 1;
    margin: -5px 0 5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* --- WhatsApp Gallery --- */
.whatsapp-reviews-gallery {
    margin-bottom: 50px;
}

.wa-gallery-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.wa-print {
    max-width: 280px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #ddd;
    flex-shrink: 0;
}

/* --- 3D Pricing Cards & Fixes --- */
.offer-section {
    padding: 40px 0;
}

.pricing-cards-3d {
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* More gap for badge */
    margin-top: 20px;
}

.card-3d {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1), 0 30px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.3s;
    border: 2px solid #f0f0f0;
}

.card-content {
    padding: 30px 20px;
}

.premium-card {
    border: 4px solid var(--christmas-gold);
    transform: scale(1.02);
    background: linear-gradient(to bottom, #fff, #fffdf5);
    z-index: 5;
}

.floating-badge {
    position: absolute;
    top: -25px;
    /* Move UP completely out of the card content */
    left: 50%;
    transform: translateX(-50%);
    background: #D4AF37;
    /* Soft Gold */
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    border: 2px solid #fff;
    z-index: 10;
}

.plan-name {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 800;
}

.premium-card .plan-name {
    /* color: var(--christmas-green); Removed to keep it blue/dark */
    font-size: 1.8rem;
}

.plan-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--christmas-green);
    line-height: 1;
    margin-bottom: 20px;
}

.plan-price .currency {
    font-size: 1.2rem;
    vertical-align: top;
    margin-top: 8px;
    display: inline-block;
    color: #888;
}

.plan-features li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #555;
    display: flex;
    gap: 12px;
    align-items: center;
    text-align: left;
}

.plan-features i {
    color: var(--christmas-red);
    font-size: 1.1rem;
    width: 25px;
    text-align: center;
}

.outline-btn {
    background: transparent;
    color: #888;
    border: 2px solid #aaa;
    box-shadow: none;
    padding: 15px;
    margin-top: 10px;
    top: 0;
}

.outline-btn:active {
    top: 0;
    transform: scale(0.98);
}

/* --- WhatsApp Player Styles --- */
.wa-waveform-image {
    display: flex;
    align-items: center;
    gap: 2px;
    border-radius: 5px;
    overflow: hidden;
    height: 30px;
    flex: 1;
}

.waveform-bar {
    background-color: #b3b3b3;
    width: 3px;
    border-radius: 2px;
    transition: background-color 0.2s;
}

.playing .waveform-bar {
    background-color: #25D366;
    animation: waveActive 0.5s infinite ease-in-out alternate;
}

.playing .waveform-bar:nth-child(2n) {
    animation-delay: 0.1s;
}

.playing .waveform-bar:nth-child(3n) {
    animation-delay: 0.2s;
}

@keyframes waveActive {
    from {
        height: 30%;
    }

    to {
        height: 100%;
    }
}

/* --- FAQ & Details --- */
details {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

summary {
    padding: 18px;
    font-weight: 700;
    color: var(--cream-white);
    list-style: none;
    position: relative;
    cursor: pointer;
}

summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    /* Bold */
    color: var(--christmas-green-bright);
    /* Green Plus */
}

details[open] summary::after {
    content: '-';
}

details p {
    padding: 0 18px 18px;
    color: #ffe6eb;
    line-height: 1.5;
}

/* --- Footer --- */
.main-footer {
    background: #0f2b1d;
    /* Deep Forest Green */
    color: #aaa;
    padding: 60px 0 40px;
    margin-top: 60px;
    border-top: 5px solid var(--christmas-gold);
}

/* Desktop */
@media(min-width: 768px) {
    .pricing-cards-3d {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }

    .card-3d {
        width: 320px;
    }

    .steps-3d-container {
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
    }

    .step-connector {
        transform: rotate(-90deg);
        margin: 0 10px;
    }
}

/* Reviewer */
.reviewer-photo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--christmas-gold);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* --- Floating Notifications (FIXED) --- */
#notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Let clicks pass through */
}

@media (max-width: 600px) {
    #notification-container {
        left: 10px;
        right: auto;
        bottom: 10px;
    }
}

.notification-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    border-left: 4px solid var(--whatsapp-green);
    animation: slideIn 0.5s ease-out forwards;
    pointer-events: auto;
    max-width: 320px;
    font-size: 0.9rem;
    color: #333;
    opacity: 0;
    /* Start hidden for animation */
}

@keyframes slideIn {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notif-icon {
    background: #e6ffea;
    color: var(--whatsapp-green);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.notif-content strong {
    display: block;
    color: var(--text-dark);
}

/* --- Refined Background (Premium) --- */
body {
    /* Deeper, more elegant red gradient with subtle noise/texture if possible, but keeping it clean for performance */
    background: radial-gradient(circle at 50% 0%, #d4143a 0%, #750015 100%);
    background-attachment: fixed;
    /* Parallax effect */
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.5;
    min-height: 100vh;
}

/* --- Bug Fixes & Missing Styles --- */

/* 1. Snowfall Fix (Was pushing content down) */
#snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: #fff;
    user-select: none;
    pointer-events: none;
    animation-name: fall;
    animation-timing-function: linear;
}

@keyframes fall {
    to {
        transform: translateY(105vh);
    }
}

/* 2. Audio Player Images Fix (Was too big) */
.wa-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.wa-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wa-avatar-small {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #fff;
    overflow: hidden;
    z-index: 2;
}

.wa-avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 3. WhatsApp Audio Layout Fix */
.whatsapp-audio-container {
    max-width: 400px;
    margin: 0 auto 20px;
}

.whatsapp-bubble {
    background: #f0f0f0;
    border-radius: 0 15px 15px 15px;
    /* Message from others style */
    padding: 10px;
    display: flex;
    gap: 10px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.wa-player {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wa-player-top {
    font-size: 0.8rem;
    color: var(--whatsapp-green);
    /* Or standard name color */
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

.wa-label {
    color: #999;
    font-weight: 400;
}

.wa-player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    margin-bottom: 5px;
}

.wa-play-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-player-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #999;
}

/* 4. Guarantee Box Fix (Premium Certificate Style) */
.guarantee-box {
    margin-top: 50px;
    background: linear-gradient(135deg, #fffdfa, #fdfbf7);
    border: 3px solid #D4AF37;
    /* Metallic Gold */
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(212, 175, 55, 0.1);
    position: relative;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Simulated "Corner Screws" or details for realism */
.guarantee-box::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid #e6c86e;
    border-radius: 8px;
    pointer-events: none;
}

.guarantee-seal-img {
    width: 110px;
    height: auto;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s;
}

.guarantee-box:hover .guarantee-seal-img {
    transform: scale(1.05) rotate(5deg);
}

.guarantee-text {
    flex: 1;
}

.guarantee-text h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    display: inline-block;
}

.guarantee-text p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.guarantee-text strong {
    color: #d4143a;
    /* Highlight in Christmas Red */
    font-weight: 700;
}

.guarantee-note {
    font-size: 0.85rem !important;
    color: #888 !important;
    font-weight: 600;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .guarantee-box {
        flex-direction: row;
        text-align: left;
        padding: 40px;
    }

    .guarantee-text h3 {
        display: block;
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* --- Benefits Section Styles (Glassmorphism & Contrast) --- */
.benefits-story {
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-row {
    background: rgba(255, 255, 255, 0.1);
    /* Transparent White */
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.2s;
}

.benefit-row:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--christmas-gold);
    background: rgba(0, 0, 0, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.benefit-content h3 {
    color: var(--christmas-gold);
    font-size: 1.3rem;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.benefit-content p {
    color: var(--cream-white);
    font-size: 1rem;
    line-height: 1.4;
    opacity: 0.95;
    margin: 0;
}

/* --- Green Sections (User Request) --- */
.section-green {
    background: #114B2A;
    /* Deep Christmas Green */
    background: radial-gradient(circle at 50% 0%, #155724 0%, #0c3315 100%);
    position: relative;
    padding: 50px 0;
    box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.3);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.section-green .section-title {
    color: var(--christmas-gold);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.section-green .section-desc {
    color: #e6ffea;
}

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* --- VSL Player Section --- */
.vsl-section {
    padding: 50px 0;
    background: rgba(0, 0, 0, 0.2);
}

.vsl-wrapper {
    max-width: 800px;
    margin: 30px auto 0;
    padding: 0 20px;
}

vturb-smartplayer {
    display: block !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 400px !important;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .vsl-wrapper {
        padding: 0 10px;
    }

    vturb-smartplayer {
        border-radius: 8px;
        max-width: 100% !important;
    }
}

/* --- Benefits Section Light Background --- */
.benefits-story {
    background: transparent;
    padding: 50px 0;
    margin: 50px auto;
    position: relative;
}

.benefit-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    padding: 25px;
    background: #D8D8D8;
    border-radius: 15px;
    border-left: 5px solid var(--christmas-gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-row:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-row:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

.benefit-content h3 {
    color: #B20D30;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.benefit-content p {
    color: #1a1a1a;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}