/* Sugar Defender - Page Styles with Beautiful Effects */
/* Brand Colors: Emerald/Teal (health, wellness, sophistication) */

/* =============================================================================
   ANIMATIONS (Os efeitos mais bonitos!)
   ============================================================================= */

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes intensePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4), 0 0 0 0 rgba(16, 185, 129, 0.7);
        border-color: rgba(16, 185, 129, 0.3);
    }
    25% {
        transform: scale(1.08);
        box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6), 0 0 0 10px rgba(16, 185, 129, 0.3);
        border-color: rgba(16, 185, 129, 0.6);
    }
    50% {
        transform: scale(1.12);
        box-shadow: 0 20px 50px rgba(16, 185, 129, 0.8), 0 0 0 20px rgba(16, 185, 129, 0.1);
        border-color: rgba(16, 185, 129, 0.8);
    }
    75% {
        transform: scale(1.08);
        box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6), 0 0 0 10px rgba(16, 185, 129, 0.3);
        border-color: rgba(16, 185, 129, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4), 0 0 0 0 rgba(16, 185, 129, 0.7);
        border-color: rgba(16, 185, 129, 0.3);
    }
}

/* =============================================================================
   HEADER
   ============================================================================= */

.header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #10b981;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #10b981;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-order-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    position: relative;
    overflow: hidden;
    animation: intensePulse 1.5s infinite;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.header-order-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6);
    animation: none;
}

.header-order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
    animation: shimmer 3s infinite;
}

.header-order-btn:hover::before {
    left: 100%;
    animation: none;
}

/* =============================================================================
   MEDICAL DISCLAIMER TOP
   ============================================================================= */

.medical-disclaimer-top {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1rem;
    text-align: center;
}

.medical-disclaimer-top h4 {
    color: #856404;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.medical-disclaimer-top p {
    color: #856404;
    font-size: 0.9rem;
    margin: 0;
}

/* =============================================================================
   HERO SECTION
   ============================================================================= */

.hero {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    color: white;
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 500px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

.disclosure {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    max-width: 500px;
}

.disclosure small {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.hero-image {
    text-align: center;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

/* =============================================================================
   CTA BUTTONS (Com animações!)
   ============================================================================= */

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
    animation: intensePulse 1.5s infinite;
    border: 2px solid rgba(255, 140, 66, 0.3);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #ff7b2b 0%, #ff5722 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 140, 66, 0.6);
    animation: none;
    color: white;
    text-decoration: none;
}

.cta-button.secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    color: white;
}

.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

/* =============================================================================
   INTRODUCTION SECTION
   ============================================================================= */

.introduction {
    padding: 4rem 0;
    background: #f8fafc;
}

.introduction h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #059669;
    font-size: 2.5rem;
}

.introduction p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: center;
    color: #4b5563;
}

/* =============================================================================
   INGREDIENTS SECTION
   ============================================================================= */

.what-is {
    padding: 4rem 0;
    background: white;
}

.what-is h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #059669;
    font-size: 2.5rem;
}

.ingredients-grid-2col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.ingredient-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ingredient-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
    border-color: #d1fae5;
}

.ingredient-item img {
    width: 100%;
    max-width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
    border: 2px solid #a7f3d0;
}

.ingredient-item h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #059669;
    font-weight: 700;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ingredient-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: #6b7280;
    line-height: 1.5;
    flex-grow: 1;
}

/* Regulatory Info */
.regulatory-info {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.regulatory-info h3 {
    color: #059669;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.standard {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #10b981;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.standard h4 {
    color: #059669;
    margin-bottom: 0.5rem;
}

.standard p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

/* =============================================================================
   HOW IT WORKS SECTION
   ============================================================================= */

.how-it-works {
    padding: 4rem 0;
    background: #f8fafc;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #059669;
    font-size: 2.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 180px;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.step-number {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.step-content {
    flex-grow: 1;
}

.step-content h3 {
    color: #059669;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.step-content p {
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

/* Timeline */
.timeline {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.timeline h3 {
    color: #059669;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.timeline-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.timeline-item {
    text-align: center;
    padding: 1.5rem;
    background: #f0fdf4;
    border-radius: 10px;
    border-top: 4px solid #10b981;
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-3px);
}

.timeline-period {
    font-weight: 700;
    color: #059669;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-description {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* =============================================================================
   BENEFITS SECTION
   ============================================================================= */

.benefits {
    padding: 4rem 0;
    background: white;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #059669;
    font-size: 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.benefit-item.suitable {
    background: #f0fdf4;
    border-left: 5px solid #10b981;
}

.benefit-item.not-suitable {
    background: #fef3c7;
    border-left: 5px solid #f59e0b;
}

.benefit-item h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.benefit-item.suitable h3 {
    color: #166534;
}

.benefit-item.not-suitable h3 {
    color: #92400e;
}

.benefit-item ul {
    list-style: none;
    padding: 0;
}

.benefit-item li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #4b5563;
    font-size: 1rem;
}

.benefit-item li:last-child {
    border-bottom: none;
}

.benefit-item.suitable li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.benefit-item.not-suitable li::before {
    content: "⚠";
    color: #f59e0b;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* =============================================================================
   REVIEWS SECTION
   ============================================================================= */

.reviews {
    padding: 4rem 0;
    background: #f8fafc;
}

.reviews h2 {
    font-size: 2.5rem;
    color: #059669;
    margin-bottom: 1rem;
    text-align: center;
}

.reviews-disclaimer {
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.review-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

.stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #374151;
    flex-grow: 1;
    line-height: 1.6;
}

.reviewer {
    font-weight: 600;
    color: #059669;
    margin-bottom: 0.5rem;
}

.review-content h4 {
    color: #059669;
    margin-bottom: 1rem;
}

.verified-badge {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.purchase-info {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    margin-top: auto;
}

.results-disclaimer {
    background: #f8f9fa;
    border-left: 4px solid #3b82f6;
    padding: 1.5rem;
    margin: 3rem 0;
    border-radius: 4px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.results-disclaimer p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

/* =============================================================================
   CTA MID-PAGE
   ============================================================================= */

.cta-mid {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.cta-mid h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-mid p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* =============================================================================
   PRICING SECTION (Com efeitos especiais!)
   ============================================================================= */

.pricing {
    padding: 4rem 0;
    background: #f8fafc;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #059669;
    font-size: 2.5rem;
}

.pricing-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.pricing-option {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.pricing-option:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-option.popular {
    border: 3px solid #10b981;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.pricing-option.popular:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.pricing-header {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.pricing-option.popular .pricing-header {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.pricing-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-option.popular .pricing-header h3 {
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    transform: rotate(15deg);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-content {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 450px;
    justify-content: space-between;
}

.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 1.5rem;
}

.product-image img {
    max-width: 160px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-info h4 {
    font-size: 1.3rem;
    color: #059669;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: #6b7280;
    margin-bottom: 0;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #059669;
    margin: 1rem 0;
}

.price-breakdown {
    margin: 0.5rem 0;
}

.price-breakdown small {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0.2rem 0;
}

.shipping-note {
    margin: 1rem 0;
    padding: 0.75rem;
    background: #f0fdf4;
    border-radius: 6px;
    border-left: 3px solid #22c55e;
}

.shipping-note small {
    color: #166534;
    font-weight: 600;
}

.pricing-cta {
    display: block;
    width: 100%;
    max-width: 220px;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
    margin-top: auto;
}

.pricing-cta:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
    color: white;
}

.pricing-cta.popular-cta {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    animation: intensePulse 1.5s infinite;
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
    border: 2px solid rgba(255, 140, 66, 0.3);
}

.pricing-cta.popular-cta:hover {
    background: linear-gradient(135deg, #ff7b2b 0%, #ff5722 100%);
    animation: none;
    box-shadow: 0 12px 35px rgba(255, 140, 66, 0.6);
}

.recommendation {
    font-size: 0.85rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 1rem;
}

/* =============================================================================
   GUARANTEE SECTION
   ============================================================================= */

.guarantee {
    padding: 4rem 0;
    background: #f0fdf4;
    text-align: center;
}

.guarantee h2 {
    color: #166534;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.guarantee p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: #4b5563;
}

/* =============================================================================
   FAQ SECTION
   ============================================================================= */

.faq {
    padding: 4rem 0;
    background: white;
}

.faq h2 {
    font-size: 2.5rem;
    color: #059669;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.12);
    border-color: #d1fae5;
}

.faq-item h3 {
    color: #059669;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

/* =============================================================================
   FINAL CTA
   ============================================================================= */

.final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-note {
    margin-top: 1.5rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* =============================================================================
   FOOTER DISCLAIMERS
   ============================================================================= */

.footer-disclaimers {
    background: #f8fafc;
    padding: 3rem 0;
}

.disclaimer-box {
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-box.medical {
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-left: 5px solid #ef4444;
}

.disclaimer-box.affiliate {
    background: #eff6ff;
    border: 2px solid #bfdbfe;
    border-left: 5px solid #3b82f6;
}

.disclaimer-box h4 {
    color: #059669;
    margin-bottom: 1rem;
}

.disclaimer-box p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

/* =============================================================================
   FOOTER
   ============================================================================= */

.footer {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.95) 0%, rgba(16, 185, 129, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    pointer-events: none;
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer p {
    margin: 0.5rem 0;
}

.footer a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.footer a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */

@media (max-width: 1024px) {
    .ingredients-grid-2col {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-steps,
    .reviews-grid,
    .pricing-grid-3,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .standards-grid,
    .timeline-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-option.popular {
        transform: none;
    }
    
    .pricing-option.popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        min-height: auto;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .hero-image img {
        width: 100%;
        height: 300px;
        max-width: 100%;
    }
    
    .ingredients-grid-2col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps,
    .reviews-grid,
    .pricing-grid-3,
    .faq-grid,
    .standards-grid,
    .timeline-items,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .header-order-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 1.1rem 2.2rem;
        font-size: 1.1rem;
    }
    
    .pricing h2,
    .reviews h2,
    .faq h2,
    .introduction h2,
    .what-is h2,
    .how-it-works h2,
    .benefits h2,
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .ingredients-grid-2col {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .ingredient-item {
        padding: 1.25rem;
    }
    
    .ingredient-item img {
        max-width: 80px;
        height: 80px;
    }
    
    .ingredient-item h3 {
        font-size: 0.9rem;
        min-height: 2rem;
    }
    
    .ingredient-item p {
        font-size: 0.8rem;
    }
    
    .benefit-item,
    .review,
    .faq-item,
    .step {
        padding: 1.5rem;
    }
    
    .pricing-content {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
}
