/* ═══════════════════════════════════════════════════════
   FoodGood Landing — CSS
   ═══════════════════════════════════════════════════════ */

/* ─── Variables ─────────────────────────────────────── */
:root {
    --color-primary: #667eea;
    --color-primary-dark: #5a6fd6;
    --color-secondary: #764ba2;
    --color-accent: #ffd700;
    --color-accent-warm: #ff9800;
    --color-accent-purple: #9c27b0;
    --color-success: #4caf50;
    --color-success-bg: #e8f5e9;
    --color-success-text: #2e7d32;
    --color-danger: #e74c3c;
    --color-text: #333;
    --color-text-light: #666;
    --color-text-muted: #999;
    --color-bg: #fff;
    --color-bg-alt: #f8f9fa;
    --color-bg-dark: #2c3e50;
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.18);
    --shadow-card: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-card-hover: 0 8px 25px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-pill: 50px;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --container: 1200px;
    --section-pad: 80px;
    --transition: 0.3s ease;
}

/* ─── Reset & Base ──────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ─── Container ─────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── Section Base ──────────────────────────────────── */
.section {
    padding: var(--section-pad) 20px;
}

.section-title {
    font-size: 2.4em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-text);
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15em;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* ─── Scroll Reveal ─────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */
.hero {
    background: var(--gradient-primary);
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.8em;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25em;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero .discount-highlight {
    font-size: 1.4em;
    margin: 25px auto;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: var(--radius-md);
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero .discount-highlight .old-price {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 0.85em;
}

.hero .discount-highlight .new-price {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--color-accent);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: white;
    color: var(--color-primary);
    padding: 16px 44px;
    border-radius: var(--radius-pill);
    font-size: 1.1em;
    font-weight: 700;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button--outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.6);
}

.cta-button--outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
}

.trust-line {
    margin-top: 25px;
    font-size: 0.9em;
    opacity: 0.85;
    letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════
   PAIN POINTS
   ═══════════════════════════════════════════════════════ */
.pain-points {
    background: var(--color-bg-alt);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.pain-card {
    background: white;
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.pain-card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: var(--color-danger);
}

.pain-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.final-line {
    text-align: center;
    font-size: 1.15em;
    color: var(--color-text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   STEPS (How it works)
   ═══════════════════════════════════════════════════════ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step-icon {
    font-size: 3em;
    margin-bottom: 16px;
    display: inline-block;
    transition: transform var(--transition);
}

.step:hover .step-icon {
    transform: scale(1.15);
}

.step h3 {
    font-size: 1.35em;
    margin-bottom: 12px;
    color: var(--color-primary);
    font-weight: 700;
}

.step p {
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Step connector line (desktop only) */
@media (min-width: 769px) {
    .steps-grid::before {
        content: '';
        position: absolute;
        top: 45px;
        left: 16.67%;
        right: 16.67%;
        height: 2px;
        background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
        opacity: 0.3;
        z-index: 0;
    }
}

/* ═══════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════ */
.features {
    background: var(--color-bg-alt);
}

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

.feature-card {
    background: white;
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
    border-left: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-left-color: var(--color-primary);
}

.feature-card h3 {
    font-size: 1.15em;
    margin-bottom: 10px;
    color: var(--color-text);
    font-weight: 700;
}

.feature-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   REPORTS & ANALYTICS
   ═══════════════════════════════════════════════════════ */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.report-card {
    background: white;
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
}

.report-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.report-card .card-icon {
    font-size: 2.2em;
    margin-bottom: 12px;
}

.report-card h3 {
    font-size: 1.1em;
    margin-bottom: 12px;
    color: var(--color-text);
    font-weight: 700;
}

.report-card ul {
    padding: 0;
}

.report-card li {
    color: var(--color-text-light);
    font-size: 0.95em;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.report-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.reports-cta {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    max-width: 700px;
    margin: 0 auto;
}

.reports-cta h3 {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 1.15em;
}

.reports-cta p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   BUSINESS FORMATS (Key section)
   ═══════════════════════════════════════════════════════ */
.business-formats {
    background: var(--color-bg-alt);
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.format-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.format-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.format-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition);
}

.format-card:hover::before {
    opacity: 1;
}

.format-card .format-icon {
    font-size: 2.5em;
    margin-bottom: 14px;
}

.format-card h3 {
    font-size: 1.2em;
    margin-bottom: 6px;
    color: var(--color-text);
    font-weight: 700;
}

.format-card .format-audience {
    font-size: 0.9em;
    color: var(--color-primary);
    margin-bottom: 14px;
    font-weight: 500;
}

.format-card .format-list {
    padding: 0;
}

.format-card .format-list li {
    color: var(--color-text-light);
    font-size: 0.95em;
    padding: 5px 0;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}

.format-card .format-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
}

.format-note {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1.05em;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   CASES / TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.case-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.case-card .case-image {
    width: 100%;
    height: 200px;
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4em;
    color: var(--color-text-muted);
}

.case-card .case-content {
    padding: 24px;
}

.case-card .case-format {
    display: inline-block;
    background: var(--color-bg-alt);
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.8em;
    font-weight: 600;
    margin-bottom: 12px;
}

.case-card blockquote {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1.6;
    border-left: 3px solid var(--color-primary);
    padding-left: 14px;
}

.case-card .case-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.case-card .case-stats span {
    background: var(--color-bg-alt);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85em;
    color: var(--color-text-light);
    font-weight: 500;
}

.cases-note {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.95em;
    margin-top: 30px;
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════
   SCREENSHOTS CAROUSEL
   ═══════════════════════════════════════════════════════ */
.screenshots {
    background: var(--color-bg-alt);
}

.carousel-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-lg);
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.carousel-wrapper:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    pointer-events: none;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    object-fit: contain;
    pointer-events: none;
}

.carousel-slide .slide-caption {
    margin-top: 12px;
    color: var(--color-text-light);
    font-size: 0.95em;
    text-align: center;
    font-weight: 500;
}

.carousel-slide .slide-placeholder {
    width: 220px;
    height: 400px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--color-text-muted);
    font-size: 0.85em;
    flex-shrink: 0;
}

.carousel-slide .slide-placeholder .slide-icon {
    font-size: 2.5em;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    font-size: 1.2em;
    cursor: pointer;
    transition: all var(--transition);
}

.carousel-nav button:hover {
    background: var(--color-primary);
    color: white;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-text-muted);
    opacity: 0.4;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.carousel-dots .dot.active {
    opacity: 1;
    background: var(--color-primary);
    transform: scale(1.2);
}

.screenshots-caption {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1em;
    margin-top: 24px;
}

/* ═══════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════ */
.pricing {
    background: var(--gradient-primary);
    color: white;
}

.pricing .section-title {
    color: white;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.15em;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.pricing-card {
    background: white;
    color: var(--color-text);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 3px solid var(--color-accent);
    position: relative;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card.popular::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.pricing-card h3 {
    font-size: 1.3em;
    margin-bottom: 16px;
    color: var(--color-primary);
    font-weight: 700;
}

.price {
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--color-text);
}

.price-per-month {
    color: var(--color-text-muted);
    margin-bottom: 16px;
    font-size: 0.95em;
}

.discount {
    background: var(--color-success-bg);
    color: var(--color-success-text);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
    font-size: 0.9em;
}

.popular-label {
    color: var(--color-accent-warm);
    font-weight: 700;
    font-size: 0.9em;
    margin-top: 10px;
}

.economy-label {
    color: var(--color-accent-purple);
    font-weight: 700;
    font-size: 0.9em;
    margin-top: 10px;
}

.features-list {
    text-align: left;
    margin-top: 28px;
    padding: 24px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-list li {
    margin: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.95em;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
}

.trial-note {
    text-align: center;
    font-size: 1.05em;
    margin-top: 30px;
    background: rgba(255,255,255,0.15);
    padding: 18px 24px;
    border-radius: var(--radius-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Savings calculator */
.savings-calc {
    max-width: 500px;
    margin: 30px auto 0;
    background: rgba(255,255,255,0.12);
    padding: 24px;
    border-radius: var(--radius-md);
    font-size: 0.95em;
    line-height: 1.8;
}

.savings-calc strong {
    color: var(--color-accent);
}

/* Referral block */
.referral-block {
    max-width: 650px;
    margin: 30px auto 0;
    background: rgba(255,255,255,0.12);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: left;
}

.referral-block h3 {
    color: white;
    margin-bottom: 12px;
    font-size: 1.1em;
}

.referral-block li {
    margin: 6px 0;
    font-size: 0.95em;
}

/* ═══════════════════════════════════════════════════════
   REFERRAL PROGRAM
   ═══════════════════════════════════════════════════════ */
.referral {
    background: var(--color-bg-alt);
}

.referral-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 950px;
    margin: 0 auto;
}

.referral-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.referral-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.referral-card h3 {
    font-size: 1.15em;
    margin-bottom: 12px;
    color: var(--color-primary);
    font-weight: 700;
}

.referral-card .big-number {
    font-size: 2.8em;
    font-weight: 800;
    color: var(--color-primary);
    margin: 16px 0;
    line-height: 1;
}

.referral-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   HOW TO PAY
   ═══════════════════════════════════════════════════════ */
.how-to-pay-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto 30px;
    position: relative;
}

.pay-step {
    flex: 1;
    min-width: 200px;
    max-width: 240px;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.pay-step .step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.2em;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    position: relative;
    z-index: 1;
}

.pay-step h4 {
    font-size: 1em;
    margin-bottom: 6px;
    color: var(--color-text);
    font-weight: 700;
}

.pay-step p {
    font-size: 0.88em;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* Connector arrows between steps (desktop) */
@media (min-width: 769px) {
    .pay-step:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -12px;
        top: 14px;
        font-size: 1.5em;
        color: var(--color-primary);
        opacity: 0.5;
    }
}

.pay-note {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1.05em;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.faq {
    background: var(--color-bg-alt);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 12px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--color-bg-alt);
}

.faq-question h3 {
    font-size: 1.05em;
    color: var(--color-text);
    font-weight: 600;
    flex: 1;
}

.faq-question .faq-icon {
    font-size: 1.3em;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════ */
.final-cta {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.final-cta h2 {
    color: white;
    font-size: 2.2em;
    margin-bottom: 16px;
}

.final-cta > .container > p {
    font-size: 1.15em;
    margin-bottom: 36px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.cta-box h3 {
    color: var(--color-text);
    font-size: 1.3em;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-box p {
    color: var(--color-text-light);
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 28px;
}

.cta-box .cta-button {
    display: inline-block;
    margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
footer {
    background: var(--color-bg-dark);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

footer .footer-brand {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 6px;
}

footer .footer-year {
    color: var(--color-text-muted);
    font-size: 0.9em;
    margin-bottom: 16px;
}

footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

footer .footer-links a {
    color: #3498db;
    font-size: 0.9em;
    transition: color var(--transition);
}

footer .footer-links a:hover {
    color: #5dade2;
    text-decoration: underline;
}

footer .footer-contact {
    color: var(--color-text-muted);
    font-size: 0.9em;
}

footer .footer-contact a {
    color: #3498db;
}

footer .footer-contact a:hover {
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    :root {
        --section-pad: 60px;
    }

    .hero {
        padding: 70px 16px 60px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1.05em;
    }

    .hero .discount-highlight {
        font-size: 1.15em;
        padding: 12px 20px;
    }

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

    .section-subtitle {
        font-size: 1em;
        margin-bottom: 36px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }

    .formats-grid {
        grid-template-columns: 1fr;
    }

    .carousel-slide {
        flex-direction: column;
        align-items: center;
    }

    .carousel-slide .slide-placeholder {
        width: 180px;
        height: 320px;
    }

    .how-to-pay-steps {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .pay-step:not(:last-child)::after {
        content: '↓';
        position: absolute;
        right: auto;
        left: 50%;
        bottom: -22px;
        top: auto;
        transform: translateX(-50%);
        font-size: 1.3em;
    }

    .cta-form {
        padding: 24px 20px;
    }

    footer .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.7em;
    }

    .pain-grid,
    .features-grid,
    .reports-grid,
    .cases-grid,
    .pricing-cards,
    .referral-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════
   HERO LOGO
   ═══════════════════════════════════════════════════════ */
.hero-logo {
    text-align: center;
    margin-bottom: 24px;
}

.hero-logo img {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    filter: drop-shadow(0 4px 12px rgba(255,107,53,0.3));
}

[data-theme="dark"] .hero-logo img {
    filter: drop-shadow(0 4px 16px rgba(255,107,53,0.4));
}

/* ═══════════════════════════════════════════════════════
   ABOUT US
   ═══════════════════════════════════════════════════════ */
.about-us {
    background: var(--bg-section);
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--text-muted);
}

.about-text ul {
    text-align: left;
    display: inline-block;
    margin: 12px 0;
    padding-left: 20px;
}

.about-text ul li {
    margin-bottom: 6px;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   5 STEPS TO FIRST ORDER
   ═══════════════════════════════════════════════════════ */
.steps-section {
    background: var(--bg-section);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.step-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.steps-cta {
    text-align: center;
    margin-top: 24px;
}

/* ═══════════════════════════════════════════════════════
   THEME TOGGLE
   ═══════════════════════════════════════════════════════ */
.theme-toggle {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    z-index: 1000;
    transition: all var(--transition);
    backdrop-filter: blur(10px);
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .theme-toggle {
    background: rgba(30,30,40,0.9);
}

/* ═══════════════════════════════════════════════════════
   DARK THEME
   ═══════════════════════════════════════════════════════ */
[data-theme="dark"] {
    --color-text: #e4e4e8;
    --color-text-light: #a0a0a8;
    --color-text-muted: #6e6e78;
    --color-bg: #121218;
    --color-bg-alt: #1a1a24;
    --color-bg-dark: #0a0a12;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);
    --shadow-card: 0 2px 12px rgba(0,0,0,0.3);
    --shadow-card-hover: 0 8px 25px rgba(0,0,0,0.4);
}

[data-theme="dark"] .pain-card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .report-card,
[data-theme="dark"] .format-card,
[data-theme="dark"] .case-card,
[data-theme="dark"] .referral-card,
[data-theme="dark"] .pricing-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .carousel-wrapper,
[data-theme="dark"] .cta-box,
[data-theme="dark"] .reports-cta,
[data-theme="dark"] .carousel-slide .slide-placeholder {
    background: #1e1e28;
}

[data-theme="dark"] .pricing-card {
    color: var(--color-text);
}

[data-theme="dark"] footer .footer-links a {
    color: #5dade2;
}

[data-theme="dark"] footer .footer-contact a {
    color: #5dade2;
}

[data-theme="dark"] .faq-question:hover {
    background: #1e1e28;
}

[data-theme="dark"] .case-card .case-format {
    background: #1e1e28;
}
