/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2d7a4d;
    --accent-color: #ff6b35;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d5a8a 100%);
    color: white;
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    text-align: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.tagline {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 60px 20px;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
}

.hero-product-image {
    max-width: 100%;
    height: auto;
    width: 100%;
    max-width: 500px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
    text-align: left;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 500;
    text-align: left;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: left;
}

.hero-benefits {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.check-icon {
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.3rem;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8c5a 100%);
    color: white;
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    margin: 20px 0;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff8c5a 0%, var(--accent-color) 100%);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-large {
    padding: 25px 60px;
    font-size: 1.4rem;
}

.cta-text {
    display: block;
    margin-bottom: 5px;
}

.cta-subtext {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.95;
}

.guarantee-text {
    margin-top: 20px;
    color: var(--success-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Section Styles */
section {
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dark);
    line-height: 1.3;
}

.section-intro {
    font-size: 1.15rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: var(--text-light);
    line-height: 1.8;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Trust Badges Section (SEO / quality signals) */
.trust-badges-section {
    padding: 50px 20px;
    background-color: white;
    border-top: 1px solid var(--border-color);
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}
.trust-badge {
    text-align: center;
    padding: 25px 15px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.trust-badge-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}
.trust-badge h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}
.trust-badge p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* What is Mitolyn section (SEO / featured snippet) */
.what-is-section {
    padding: 50px 20px;
    background-color: var(--bg-light);
}
.what-is-section .section-title {
    margin-bottom: 20px;
}
.what-is-section .section-intro {
    margin-bottom: 20px;
}
.what-is-section .section-intro:last-of-type {
    margin-bottom: 0;
}

/* Reviews Section (SEO / social proof) */
.reviews-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}
.review-card {
    background: white;
    padding: 28px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    border-left: 4px solid var(--secondary-color);
}
.review-header {
    margin-bottom: 12px;
}
.review-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.review-rating .stars {
    color: #f1c40f;
}
.review-date {
    font-size: 0.8rem;
    color: var(--success-color);
    font-weight: 600;
}
.review-author {
    font-size: 1rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}
.review-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
}
.reviews-summary {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.reviews-summary h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.reviews-summary p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Testimonials Section (SEO / social proof) */
.testimonials-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}
.testimonial-card {
    background: white;
    padding: 28px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    border-left: 4px solid var(--secondary-color);
}
.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}
.testimonial-author {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0 0 8px 0;
}
.testimonial-badge {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--success-color);
    font-weight: 600;
}

/* Problem Section */
.problem-section {
    background-color: var(--bg-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.problem-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Solution Section */
.solution-section {
    background-color: white;
}

.solution-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
}

.solution-product-image {
    max-width: 100%;
    height: auto;
    width: 100%;
    max-width: 450px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.solution-product-image:hover {
    transform: scale(1.05);
}

.solution-features {
    flex: 1.2;
    max-width: 900px;
}

.feature-number {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 30px;
}

.feature-number .number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.2;
    flex-shrink: 0;
    line-height: 1;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d5a8a 100%);
    color: white;
}

.benefits-section .section-title {
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.benefit-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.benefit-box p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Ingredients Section */
.ingredients-section {
    background-color: white;
}

.ingredients-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto 50px;
    max-width: 800px;
}

.ingredients-product-image {
    max-width: 100%;
    height: auto;
    width: 100%;
    max-width: 700px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.ingredient-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ingredient-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.ingredient-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.ingredient-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.manufacturing-note {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    padding: 25px;
    background: var(--bg-light);
    border-radius: 10px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
}

.cta-product-image {
    max-width: 100%;
    height: auto;
    width: 100%;
    max-width: 450px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.cta-text-content {
    flex: 1;
    text-align: left;
}

.cta-section .section-title {
    color: white;
    margin-bottom: 20px;
    text-align: left;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    text-align: left;
}

.satisfaction-text {
    margin-top: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    line-height: 1.8;
    text-align: left;
}

.cta-text-content .cta-button {
    display: inline-block;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-light);
}

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

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    font-size: 1.3rem;
    color: var(--primary-color);
    padding: 25px 30px;
    margin: 0;
    cursor: pointer;
    font-weight: 700;
    position: relative;
    user-select: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8c5a 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.final-cta-section .section-title {
    color: white;
    margin-bottom: 40px;
}

.final-cta-section .cta-button {
    background: white;
    color: var(--primary-color);
    border: 3px solid white;
}

.final-cta-section .cta-button:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.final-cta-section .cta-subtext {
    color: var(--text-light);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 50px 20px 30px;
}

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

.disclaimer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #aaa;
}

.footer-links {
    margin: 30px 0;
    font-size: 0.95rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    margin-top: 30px;
    font-size: 0.85rem;
    color: #888;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        text-align: center;
    }

    .hero-description,
    .hero-tagline {
        text-align: center;
    }

    .hero-product-image {
        max-width: 300px;
    }

    .solution-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .solution-image-wrapper {
        order: -1;
    }

    .solution-product-image {
        max-width: 350px;
    }

    .cta-content-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .cta-image-wrapper {
        order: -1;
    }

    .cta-text-content {
        text-align: center;
    }

    .cta-section .section-title,
    .cta-description,
    .satisfaction-text {
        text-align: center;
    }

    .cta-product-image {
        max-width: 300px;
    }

    .ingredients-product-image {
        max-width: 100%;
    }

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

    .cta-button {
        padding: 18px 35px;
        font-size: 1.1rem;
    }

    .cta-large {
        padding: 20px 40px;
        font-size: 1.2rem;
    }

    .feature-number {
        flex-direction: column;
        text-align: center;
    }

    .feature-number .number {
        font-size: 3rem;
    }

    .problem-grid,
    .benefits-grid,
    .ingredients-grid,
    .trust-badges-grid,
    .testimonials-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .hero-benefits {
        text-align: left;
    }

    section {
        padding: 50px 20px;
    }
}

@media (max-width: 480px) {
    .hero-wrapper {
        gap: 30px;
    }

    .hero-product-image {
        max-width: 250px;
    }

    .solution-content-wrapper,
    .cta-content-wrapper {
        gap: 30px;
    }

    .solution-product-image,
    .cta-product-image {
        max-width: 250px;
    }

    .ingredients-product-image {
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .logo {
        font-size: 1.5rem;
    }

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

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

/* Print Styles */
@media print {
    .header,
    .cta-button,
    .footer {
        display: none;
    }
}

