* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

:root {
    --primary-red: #C0392B;
    --dark-red: #96281B;
    --accent-gold: #F0C040;
    --dark-gold: #D4A017;
    --dark-bg: #0d0d0d;
    --dark-section: #111111;
    --dark-card: #1a1a1a;
    --light-gray: #f5f5f5;
    --dark-gray: #1e293b;
    --text-light: #ccc;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseSoft {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #7B0000 0%, #C0392B 50%, #7B0000 100%);
    color: #fff;
    text-align: center;
    padding: 14px 0;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.urgency-text {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.urgency-text .date-highlight {
    color: #F0C040;
    font-weight: 700;
}

/* Hero */
.hero {
    background: linear-gradient(180deg, #0d0d0d 0%, #1a0000 100%);
    padding: 60px 0 70px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-alert-badge {
    display: inline-block;
    background: #C0392B;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.hero-headline {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.highlight-red {
    color: #EF4444;
}

.highlight-gold {
    color: #F0C040;
}

.hero-subheadline {
    font-size: 1.3rem;
    font-weight: 600;
    color: #bbb;
    margin-bottom: 30px;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #C0392B, #F0C040);
    margin: 0 auto 30px;
    border-radius: 4px;
}

.hero-title-2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-desc-main {
    font-size: 1.15rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-desc-main strong {
    color: #ffffff;
}

.hero-bullets {
    margin-bottom: 25px;
}

.bullet-item {
    font-size: 1.05rem;
    color: #ddd;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bullet-no {
    color: #EF4444;
    font-size: 1.1rem;
}

.hero-benefits {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px 35px;
    margin-bottom: 30px;
    text-align: left;
}

.hero-benefits h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #F0C040;
    margin-bottom: 15px;
    text-align: center;
}

.hero-benefits ul {
    list-style: none;
    margin-bottom: 20px;
}

.hero-benefits ul li {
    font-size: 1rem;
    color: #ddd;
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hero-benefits ul li:last-child {
    border-bottom: none;
}

.hero-benefits ul li i {
    color: #4CAF50;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.no-meds {
    font-size: 1rem;
    font-weight: 700;
    color: #F0C040;
    text-align: center;
    padding: 12px;
    background: rgba(240, 192, 64, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(240, 192, 64, 0.2);
}

.discount-banner {
    background: linear-gradient(135deg, #C0392B 0%, #96281B 100%);
    color: white;
    padding: 16px 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.discount-tag {
    background: #F0C040;
    color: #000;
    font-weight: 900;
    font-size: 1.3rem;
    padding: 5px 15px;
    border-radius: 6px;
    letter-spacing: 1px;
}

.discount-text {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.trust-item {
    font-size: 0.9rem;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-item i {
    color: #F0C040;
}

.social-proof-hero {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 25px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 30px;
    display: inline-block;
}

.social-proof-hero strong {
    color: #ffffff;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #C0392B 0%, #E74C3C 50%, #C0392B 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.15rem;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 25px rgba(192, 57, 43, 0.5);
    text-decoration: none;
    animation: pulseSoft 2s ease-in-out infinite;
    width: 100%;
    max-width: 600px;
    text-align: center;
    line-height: 1.3;
}

.cta-button:hover {
    background: linear-gradient(135deg, #96281B 0%, #C0392B 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(192, 57, 43, 0.6);
}

.hero-cta {
    margin-bottom: 15px;
    animation: bounce 2s infinite;
    font-size: 1.1rem;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.security-badges span {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.security-badges span i {
    color: #666;
}

.security-badges.light span {
    color: rgba(255,255,255,0.6);
}

.security-badges.light span i {
    color: #F0C040;
}

/* Section General */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: #1a1a1a;
    position: relative;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #C0392B, #F0C040);
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
}

/* What Is Section */
.what-is {
    background: #f8f8f8;
}

.what-is-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.what-is-text {
    flex: 2;
}

.what-is-intro {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.what-is-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

.what-is-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 20px 0 15px;
}

.inside-list {
    list-style: none;
    margin-bottom: 20px;
}

.inside-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e9e9e9;
    color: #444;
    font-size: 0.97rem;
    line-height: 1.5;
}

.inside-list li:last-child {
    border-bottom: none;
}

.inside-list li i {
    color: #C0392B;
    margin-top: 3px;
    flex-shrink: 0;
}

.what-is-footer {
    font-size: 0.95rem;
    font-weight: 600;
    color: #C0392B;
    background: #fff5f5;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 4px solid #C0392B;
}

.what-is-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10px;
}

.guide-mockup {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    border: 2px solid #F0C040;
    min-width: 180px;
}

.guide-mockup i {
    font-size: 3.5rem;
    color: #F0C040;
    margin-bottom: 15px;
    display: block;
}

.guide-mockup p {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.guide-mockup span {
    font-size: 0.85rem;
    color: #F0C040;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials {
    background: #ffffff;
}

.testimonials .section-title {
    color: #1a1a1a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.07);
    transition: transform 0.3s ease;
    border-top: 3px solid #C0392B;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.stars {
    color: #F0C040;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 18px;
    color: #555;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.author-avatar.female {
    background: linear-gradient(135deg, #e91e8c, #ff6ec7);
    color: white;
}

.author-avatar.male {
    background: linear-gradient(135deg, #1565C0, #42A5F5);
    color: white;
}

.testimonial-author strong {
    display: block;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.82rem;
    color: #888;
}

/* Expert Section */
.expert-section {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0000 100%);
    padding: 80px 0;
}

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

.expert-icon {
    font-size: 3.5rem;
    color: #F0C040;
    margin-bottom: 20px;
}

.expert-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.expert-text {
    text-align: left;
}

.expert-text p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

.expert-text strong {
    color: #ffffff;
}

.expert-highlight {
    background: rgba(240, 192, 64, 0.1);
    border: 1px solid rgba(240, 192, 64, 0.3);
    border-radius: 12px;
    padding: 25px 30px;
    color: #ddd;
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 20px;
    text-align: center;
}

.expert-highlight strong {
    color: #F0C040;
    font-size: 1.05rem;
}

/* Offer Section */
.offer-section {
    background: linear-gradient(135deg, #1a0000 0%, #0d0d0d 100%);
    padding: 80px 0;
}

.offer-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(240, 192, 64, 0.3);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #C0392B, #E74C3C);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 8px 25px;
    border-radius: 30px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.offer-box h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.offer-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.offer-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: #ccc;
}

.offer-feature i {
    color: #4CAF50;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Countdown Timer */
.plans-timer {
    text-align: center;
    margin-bottom: 35px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #96281B 0%, #C0392B 40%, #E74C3C 100%);
    border-radius: 14px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 6px 25px rgba(192, 57, 43, 0.5);
}

.plans-timer .timer-text {
    font-size: 0.9rem;
    margin-bottom: 14px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-plans {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.countdown-plans .time-unit {
    background: white;
    padding: 14px 10px;
    border-radius: 10px;
    min-width: 70px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.countdown-plans .time-number {
    display: block;
    font-size: 1.9rem;
    font-weight: 800;
    color: #C0392B;
    line-height: 1;
    margin-bottom: 4px;
}

.countdown-plans .time-label {
    font-size: 0.7rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-cta {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Guarantee */
.guarantee {
    background: #fff;
    text-align: center;
}

.guarantee-content {
    max-width: 650px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 35px rgba(192, 57, 43, 0.12);
    background: linear-gradient(180deg, #fff5f5 0%, #ffffff 100%);
    border: 3px solid #C0392B;
}

.guarantee-badge {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    width: 150px;
    height: 150px;
}

.guarantee-badge i {
    font-size: 150px;
    color: #C0392B;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(192, 57, 43, 0.3));
}

.badge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    margin-top: -5px;
}

.badge-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.badge-label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    margin-top: 3px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.guarantee h2 {
    font-size: 1.8rem;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 800;
    line-height: 1.3;
}

.guarantee p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
}

.guarantee-cta {
    display: inline-flex;
    width: auto;
    padding: 18px 35px;
    animation: pulseSoft 2s ease-in-out infinite;
}

.guarantee-cta:hover {
    transform: translateY(-2px);
}

/* FAQ */
.faq {
    background: #f8f8f8;
}

.faq .section-title {
    color: #1a1a1a;
}

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

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    overflow: hidden;
}

.faq-question {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    padding-right: 15px;
}

.faq-question i {
    color: #C0392B;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding: 0 0 22px 0;
    color: #666;
    line-height: 1.6;
    font-size: 0.97rem;
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px 28px;
}

/* Footer */
.footer {
    background: #0d0d0d;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.footer p {
    margin-bottom: 10px;
}

.legal-notice {
    font-size: 0.78rem;
    line-height: 1.5;
    max-width: 750px;
    margin: 0 auto 15px;
    color: #666;
}

.copyright {
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
}

/* Notifications */
.notification-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 230px;
    pointer-events: none;
}

.notification {
    background: white;
    padding: 8px 10px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: flex-start;
    pointer-events: all;
    animation: slideInRight 0.4s ease, fadeOut 0.4s ease 4.6s;
    border: 2px solid #C0392B;
}

@keyframes slideInRight {
    from { transform: translateX(400px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    to { opacity: 0; transform: translateX(400px); }
}

.notification-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notification-name {
    font-weight: 700;
    font-size: 0.87rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.notification-product {
    font-size: 0.78rem;
    color: #666;
    line-height: 1.2;
}

.notification-location {
    font-size: 0.72rem;
    color: #999;
    line-height: 1.2;
}

.notification-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #C0392B 0%, #E74C3C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-right: 10px;
    color: white;
    box-shadow: 0 3px 10px rgba(192, 57, 43, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2rem;
    }

    .hero-title-2 {
        font-size: 1.6rem;
    }

    .hero-desc-main {
        font-size: 1rem;
    }

    .hero-benefits {
        padding: 22px 20px;
    }

    .section-title {
        font-size: 1.9rem;
        margin-bottom: 40px;
    }

    .what-is-content {
        flex-direction: column;
        gap: 30px;
    }

    .what-is-image {
        justify-content: center;
        width: 100%;
    }

    .guide-mockup {
        min-width: 160px;
        padding: 40px 30px;
    }

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

    .expert-content h2 {
        font-size: 1.6rem;
    }

    .offer-box {
        padding: 35px 20px;
    }

    .offer-box h2 {
        font-size: 1.6rem;
    }

    .guarantee h2 {
        font-size: 1.5rem;
    }

    .guarantee-content {
        padding: 30px 20px;
    }

    .guarantee-badge {
        width: 120px;
        height: 120px;
    }

    .guarantee-badge i {
        font-size: 120px;
    }

    .badge-number {
        font-size: 2.2rem;
    }

    .badge-label {
        font-size: 0.85rem;
    }

    .cta-button {
        padding: 18px 25px;
        font-size: 1rem;
    }

    .trust-badges {
        gap: 12px;
    }

    .security-badges {
        gap: 12px;
    }

    .notification-container {
        top: 10px;
        right: 10px;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 0 55px;
    }

    .hero-headline {
        font-size: 1.7rem;
    }

    .hero-title-2 {
        font-size: 1.4rem;
    }

    .hero-benefits ul li {
        font-size: 0.93rem;
    }

    .discount-banner {
        flex-direction: column;
        gap: 8px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    section {
        padding: 60px 0;
    }

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

    .offer-features {
        padding: 0 5px;
    }

    .countdown-plans .time-unit {
        min-width: 60px;
        padding: 12px 8px;
    }

    .countdown-plans .time-number {
        font-size: 1.6rem;
    }

    .urgency-text {
        font-size: 0.88rem;
    }
}

html {
    scroll-behavior: smooth;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
