@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #D4831F;
    --primary-light: #F5A623;
    --primary-dark: #B5691A;
    --secondary: #1B1F3B;
    --secondary-light: #2A2F52;
    --accent: #E8B86D;
    --bg-warm: #FDF8F0;
    --bg-cream: #FAF5ED;
    --bg-white: #FFFFFF;
    --text-dark: #1B1F3B;
    --text-muted: #6B7194;
    --text-light: #9AA0BE;
    --border: rgba(27, 31, 59, 0.08);
    --green: #22C55E;
    --green-light: #DCFCE7;
    --radius: 1.25rem;
    --shadow-soft: 0 4px 24px rgba(27, 31, 59, 0.06);
    --shadow-medium: 0 8px 40px rgba(27, 31, 59, 0.1);
    --shadow-glow: 0 8px 32px rgba(212, 131, 31, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--bg-warm);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.font-display {
    font-family: 'Playfair Display', serif;
}

/* ══════════ COUNTDOWN BAR ══════════ */
.countdown-bar {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 100;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.countdown-bar .timer {
    display: flex;
    gap: 6px;
}

.countdown-bar .time-block {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 2px 8px;
    font-variant-numeric: tabular-nums;
    min-width: 36px;
    backdrop-filter: blur(4px);
}

/* ══════════ CONTAINER ══════════ */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ══════════ HERO ══════════ */
.hero {
    background: linear-gradient(180deg, var(--bg-warm) 0%, #FFF 100%);
    padding: 60px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 131, 31, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: var(--secondary);
    line-height: 1.15;
    margin-bottom: 16px;
    animation: fadeInUp 0.7s ease;
}

.hero h1 span {
    color: var(--primary);
}

.hero .subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 32px;
    animation: fadeInUp 0.8s ease;
}

/* VSL */
.vsl-wrapper {
    max-width: 720px;
    margin: 0 auto 32px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--border);
    animation: fadeInUp 0.9s ease;
}

.vsl-wrapper .smart-player-container {
    position: relative;
    padding-top: 56.25%;
}

.vsl-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 24px 0;
    animation: fadeInUp 1s ease;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
}

.trust-badge .icon {
    width: 32px;
    height: 32px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1rem;
}

/* CTA Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
    padding: 20px 40px;
    border: none;
    border-radius: 16px;
    border-bottom: 4px solid var(--primary-dark);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: none;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
    animation: pulseBtn 2s infinite;
    position: relative;
    overflow: hidden;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 131, 31, 0.35);
}

.cta-btn:active {
    transform: translateY(0);
}

.cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmer 3s infinite;
}

.cta-small-text {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ══════════ SECTION COMMON ══════════ */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 900;
    text-align: center;
    color: var(--secondary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 48px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    background: rgba(212, 131, 31, 0.08);
    border: 1px solid rgba(212, 131, 31, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    margin: 0 auto 16px;
}

/* ══════════ FEATURES ══════════ */
.features {
    background: #fff;
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-warm);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(212, 131, 31, 0.3);
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 131, 31, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: #fff;
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ══════════ BENEFITS ══════════ */
.benefits {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.benefits::before,
.benefits::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
}

.benefits::before {
    top: -100px;
    left: -100px;
    background: rgba(212, 131, 31, 0.15);
}

.benefits::after {
    bottom: -100px;
    right: -100px;
    background: rgba(59, 130, 246, 0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: background 0.3s;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.benefit-check {
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.8rem;
    color: #fff;
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

/* ══════════ BONUSES ══════════ */
.bonuses {
    background: var(--bg-cream);
    padding: 100px 0;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 48px;
}

.bonus-card {
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bonus-card:hover {
    border-color: rgba(212, 131, 31, 0.2);
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.bonus-img {
    height: 200px;
    background: linear-gradient(135deg, rgba(27, 31, 59, 0.03), rgba(212, 131, 31, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}

.bonus-img img {
    height: 170px;
    object-fit: contain;
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.bonus-card:hover .bonus-img img {
    transform: rotate(0deg);
}

.bonus-img .lock-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 0.7rem;
    color: var(--primary);
}

.bonus-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bonus-body h3 {
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 10px;
}

.bonus-price {
    margin-bottom: 12px;
}

.bonus-price .old {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 700;
}

.bonus-price .free {
    color: var(--green);
    font-weight: 900;
    font-size: 1rem;
    margin-left: 8px;
}

.bonus-bullets {
    list-style: none;
    margin-top: auto;
}

.bonus-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 6px;
    line-height: 1.4;
}

.bonus-bullets li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 900;
    flex-shrink: 0;
}

.bonus-total-banner {
    background: var(--secondary);
    border-radius: 2rem;
    padding: 40px;
    text-align: center;
    color: #fff;
    max-width: 1000px;
    margin: 0 auto;
    border-top: 6px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.bonus-total-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
}

.bonus-total-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.bonus-total-banner h3 span {
    color: var(--primary);
}

.bonus-total-banner p {
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 16px auto 0;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* ══════════ TESTIMONIALS ══════════ */
.testimonials {
    background: #F8F6F1;
    padding: 80px 0;
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.star {
    color: #FBBF24;
    font-size: 1.1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    padding: 32px;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.testimonial-card .quote {
    font-size: 1rem;
    color: rgba(27, 31, 59, 0.75);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(212, 131, 31, 0.15);
}

.testimonial-author .name {
    font-weight: 800;
    font-size: 0.95rem;
}

.testimonial-author .role {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ══════════ OFFER ══════════ */
.offer {
    background: rgba(27, 31, 59, 0.03);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.offer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #fff, rgba(212, 131, 31, 0.04), #fff);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.plan-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.plan-card:hover {
    border-color: rgba(212, 131, 31, 0.25);
}

.plan-card.featured {
    background: #fff;
    border-color: rgba(212, 131, 31, 0.25);
    border-radius: 1.5rem;
    box-shadow: 0 16px 60px rgba(27, 31, 59, 0.12);
    transform: scale(1.03);
    z-index: 2;
}

.plan-ribbon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.plan-header {
    text-align: center;
    padding: 32px 24px 16px;
}

.plan-header .plan-name {
    font-size: 1.2rem;
    font-weight: 900;
}

.plan-header .old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
    margin-top: 8px;
}

.plan-header .price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-top: 4px;
}

.plan-header .price .currency {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 4px;
}

.plan-header .price .amount {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--secondary);
    letter-spacing: -2px;
}

.plan-card.featured .price .amount {
    font-size: 3.8rem;
}

.plan-header .price .cents {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.plan-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    margin-top: 8px;
}

.plan-badge.discount {
    background: var(--green-light);
    color: #16A34A;
}

.plan-badge.best {
    background: var(--green);
    color: #fff;
    animation: pulseBtn 2s infinite;
}

.plan-body {
    padding: 16px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plan-body .includes-label {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.plan-features {
    list-style: none;
    flex: 1;
    margin-bottom: 24px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.88rem;
    color: rgba(27, 31, 59, 0.7);
    font-weight: 600;
}

.plan-features li .check {
    width: 22px;
    height: 22px;
    background: rgba(212, 131, 31, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 0.65rem;
    color: var(--primary);
    font-weight: 900;
}

.plan-card.featured .plan-features li .check {
    background: rgba(212, 131, 31, 0.12);
}

.plan-btn {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.plan-btn.secondary-btn {
    background: var(--secondary);
    color: #fff;
}

.plan-btn.secondary-btn:hover {
    background: var(--secondary-light);
    transform: scale(1.02);
}

.plan-btn.primary-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-bottom: 4px solid var(--primary-dark);
    box-shadow: var(--shadow-glow);
    animation: pulseBtn 2s infinite;
    padding: 22px;
    font-size: 1.05rem;
}

.plan-btn.primary-btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.plan-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #16A34A;
    background: var(--green-light);
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(34, 197, 94, 0.15);
}

/* ══════════ GUARANTEE ══════════ */
.guarantee {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(212, 131, 31, 0.08);
    filter: blur(100px);
    border-radius: 50%;
}

.guarantee-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2rem;
    backdrop-filter: blur(8px);
}

.guarantee h2 span {
    color: var(--primary);
}

.guarantee .desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.7;
}

.guarantee-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.guarantee-stat .value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}

.guarantee-stat .label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    opacity: 0.5;
}

/* ══════════ FAQ ══════════ */
.faq {
    background: #fff;
    padding: 80px 0;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto 48px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: inherit;
}

.faq-question .chevron {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--text-muted);
}

.faq-item.open .faq-question .chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Guarantee Box in FAQ */
.guarantee-box {
    background: var(--bg-cream);
    border: 1px solid rgba(27, 31, 59, 0.08);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-box .shield {
    font-size: 3rem;
    flex-shrink: 0;
}

.guarantee-box h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.guarantee-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ══════════ FOOTER ══════════ */
.footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.5);
    padding: 32px 0;
    text-align: center;
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

/* ══════════ MODAL ══════════ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: #fff;
    border-radius: 2rem;
    max-width: 420px;
    width: 100%;
    overflow: hidden;
    animation: zoomIn 0.3s ease;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 14px 24px;
    text-align: center;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-body {
    padding: 28px;
    text-align: center;
}

.modal-body h3 {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--secondary);
}

.modal-body h3 span {
    color: var(--primary);
}

.modal-body .modal-desc {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.modal-body .modal-desc strong {
    color: var(--secondary);
}

.modal-price-box {
    background: rgba(212, 131, 31, 0.05);
    border: 1px solid rgba(212, 131, 31, 0.1);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
}

.modal-price-box .old {
    text-decoration: line-through;
    color: var(--text-light);
    font-weight: 700;
}

.modal-price-box .discount-badge {
    background: var(--green);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 50px;
    margin-left: 8px;
    animation: pulseBtn 1.5s infinite;
}

.modal-price-box .big-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--secondary);
}

.modal-checklist {
    text-align: left;
    margin-bottom: 20px;
}

.modal-checklist div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary);
    padding: 4px 0;
}

.modal-checklist div::before {
    content: '✓';
    color: var(--primary);
    font-weight: 900;
}

.modal-dismiss {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 12px;
}

/* ══════════ ANIMATIONS ══════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseBtn {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0 60px;
    }

    .features-grid,
    .benefits-grid,
    .bonuses-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .guarantee-stats {
        gap: 24px;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }

    .countdown-bar {
        font-size: 0.75rem;
        flex-wrap: wrap;
    }

    /* Modal mobile fit */
    .modal-overlay {
        padding: 12px;
        align-items: center;
    }

    .modal {
        border-radius: 1.25rem;
        max-height: 95vh;
        overflow-y: auto;
    }

    .modal-header {
        padding: 10px 16px;
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }

    .modal-body {
        padding: 16px;
    }

    .modal-body h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .modal-body .modal-desc {
        font-size: 0.82rem;
        margin-bottom: 12px;
    }

    .modal-price-box {
        padding: 12px;
        margin-bottom: 12px;
    }

    .modal-price-box .big-price {
        font-size: 2.8rem;
    }

    .modal-price-box .old {
        font-size: 0.85rem;
    }

    .modal-checklist {
        margin-bottom: 14px;
    }

    .modal-checklist div {
        font-size: 0.8rem;
        padding: 2px 0;
    }

    .modal-body .cta-btn {
        padding: 14px !important;
        font-size: 0.88rem !important;
    }

    .modal-dismiss {
        font-size: 0.7rem;
        margin-top: 8px;
    }
}