:root {
    --primary-red: #D92525;
    --primary-red-hover: #b01c1c;
    --accent-gold: #FFC107;
    --bg-dark: #121212;
    --bg-card: #1E1E1E;
    --bg-light: #2A2A2A;
    --text-white: #FFFFFF;
    --text-gray: #B0B0B0;
    --text-black: #121212;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    /* Outer background */
    font-family: 'Poppins', sans-serif;
    color: var(--text-white);
    line-height: 1.6;
}

/* Mobile Container to simulate App View on Desktop */
.mobile-container {
    max-width: 480px;
    margin: 0 auto;
    background-color: var(--bg-dark);
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    overflow-x: hidden;
}

/* Typography Defaults */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-gray);
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Hero Section */
.hero {
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 1)), url('https://images.unsplash.com/photo-1580651315530-69c8e0026377?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80') center/cover;
}

.headline {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

.headline .highlight {
    color: var(--accent-gold);
}

.headline .money {
    color: #4CAF50;
    /* Green for money */
}

.sub-headline {
    font-size: 1rem;
    color: #ddd;
    font-style: italic;
    margin-bottom: var(--spacing-lg);
}

/* CTA Buttons */
.cta-button {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: var(--primary-red);
    color: white;
    font-weight: 800;
    text-align: center;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(217, 37, 37, 0.4);
    transition: transform 0.2s, background 0.2s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--primary-red-hover);
    transform: scale(1.02);
}

.cta-button.pulse {
    animation: pulse-animation 2s infinite;
}

.cta-sub {
    font-size: 0.8rem;
    margin-top: var(--spacing-xs);
    opacity: 0.8;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(217, 37, 37, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(217, 37, 37, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(217, 37, 37, 0);
    }
}

/* General Sections */
section {
    padding: var(--spacing-lg) var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
}

/* Connection Section */
.connection .text-content {
    font-size: 1.05rem;
}

.connection .emphasis {
    color: var(--accent-gold);
    font-weight: 600;
    border-left: 3px solid var(--accent-gold);
    padding-left: 12px;
}

/* Solution Section */
.brand-name {
    color: var(--primary-red);
    font-size: 1.6rem;
    display: block;
    margin-top: 5px;
}

.sub-title {
    text-align: center;
    font-size: 0.95rem;
}

.product-showcase {
    margin: var(--spacing-lg) 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

.objection-killer {
    background-color: var(--bg-card);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-lg);
    border-left: 4px solid var(--primary-red);
}

.objection-killer h3 {
    margin-bottom: 10px;
    color: var(--text-white);
}

/* Dishes List */
.dishes-list h3 {
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--accent-gold);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dish-card {
    display: flex;
    flex-direction: row;
    /* Keep side-by-side on mobile for better flow or column? row is better for 'list' feel */
    align-items: center;
    background-color: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    gap: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.dish-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    flex-shrink: 0;
}

.dish-info {
    padding: 15px;
}

.dish-info h4 {
    margin-bottom: 6px;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
}

.dish-info p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: #bbb;
    line-height: 1.4;
}

.dish-card.highlight-card {
    background: linear-gradient(45deg, #2A2A2A, #222);
    border: 1px dashed var(--accent-gold);
    justify-content: center;
    padding: 10px;
}

.dish-info.centered {
    text-align: center;
    width: 100%;
}

.dish-info.centered h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Social Proof */
.testimonials {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.testimonial-card {
    background-color: #075e54;
    /* WhatsApp Greenish */
    border-radius: 12px;
    overflow: hidden;
    font-size: 0.95rem;
}

.whatsapp-header {
    background-color: #054c44;
    padding: 8px 15px;
    font-size: 0.8rem;
    color: #aebac1;
    font-weight: 500;
}

.whatsapp-body {
    padding: 15px;
    color: white;
    background-color: #0b141a;
    /* WhatsApp Dark mode bg */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Offer Section */
.warning-text {
    text-align: center;
    color: #ff6b6b;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-lg);
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    border: 1px solid #333;
    position: relative;
}

.card.premium {
    border: 2px solid var(--accent-gold);
    background: linear-gradient(180deg, #1E1E1E 0%, #252525 100%);
    transform: scale(1.02);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-gold);
    color: #000;
    padding: 4px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    white-space: nowrap;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.price-tag {
    margin: 20px 0;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #666;
    font-size: 0.9rem;
}

.new-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.benefits {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.benefits li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    padding-left: 20px;
    text-indent: -18px;
    /* For hanging checkmarks */
}

.benefits.minimal {
    text-align: center;
    padding-left: 0;
}

.benefits.minimal li {
    padding-left: 0;
    text-indent: 0;
}

.cta-button.small {
    padding: 12px;
    font-size: 1rem;
    background-color: transparent;
    border: 2px solid var(--primary-red);
}

/* Guarantee */
.guarantee {
    text-align: center;
    background-color: #1a1a1a;
}

.guarantee-badge {
    display: inline-block;
    font-size: 3rem;
    margin-bottom: 10px;
}

/* FAQ */
.faq .section-title {
    margin-bottom: 30px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item {
    background-color: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 15px;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-white);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
}

.accordion-header::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: bold;
}

.accordion-header.active::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: rgba(0, 0, 0, 0.2);
}

.accordion-content p {
    padding: 15px;
    margin: 0;
    font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
    text-align: center;
    background-color: #000;
}

.final-cta .cta-button.large {
    padding: 20px;
    font-size: 1.2rem;
    margin-top: 20px;
}

/* Footer */
footer {
    padding: 30px 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    background-color: #050505;
}

footer a {
    color: #888;
}

footer .legal {
    margin-top: 15px;
    font-size: 0.7rem;
    opacity: 0.5;
}