/* Mitolyn Page Specific Styles */

/* Header Styles */
.header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    color: #1e3a8a;
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    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);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
}

.logo-img {
    width: 180px;
    height: 40px;
    border-radius: 12px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

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

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

.nav-link:hover {
    color: #3b82f6;
}

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

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

.nav-link.review-link {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.nav-link.review-link:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.nav-link.review-link::after {
    display: none;
}

.header-order-btn {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 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(255, 140, 66, 0.4);
    position: relative;
    overflow: hidden;
    animation: intensePulse 1.5s infinite;
    border: 2px solid rgba(255, 140, 66, 0.3);
}

.header-order-btn: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;
}

.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;
}

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

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

/* Hero Section */
.hero {
    background: #1e3a8a;
    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;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fbbf24;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    background: #fbbf24;
    color: #1e3a8a;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    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(251, 191, 36, 0.3);
}

.cta-button:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

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

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent !important;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
}

/* Scientific Research Section */
.scientific-research {
    padding: 4rem 0;
    background: #f8fafc;
}

.scientific-research h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    text-align: center;
}

.scientific-research > p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #374151;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

.research-item:hover {
    transform: translateY(-5px);
}

.research-item h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    height: 60px;
    display: flex;
    align-items: center;
}

.research-item p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #374151;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.research-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: auto;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: #f0f9ff;
    border-radius: 8px;
    border: 2px solid #dbeafe;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Introduction Section */
.introduction {
    padding: 4rem 0;
    background: #f8fafc;
}

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

.introduction p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.science-highlight {
    background: #dbeafe;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 5px solid #3b82f6;
}

.science-highlight p {
    text-align: left;
    margin-bottom: 0;
}

.references {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.references h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

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

.references li {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid #3b82f6;
}

.references a {
    color: #3b82f6;
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

/* What is Section */
.what-is {
    padding: 4rem 0;
}

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

.what-is p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.product-showcase {
    text-align: center;
    margin: 3rem 0;
}

.product-showcase img {
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.target-audience {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.target-audience h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.target-audience ul {
    list-style: none;
    padding: 0;
}

.target-audience li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.target-audience li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Ingredients Section */
.ingredients {
    padding: 4rem 0;
    background: #f8fafc;
}

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

.ingredients-intro {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #374151;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

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

.ingredient-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    height: 100px;
}

.ingredient-image img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ingredient:hover .ingredient-image img {
    transform: scale(1.05);
}

.ingredient h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ingredient p {
    margin-bottom: 1rem;
    color: #6b7280;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.ingredient ul {
    list-style: none;
    padding: 0;
    margin-top: auto;
}

.ingredient li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.ingredient li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
}

.product-features {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-features h3 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.feature {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #1e3a8a;
    border: 2px solid #dbeafe;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80px;
}

/* Benefits and Limitations */
.benefits-limitations {
    padding: 4rem 0;
}

.benefits-limitations h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
    text-align: center;
}

.benefits, .limitations {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.benefits h2 {
    color: #10b981;
    margin-bottom: 1rem;
}

.limitations h2 {
    color: #f59e0b;
    margin-bottom: 1rem;
}

.benefits ul, .limitations ul {
    list-style: none;
    padding: 0;
}

.benefits li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.benefits li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
}

.limitations li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.limitations li:before {
    content: "⚠";
    color: #f59e0b;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
}

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

.how-it-works > p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #374151;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

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

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

.step-number {
    background: #3b82f6;
    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;
}

.step-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.step-content h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    height: 50px;
    display: flex;
    align-items: center;
}

.step-content p {
    line-height: 1.7;
    color: #374151;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.timeline {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.timeline-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.timeline-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
}

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

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

/* Reviews Section */
.reviews {
    padding: 4rem 0;
    background: #f8fafc;
}

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

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

.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.1rem;
    margin-bottom: 1rem;
    color: #374151;
    flex-grow: 1;
}

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

.review-content h4 {
    color: #1e3a8a;
    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;
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

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

.pricing-option.popular {
    border: 3px solid #3b82f6;
    transform: scale(1.05);
}

.pricing-option.popular .bonuses {
    height: 80px;
}

.pricing-option.bundle .bonuses {
    height: 40px;
}

.pricing-option.basic .bonuses {
    height: 0px;
    visibility: hidden;
}

.pricing-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    border-radius: 15px 15px 0 0;
}

.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 {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e3a8a;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

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

.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);
}

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

.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 120px;
    flex-shrink: 0;
}

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

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 60px;
    flex-shrink: 0;
}

.product-info h4 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

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

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #1e3a8a;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    flex-shrink: 0;
}

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

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

.price-breakdown .savings {
    color: #10b981;
    font-weight: 600;
    font-size: 0.85rem;
}

.bonuses {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    flex-shrink: 0;
}

.bonuses p {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bonus .bonus-price {
    color: white !important;
}

.bonus p {
    color: #374151 !important;
}

.bonus h3 {
    color: #dc2626 !important;
}

.bonus h4 {
    color: #1e293b !important;
}

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

.pricing-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fbbf24;
    color: #1e3a8a;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    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(251, 191, 36, 0.3);
    width: 100%;
    max-width: 200px;
    height: 50px;
    flex-shrink: 0;
    margin-top: auto;
}

.pricing-cta:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.recommendation {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    height: 40px;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.guarantee {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.guarantee h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.guarantee p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Bonuses Section */
.bonuses {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.bonuses h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
    text-align: center;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.bonus {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 350px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.bonus:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.bonus h3 {
    color: #dc2626;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.bonus h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.bonus-price {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.bonus p:last-child {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
    text-align: left;
    padding: 0 1rem;
}

.shipping-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.shipping-info h3 {
    color: #1e3a8a;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
}

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

.faq-grid {
    display: grid;
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 150px;
}

.faq-item h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.faq-item p {
    line-height: 1.7;
    color: #374151;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Comparison Section */
.comparison {
    padding: 4rem 0;
    background: #f8fafc;
}

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

.comparison > p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #374151;
}

.comparison-table {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: #1e3a8a;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-header > div {
    padding: 1.5rem;
    text-align: center;
}

.feature-column {
    text-align: left !important;
}

.mitolyn-column {
    background: #10b981;
}

.other-column {
    background: #ef4444;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-name {
    justify-content: flex-start !important;
    font-weight: 600;
    color: #374151;
}

.mitolyn-feature {
    background: #f0fdf4;
    color: #166534;
    font-weight: 600;
}

.other-feature {
    background: #fef2f2;
    color: #dc2626;
    font-weight: 600;
}

/* Final CTA Section */
.final-cta {
    padding: 4rem 0;
    background: #1e3a8a;
    color: white;
    text-align: center;
}

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

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

.cta-buttons {
    margin-bottom: 2rem;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(59, 130, 246, 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(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    pointer-events: none;
}

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

.footer-links {
    margin-bottom: 2rem;
    justify-content: center;
}

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

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

.footer-disclaimer {
    margin-bottom: 2rem;
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    margin-bottom: 1rem;
}

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

.footer-copyright {
    opacity: 0.9;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-copyright small {
    color: #f3f4f6;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo-img {
        width: 120px;
        height: 120px;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .header-order-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-option.popular {
        transform: none;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .research-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .timeline-items {
        grid-template-columns: 1fr;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-header > div,
    .comparison-row > div {
        padding: 1rem;
    }
    
    .feature-column,
    .feature-name {
        text-align: center !important;
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .introduction h2,
    .what-is h2,
    .ingredients h2,
    .reviews h2,
    .pricing h2,
    .bonuses h2,
    .faq h2,
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-links a {
        display: block;
        margin: 0.5rem 0;
        padding: 0.8rem 1rem;
    }
    
    .footer-disclaimer {
        padding: 1rem;
        font-size: 0.8rem;
    }
    
    .footer-copyright {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
}
