/* ProstaDefend Landing Page - Professional Styles */
/* GTmetrix A+ Optimized | Mobile First | USA Audience 50-60s */

:root {
    --primary-blue: #1e4a7a;
    --primary-dark: #0d2840;
    --accent-blue: #2a6ab3;
    --light-blue: #e8f4fc;
    --cta-orange: #ff6b35;
    --cta-hover: #e55a28;
    --success-green: #28a745;
    --gold: #ffc107;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-gray: #555555;
    --border-light: #e0e0e0;
    --shadow-soft: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.15);
    --shadow-strong: 0 12px 40px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary-blue);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.header-badge {
    background: var(--gold);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.header-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cta-orange) 0%, var(--cta-hover) 100%);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: var(--transition);
    text-decoration: none;
}

.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, var(--light-blue) 0%, var(--white) 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue), var(--primary-blue));
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 46px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: var(--accent-blue);
}

.hero-subtitle {
    font-size: 22px;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    box-shadow: var(--shadow-soft);
}

.hero-benefit svg {
    width: 20px;
    height: 20px;
    fill: var(--success-green);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--cta-orange) 0%, var(--cta-hover) 100%);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.cta-button svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 400px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

/* Trust Badges */
.trust-badges {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid var(--border-light);
}

.badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 500;
}

.badge-item svg {
    width: 35px;
    height: 35px;
    fill: var(--primary-blue);
}

/* What Is Section */
.what-is {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 19px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.what-is-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.what-is-text p {
    font-size: 18px;
    color: #000000;
    margin-bottom: 20px;
    text-align: justify;
}

.what-is-image {
    display: flex;
    justify-content: center;
}

.what-is-image img {
    max-width: 350px;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

/* How It Works */
.how-works {
    padding: 80px 0;
    background: var(--light-blue);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: var(--white);
}

.problem .section-header h2 {
    color: var(--white);
}

.problem .section-header p {
    color: rgba(255,255,255,0.85);
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.problem-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.problem-card svg {
    width: 50px;
    height: 50px;
    fill: var(--gold);
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: var(--white);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background: var(--off-white);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.solution-card:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-medium);
}

.solution-card svg {
    width: 55px;
    height: 55px;
    fill: var(--primary-blue);
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.solution-card p {
    font-size: 19px;
    color: #000000;
    line-height: 1.6;
}

/* Ingredients Section */
.ingredients {
    padding: 80px 0;
    background: var(--light-blue);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.ingredient-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border-left: 4px solid var(--accent-blue);
}

.ingredient-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.ingredient-card h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ingredient-card h3 svg {
    width: 24px;
    height: 24px;
    fill: var(--success-green);
}

.ingredient-card p {
    font-size: 17px;
    color: #000000;
    line-height: 1.6;
}

/* Doctor Section */
.doctor {
    padding: 80px 0;
    background: var(--white);
}

.doctor-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.doctor-image {
    text-align: center;
}

.doctor-avatar {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.doctor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-avatar svg {
    width: 80px;
    height: 80px;
    fill: var(--white);
}

.doctor-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
}

.doctor-title {
    font-size: 16px;
    color: var(--text-gray);
}

.doctor-text h3 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.doctor-text p {
    font-size: 17px;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.7;
}

.guarantee-box {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid var(--success-green);
    margin-top: 25px;
}

.guarantee-box h4 {
    font-size: 20px;
    color: var(--success-green);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.guarantee-box h4 svg {
    width: 28px;
    height: 28px;
    fill: var(--success-green);
}

.guarantee-box p {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--accent-blue);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.stars svg {
    width: 22px;
    height: 22px;
    fill: var(--gold);
}

.testimonial-card p {
    font-size: 17px;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    text-align: center;
}

.testimonial-author {
    text-align: center;
    margin-top: 15px;
}

.testimonial-author h4 {
    font-size: 17px;
    color: var(--primary-dark);
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-gray);
}

.verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--success-green);
    font-size: 13px;
    margin-left: 10px;
}

.verified svg {
    width: 16px;
    height: 16px;
    fill: var(--success-green);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-blue) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 2px solid transparent;
    transition: var(--transition);
}

.pricing-card:hover {
    box-shadow: var(--shadow-strong);
}

.pricing-card.popular {
    border-color: var(--cta-orange);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--cta-orange), var(--cta-hover));
    color: var(--white);
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.pricing-card .supply {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.pricing-image {
    margin: 20px 0;
}

.pricing-image img {
    max-height: 200px;
    margin: 0 auto;
}

.price {
    margin: 25px 0;
}

.price .amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-dark);
}

.price .per-bottle {
    display: block;
    font-size: 16px;
    color: var(--text-gray);
}

.price .original {
    text-decoration: line-through;
    color: #999;
    font-size: 18px;
    margin-right: 10px;
}

.pricing-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: #000000;
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    fill: var(--success-green);
    flex-shrink: 0;
}

.pricing-card .cta-button {
    width: 100%;
    padding: 16px;
}

/* Bonuses Section */
.bonuses {
    padding: 80px 0;
    background: var(--primary-dark);
    color: var(--white);
}

.bonuses .section-header h2 {
    color: var(--white);
}

.bonuses .section-header p {
    color: rgba(255,255,255,0.85);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.bonus-card {
    display: flex;
    gap: 30px;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.bonus-image {
    flex-shrink: 0;
}

.bonus-image img {
    width: 150px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.bonus-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--gold);
}

.bonus-content p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

.bonus-tag {
    display: inline-block;
    background: var(--success-green);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 15px;
}

.bonus-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--cta-orange) 0%, var(--cta-hover) 100%);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.bonus-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq-grid {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    background: var(--off-white);
    border: none;
    text-align: left;
    font-size: 19px;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-blue);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-blue);
    transition: var(--transition);
}

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

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

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 18px;
    color: #000000;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--white);
}

.final-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-image {
    margin: 40px auto;
    max-width: 500px;
}

.final-cta-image img {
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.4));
}

.final-cta .cta-button {
    font-size: 22px;
    padding: 20px 60px;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.7;
    margin-top: 15px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 15px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-contact p {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 12px;
    opacity: 0.6;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Purchase Popup */
.purchase-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 18px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-strong);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    transform: translateX(-150%);
    transition: transform 0.5s ease;
    max-width: 350px;
}

.purchase-popup.show {
    transform: translateX(0);
}

.popup-icon {
    width: 50px;
    height: 50px;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.popup-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.popup-content p {
    font-size: 14px;
    color: #000000;
    margin: 0;
}

.popup-content strong {
    color: var(--primary-blue);
}

.popup-content span {
    font-size: 12px;
    color: var(--text-gray);
}

/* Exit Popup */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.exit-popup-overlay.show {
    display: flex;
}

.exit-popup {
    background: var(--white);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    animation: popupSlide 0.4s ease;
}

@keyframes popupSlide {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-gray);
}

.exit-popup h3 {
    font-size: 30px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.exit-popup p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.exit-popup img {
    max-width: 200px;
    margin: 0 auto 25px;
}

.exit-popup .cta-button {
    width: 100%;
}

/* Mobile Floating CTA */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 15px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    z-index: 9998;
}

.mobile-cta .cta-button {
    width: 100%;
    padding: 16px;
    font-size: 18px;
}

.mobile-order-btn {
    animation: fireGlow 1.5s ease-in-out infinite;
}

@keyframes fireGlow {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(249,115,22,0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 6px 25px rgba(249,115,22,0.7), 0 0 30px rgba(249,115,22,0.3);
        transform: scale(1.02);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-benefits {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-width: 300px;
    }
    
    .what-is-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .problem-cards,
    .solution-grid,
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card.popular {
        transform: none;
        order: -1;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .doctor-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-badge {
        display: none;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .steps-grid,
    .problem-cards,
    .solution-grid,
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-card {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-image img {
        margin: 0 auto;
    }
    
    .mobile-cta {
        display: block !important;
    }
    
    .header {
        display: none !important;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    .purchase-popup {
        left: 15px;
        right: 15px;
        bottom: 100px;
        max-width: none;
    }
    
    .problem-card p,
    .solution-card p {
        font-size: 18px;
    }
    
    .testimonial-card p {
        font-size: 17px;
    }
    
    .doctor-text p {
        font-size: 17px;
    }
    
    .faq-question {
        font-size: 18px;
    }
    
    .faq-answer p {
        font-size: 38px;
    }
    
    .final-cta h2 {
        font-size: 32px;
    }
    
    .exit-popup h3 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .header {
        display: none !important;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .exit-popup {
        padding: 40px 25px;
    }
}

/* Print Styles */
@media print {
    .mobile-cta,
    .purchase-popup,
    .exit-popup-overlay {
        display: none !important;
    }
}
