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

:root {
    --bg-dark: #0f1115;
    --bg-darker: #08090a;
    --primary-green: #009B3A;
    --primary-red: #E50914;
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;
    --glass-bg: #111317;
    --glass-border: #2a2d35;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 4px 4px 0px var(--primary-red);
}

/* Solid Panel (Replaces Glass) */
.glass-panel {
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 30px;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    color: #fff;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 4px 4px 0px #005a22;
    border: 2px solid #005a22;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.cta-button:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #005a22;
}

.btn-text {
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.btn-subtext {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* --- Hero Section --- */
.hero-section {
    padding-top: 0px; 
    padding-bottom: 60px;
    display: flex;
    align-items: flex-start;
    background: var(--bg-darker);
    position: relative;
}

.hero-section .container {
    padding-top: 20px; /* Reduced padding for the first container */
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Reduced gap slightly */
    align-items: center;
    justify-content: flex-start; /* Removed center */
    text-align: center;
}

.badge {
    display: inline-block;
    background: rgba(229, 9, 20, 0.2);
    color: var(--primary-red);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(229, 9, 20, 0.5);
}

.main-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 4px 4px 0px #000;
}

.main-title span {
    color: var(--primary-red);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    z-index: 2;
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--primary-green);
    filter: blur(100px);
    opacity: 0.3;
    z-index: 1;
}

/* --- Demo Section --- */
.demo-section {
    background-color: var(--bg-darker);
}

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

.video-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    overflow: hidden;
    cursor: pointer;
}

.play-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    transition: background 0.3s;
}

.video-wrapper:hover .play-overlay {
    background: rgba(0,0,0,0.3);
}

.play-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(229,9,20,0.8));
}

.demo-text {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* --- Benefits Section --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
}

.benefit-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Urgency Section --- */
.urgency-section {
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
}

.urgency-box {
    max-width: 700px;
    margin: 0 auto;
    border-color: rgba(229, 9, 20, 0.3);
    box-shadow: 0 0 40px rgba(229, 9, 20, 0.1);
}

.urgency-box h2 {
    color: var(--primary-red);
    margin-bottom: 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-block span {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Outfit';
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    border-radius: 8px;
    min-width: 90px;
}

.time-block small {
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.urgency-box p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* --- Ideal Section --- */
.ideal-section {
    background-color: var(--bg-darker);
}

.check-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.check-list li {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.check-list li:hover {
    transform: translateX(10px);
    border-color: rgba(255,255,255,0.2);
}

.check-list li span {
    margin-right: 15px;
    font-size: 1.3rem;
}

/* --- Deliverables Section --- */
.deliverables-content {
    max-width: 800px;
    margin: 0 auto;
}

.deliverable-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--glass-border);
}

.deliverable-item:last-child {
    border-bottom: none;
}

.deliverable-item .icon-check {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-top: 2px;
}

.deliverable-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.deliverable-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Bonus Section --- */
.bonus-section {
    background-color: var(--bg-darker);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.bonus-card {
    position: relative;
    padding-top: 40px;
    border-color: rgba(0, 155, 58, 0.2);
}

.bonus-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.bonus-card h3 {
    margin-bottom: 15px;
    color: #fff;
}

.bonus-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Offer Section --- */
.offer-section {
    background: radial-gradient(circle at center, rgba(0, 155, 58, 0.1) 0%, var(--bg-dark) 70%);
}

.pricing-table {
    display: flex;
    justify-content: center;
}

.pricing-card {
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    border-color: var(--primary-green);
    box-shadow: 0 0 30px rgba(0, 155, 58, 0.15);
}

.popular-badge {
    background: var(--primary-red);
    color: white;
    padding: 8px 0;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 8px 8px 0 0;
    position: absolute;
    top: 0; left: 0; width: 100%;
}

.pricing-card {
    padding-top: 60px; /* space for badge */
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
}

.current-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
}

.plan-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    color: #e0e0e0;
}

.plan-features li:last-child {
    border-bottom: none;
}

.pricing-card .cta-button {
    width: 100%;
    margin-bottom: 20px;
}

.payment-methods {
    max-width: 100%;
    height: auto;
    opacity: 0.9;
    margin-top: 15px;
    filter: brightness(1.5); /* Make the grey logos pop more on dark bg */
}

/* --- FAQ Section --- */
.faq-section {
    background-color: var(--bg-darker);
}

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

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255,255,255,0.05);
}

.faq-question .arrow {
    transition: transform 0.3s;
}

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

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

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-muted);
}

/* --- Footer --- */
.footer-section {
    border-top: 1px solid var(--glass-border);
    padding: 40px 0;
}

.copyright {
    font-weight: 600;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .hero-image img {
        transform: none;
    }
    
    .hero-image:hover img {
        transform: none;
    }

    .countdown {
        gap: 10px;
    }

    .time-block span {
        font-size: 2rem;
        min-width: 60px;
        padding: 10px;
    }

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

    .cta-button {
        padding: 12px 24px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

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

    .btn-subtext {
        font-size: 0.7rem;
    }
}

/* --- Social Proof Section --- */
.social-proof-section {
    background-color: var(--bg-dark);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.proof-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Instagram Style */
.insta-card {
    background: #121212; 
    border: 1px solid #333;
}

.insta-header {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #262626;
}

.insta-header .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
}

.insta-header .user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.insta-header .user-info strong {
    font-size: 0.95rem;
    color: #fff;
}

.insta-header .user-info span {
    font-size: 0.8rem;
    color: #a8a8a8;
}

.insta-header .dots {
    color: #fff;
    font-weight: bold;
    letter-spacing: 2px;
}

.insta-content {
    padding: 15px;
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.4;
}

.insta-footer {
    padding: 10px 15px 20px;
}

.insta-footer .actions {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.insta-footer .actions span {
    margin-right: 15px;
    cursor: pointer;
}

.insta-footer .likes {
    font-size: 0.9rem;
    color: #fff;
}

/* WhatsApp Style */
.wpp-card {
    background: #0b141a;
    border: 1px solid #233138;
}

.wpp-header {
    background: #202c33;
    padding: 12px 15px;
    display: flex;
    align-items: center;
}

.wpp-header .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
}

.wpp-header .user-info {
    display: flex;
    flex-direction: column;
}

.wpp-header .user-info strong {
    color: #e9edef;
    font-size: 1rem;
}

.wpp-header .user-info span {
    color: #8696a0;
    font-size: 0.8rem;
}

.wpp-body {
    padding: 20px 15px;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-size: cover;
    background-position: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wpp-msg {
    max-width: 85%;
    padding: 8px 10px 8px 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    position: relative;
    color: #e9edef;
    line-height: 1.4;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.wpp-msg.received {
    background: #202c33;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.wpp-msg.received::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    border: 5px solid transparent;
    border-top-color: #202c33;
    border-right-color: #202c33;
}

.wpp-msg.sent {
    background: #005c4b;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.wpp-msg.sent::before {
    content: "";
    position: absolute;
    top: 0;
    right: -10px;
    border: 5px solid transparent;
    border-top-color: #005c4b;
    border-left-color: #005c4b;
}

.wpp-msg .time {
    display: inline-block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    float: right;
    margin-top: 5px;
    margin-left: 10px;
}

.wpp-msg .ticks {
    color: #53bdeb;
    margin-left: 3px;
    font-weight: bold;
}

/* --- Guarantee Section --- */
.guarantee-section {
    background: radial-gradient(circle at center, rgba(0, 155, 58, 0.1) 0%, var(--bg-darker) 70%);
}

.guarantee-box {
    max-width: 700px;
    margin: 80px auto 0;
    border-color: rgba(255, 215, 0, 0.3); /* Goldish border */
    padding-top: 80px;
    position: relative;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.05);
}

.guarantee-seal {
    width: 160px;
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
    animation: float 4s ease-in-out infinite;
}

.guarantee-box h2 {
    color: #ffd700; /* Gold */
    margin-bottom: 20px;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(255,215,0,0.3);
}

.guarantee-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

@keyframes float {
    0% { transform: translate(-50%, 0px); }
    50% { transform: translate(-50%, -10px); }
    100% { transform: translate(-50%, 0px); }
}

/* --- Top Banner --- */
.top-banner {
    background-color: #c71e1e; /* Red color matching image */
    color: #fff;
    width: 100%;
    /* Removed position: sticky so it scrolls with the page */
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.banner-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.banner-text {
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.banner-timer {
    background: rgba(0,0,0,0.4);
    padding: 4px 8px;
    border-radius: 4px;
    color: #ffd700;
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Mobile Adjustments for Top Banner */
@media (max-width: 768px) {
    .top-banner {
        padding: 6px 5px;
    }
    .banner-content {
        gap: 8px;
        flex-wrap: nowrap; /* Prevent stacking to keep the bar thin */
    }
    .banner-text {
        font-size: 0.75rem;
    }
    .banner-timer {
        font-size: 0.9rem;
        padding: 3px 6px;
    }
}
