/* 
   Project: 101 Receitas de Petiscos - Version 2.0 
   Theme: Modern Boteco Chic
   Author: Antigravity
*/

:root {
    /* Color Palette */
    --primary: #046C4E;
    /* Deep Emerald */
    --primary-dark: #03543f;
    --secondary: #D97706;
    /* Golden Amber */
    --accent: #B91C1C;
    /* Terracotta Red */
    --bg-body: #FDFBF7;
    /* Warm Cream */
    --bg-white: #ffffff;
    --text-main: #1F2937;
    /* Charcoal Navy */
    --text-muted: #4B5563;
    --text-light: #9CA3AF;

    /* Spacing & Layout */
    --container-padding: 1.5rem;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary);
    letter-spacing: -0.5px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, #fbbf24 100%);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.btn-lg {
    font-size: 1.25rem;
    width: 100%;
    max-width: 400px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 8px;
    background-color: var(--secondary);
    color: white;
    font-weight: 600;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.shine {
    position: relative;
    overflow: hidden;
}

.shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine-effect 3s infinite;
}

@keyframes shine-effect {
    100% {
        left: 100%;
    }
}

/* Header & Promo */
.promo-bar {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.site-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
}

.desktop-nav {
    display: none;
}

.desktop-nav a {
    font-weight: 500;
    color: var(--text-main);
    margin: 0 1rem;
}

.desktop-nav a:hover {
    color: var(--secondary);
}

/* Hero Section */
.hero-section {
    padding: 1rem 0 2rem;
    text-align: center;
    background: radial-gradient(circle at top right, #fff7ed, transparent);
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-title .highlight {
    background: linear-gradient(to right, var(--secondary), #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-title .subtitle {
    font-size: 1.5rem;
    color: var(--text-main);
    display: block;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-banner-wrapper {
    margin: 2rem auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid white;
    width: 95%;
    max-width: 450px;
}

.hero-banner {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* Mudado para contain para garantir que o vídeo apareça inteiro */
}

@media (max-width: 768px) {
    .hero-banner-wrapper {
        max-width: 280px;
        /* Tamanho muito mais amigável para celular */
        margin: 1rem auto;
    }
}

.price-anchor {
    margin-bottom: 1.5rem;
}

.old-price {
    font-size: 1rem;
    color: var(--text-light);
}

.strike {
    text-decoration: line-through;
    color: var(--accent);
}

.new-price {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

/* Benefits Section */
.benefits-section {
    padding: 3rem 0;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.benefits-grid {
    display: grid;
    gap: 1rem;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-body);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s;
}

.benefit-card:hover {
    transform: translateX(5px);
    border-color: var(--secondary);
}

.icon-check {
    color: var(--primary);
    min-width: 24px;
}

/* Value Prop Section */
.value-prop-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    text-align: center;
}

.highlight-text {
    color: var(--secondary);
}

.feature-box {
    background: var(--primary);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: var(--shadow-lg);
}

.feature-headline {
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-sub,
.feature-text,
.feature-cta {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mini-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.mini-feat {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.vertical-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto;
}

.benefit-row {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    border-left: 6px solid #22c55e;
    /* Green accent border matching reference vibe */
    transition: transform 0.2s;
}

.benefit-row:hover {
    transform: translateX(5px);
}

.benefit-row .check-icon {
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-row p {
    font-size: 1.1rem;
    color: var(--text-main);
    margin: 0;
    font-weight: 500;
}

.center-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-xl {
    font-size: 1.5rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(to right, #eab308, #22c55e);
    /* Yellow to Green gradient */
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.4);
    width: 100%;
    max-width: 500px;
}

.btn-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(34, 197, 94, 0.5);
    transform: translateY(-3px);
}

.value-grid-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    /* 2 rows */
    gap: 1rem;
    max-width: 800px;
    margin: 2rem auto;
}

.value-grid-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.value-grid-images img:hover {
    transform: scale(1.02);
}

.img-large {
    grid-column: span 2;
    /* Spans full width */
    height: 250px;
    /* Fixed height for consistency */
}

.img-small {
    height: 200px;
}

.img-large img,
.img-small img {
    height: 100%;
}

/* Preview Section */
.preview-section {
    padding: 4rem 0;
    background: var(--primary);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.recipe-card {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    color: var(--text-main);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
}

.recipe-card:hover {
    transform: translateY(-5px);
}

.recipe-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recipe-info {
    padding: 1.25rem;
}

.recipe-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.recipe-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.recipe-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.highlight-time {
    color: var(--secondary);
    font-weight: 800;
}

.highlight-time .meta-label {
    /* Implicitly inherits color, but we can be explicit if needed */
    color: inherit;
}

.more-recipes-card {
    margin-top: 3rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.more-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.more-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Bonus Grid */
.bonus-section {
    padding: 4rem 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    border: 1px solid #fed7aa;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.bonus-card img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-sm);
}

.bonus-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.price-tag {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    /* Removed container light bg */
    padding: 0;
}

.price-tag .old {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

.price-tag .free {
    background: #22c55e;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

/* Offer Section */
.offer-section {
    padding: 4rem 0;
    background: #fff7ed;
}

.offers-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.offer-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    border: 1px solid #e5e7eb;
}

/* Premium Card Highlight */
.offer-card.popular {
    border: 3px solid #f97316;
    /* Orange Border */
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(249, 115, 22, 0.2);
}

.ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ef4444;
    /* Red Ribbon */
    color: white;
    padding: 0.5rem 2rem;
    font-weight: 800;
    border-radius: 50px;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.offer-header {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.badge.blue {
    background: #3b82f6;
}

.badge.red {
    background: transparent;
    color: #b91c1c;
    font-size: 1.1rem;
}

.offer-features {
    margin-bottom: 2rem;
    text-align: left;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-main);
}

.icon-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle.green {
    background: #22c55e;
    color: white;
}

.icon-circle.green i {
    width: 16px;
    height: 16px;
    stroke-width: 4px;
}

.icon-circle.orange {
    background: #f97316;
    color: white;
}

.icon-circle.orange i {
    width: 14px;
    height: 14px;
}

.pricing {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing .discount .pill {
    background: #ef4444;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-left: 5px;
}

.final-price {
    font-family: 'Poppins', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: #22c55e;
    /* Green Price */
    line-height: 1;
    margin: 0.5rem 0;
    letter-spacing: -2px;
}

/* Upsell Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.4s ease;
}

.modal-header {
    background: #e11d48;
    background: linear-gradient(135deg, #ff1700 0%, #b65f00 100%);
    padding: 2rem 1.5rem;
    text-align: center;
    color: white;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    transition: 0.2s;
}

.close-modal:hover {
    color: white;
    transform: scale(1.1);
}

.special-badge {
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.modal-header h2 {
    color: white;
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.modal-header p {
    font-size: 0.95rem;
    opacity: 0.9;
    max-width: 300px;
    margin: 0 auto;
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.price-comparison {
    margin-bottom: 1.5rem;
}

.old-price-modal {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
    display: block;
    margin-bottom: 0.25rem;
}

.modal-main-price {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #0e9200;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.modal-main-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.save-badge {
    position: absolute;
    top: -10px;
    right: -20px;
    background: #d1fae5;
    color: #047857;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 800;
    transform: rotate(10deg);
}

.modal-benefits {
    text-align: left;
    margin: 1.5rem 0;
    background: #f8fafc;
    padding: 1.25rem;
    border-radius: 12px;
}

.benefits-title {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #1e293b;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.modal-benefits ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #4b5563;
}

.modal-benefits ul li i {
    width: 16px;
    height: 16px;
    color: #22c55e;
    stroke-width: 3px;
}

.btn-modal {
    background: #22c55e;
    box-shadow: 0 4px 6px -1px rgba(34, 197, 94, 0.4);
    font-size: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.5);
}

.no-thanks {
    display: block;
    margin-top: 1rem;
    color: #000000;
    font-size: 0.8rem;
    text-decoration: underline;
    cursor: pointer;
}

.no-thanks:hover {
    color: #6b7280;
}

.modal-security {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #10b981;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.btn-green {
    background: linear-gradient(to bottom, #0e9200, #0e9200);
    color: white;
    font-size: 1.3rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px -1px rgba(34, 197, 94, 0.4);
    border-bottom: 4px solid #15803d;
    /* Physical button feel */
}

.btn-green:hover {
    transform: translateY(2px);
    border-bottom-width: 2px;
}

.guarantee {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Social Testimonials */
.testimonials-section {
    padding: 4rem 0;
    background: white;
}

.social-title {
    color: #4ade80;
    /* Light green like reference */
    background: -webkit-linear-gradient(#22c55e, #84cc16);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.2rem;
    font-weight: 800;
}

.testimonials-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.social-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.card-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.card-header .meta h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    font-family: 'Inter', sans-serif;
}

.card-header .meta span {
    font-size: 0.8rem;
    color: #6b7280;
}

.dots {
    margin-left: auto;
    color: #9ca3af;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
}

.comment-text {
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f3f4f6;
    padding-top: 0.5rem;
    font-size: 0.8rem;
    color: #6b7280;
}

.card-footer .reactions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.heart-icon {
    color: #ef4444;
}

.card-footer .actions {
    display: flex;
    gap: 1rem;
}

.card-footer .actions span {
    cursor: pointer;
    font-weight: 500;
}

.card-footer .actions span:hover {
    text-decoration: underline;
}

/* FAQ */
.faq-section {
    padding: 4rem 0;
    background: white;
}

.faq-item {
    background: var(--bg-body);
    margin-bottom: 1rem;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    /* Hide default arrow */
    position: relative;
    padding-right: 3rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.25rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: var(--text-main);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}


/* Media Queries */
@media (min-width: 768px) {
    .site-header {
        padding: 1.5rem 0;
    }

    .logo {
        font-size: 1.5rem;
    }

    .desktop-nav {
        display: block;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    /* Side by side layout for Offers on tablet+ */
    .offers-wrapper {
        grid-template-columns: 1fr 1.1fr;
        /* Popular card slightly bigger */
        align-items: center;
    }

    .offer-card.popular {
        transform: scale(1.1);
        z-index: 10;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }
}

@media (min-width: 1024px) {
    .hero-section .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 3rem;
        text-align: left;
    }

    .hero-description {
        margin-left: 0;
    }

    .hero-banner-wrapper {
        order: 2;
        margin: 0;
    }

    .btn-lg {
        width: auto;
        min-width: 300px;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Make first item span all */
    .benefits-grid .benefit-card:first-child {
        grid-column: span 3;
        justify-content: center;
        background: #ecfdf5;
        border-color: var(--primary);
        font-weight: 700;
    }

    .mobile-only-price {
        display: none;
    }

    .desktop-only-price {
        display: block;
    }
}

@media (max-width: 1023px) {
    .desktop-only-price {
        display: none;
    }

    .mobile-only-price {
        display: block;
    }
}

/* Mobile optimizations for Modal */
@media (max-width: 600px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
        /* Prevent overflow */
        display: flex;
        flex-direction: column;
    }

    .modal-header {
        padding: 1rem 0.5rem;
        /* Reduced again */
        flex-shrink: 0;
    }

    .modal-header h2 {
        font-size: 1.15rem;
        /* Smaller */
        margin-bottom: 0.25rem;
    }

    .modal-header p {
        font-size: 0.8rem;
        margin-bottom: 0;
    }

    .special-badge {
        font-size: 0.65rem;
        padding: 2px 8px;
        margin-bottom: 0.5rem;
    }

    .modal-body {
        padding: 0.75rem 1rem;
        /* Compact padding */
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        /* Tighter gap */
    }

    .price-comparison {
        margin-bottom: 0.25rem;
    }

    .modal-main-price {
        font-size: 2.3rem;
        /* Smaller */
    }

    .old-price-modal {
        font-size: 0.85rem;
    }

    .save-badge {
        font-size: 0.6rem;
        top: -5px;
        right: -10px;
    }

    .modal-benefits {
        margin: 0.5rem 0 0.75rem;
        padding: 0.75rem;
        /* Compact benefits */
    }

    .benefits-title {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .modal-benefits ul li {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
        line-height: 1.2;
    }

    .btn-modal {
        font-size: 0.9rem;
        padding: 0.8rem;
        margin-top: auto;
    }

    .close-modal {
        top: 8px;
        right: 12px;
        font-size: 1.25rem;
    }

    .no-thanks {
        font-size: 0.7rem;
        margin-top: 0.5rem;
        margin-bottom: 0.25rem;
    }

    .modal-security {
        margin-top: 0.25rem;
        font-size: 0.65rem;
    }
}