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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

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

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.nav-link:hover {
    color: #e0e7ff;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #fff, #e0e7ff);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Product Mockup */
.product-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.product-bottle {
    width: 200px;
    height: 300px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 20px 20px 40px 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
}

.product-bottle::before {
    content: 'PrimeBiome';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    font-size: 2rem;
    animation: float 2s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

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

/* Introduction Section */
.introduction {
    padding: 80px 0;
    background: white;
}

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

.intro-paragraph {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.intro-paragraph.emphasis {
    font-style: italic;
    color: #667eea;
    font-weight: 600;
    text-align: center;
    font-size: 1.2rem;
    margin: 2rem 0;
}

.problem-highlight {
    background: linear-gradient(135deg, #fef7f7, #fdf2f2);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #ef4444;
    margin: 2rem 0;
}

.problem-highlight h3 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.problem-list {
    list-style: none;
    margin: 1rem 0;
}

.problem-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.problem-list li::before {
    content: '•';
    color: #ef4444;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.turning-point {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #0ea5e9;
    margin: 2rem 0;
    text-align: center;
}

.turning-point h3 {
    color: #0369a1;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.intro-conclusion {
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
}

/* What is PrimeBiome Section */
.what-is {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.what-is-content {
    max-width: 900px;
    margin: 0 auto;
}

.what-is-intro {
    font-size: 1.3rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 2rem;
    text-align: center;
}

.not-list {
    background: #fef2f2;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #ef4444;
}

.not-list p {
    margin-bottom: 0.5rem;
    color: #7f1d1d;
}

.what-it-is {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #10b981;
}

.definition {
    font-size: 1.2rem;
    font-weight: 600;
    color: #065f46;
    margin-bottom: 1rem;
}

.ingredients-section {
    margin: 3rem 0;
}

.ingredients-section h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

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

.ingredient-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.ingredient-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.ingredient-card h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.ingredient-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.convenience {
    text-align: center;
    margin: 2rem 0;
}

.convenience-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 1rem 2rem;
    border-radius: 25px;
    display: inline-block;
}

.transformation-promise {
    background: linear-gradient(135deg, #fef7f7, #fdf2f2);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.transformation-promise h3 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.final-statement {
    font-weight: 600;
    color: #667eea;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* How Works Section */
.how-works {
    padding: 80px 0;
    background: white;
}

.how-works-content {
    max-width: 900px;
    margin: 0 auto;
}

.problem-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.problem-intro p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.revelation {
    font-size: 1.3rem;
    color: #dc2626;
    margin: 2rem 0;
}

.gut-focus {
    font-size: 1.5rem;
    color: #667eea;
    margin: 1rem 0;
}

.science-explanation {
    margin: 3rem 0;
}

.science-explanation h3 {
    font-size: 1.3rem;
    color: #1e293b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.science-term {
    font-size: 1.2rem;
    color: #667eea;
    font-weight: 600;
    text-align: center;
    margin: 2rem 0;
}

.gut-facts {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.fact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.fact-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.collapse-results {
    background: #fef2f2;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.collapse-results h4 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.result-list {
    list-style: none;
    margin-left: 1rem;
}

.result-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.result-list li::before {
    content: '→';
    color: #dc2626;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.solution-intro {
    text-align: center;
    margin: 3rem 0;
}

.solution-intro h3 {
    font-size: 1.4rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.triple-action {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

.action-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease;
}

.action-card:hover {
    transform: translateX(10px);
}

.action-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.action-card h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.highlight-text {
    color: #667eea;
    font-weight: 600;
    font-style: italic;
}

.system-explanation {
    margin: 3rem 0;
    text-align: center;
}

.not-list-final {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.not-list-final h4 {
    color: #065f46;
    margin-bottom: 1rem;
}

.final-points {
    list-style: none;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.final-points li {
    padding: 0.5rem 0;
    color: #065f46;
    font-weight: 500;
}

.imagination-section {
    margin: 2rem 0;
}

.imagination-section p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.final-how {
    font-size: 1.3rem;
    color: #667eea;
    margin-top: 1.5rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-top: 0.5rem;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Conclusion Section */
.conclusion {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.conclusion-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.conclusion-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    opacity: 0.9;
}

.cta-section {
    margin-top: 3rem;
}

.cta-button {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1e293b;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #ffed4e, #ffd700);
}

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

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .product-mockup {
        height: 300px;
    }
    
    .product-bottle {
        width: 150px;
        height: 225px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .triple-action {
        gap: 1rem;
    }
    
    .conclusion-title {
        font-size: 2rem;
    }
    
    .conclusion-text {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .intro-paragraph {
        font-size: 1rem;
    }
    
    .problem-highlight,
    .turning-point,
    .what-it-is,
    .action-card {
        padding: 1rem;
    }
    
    .ingredient-card,
    .benefit-card {
        padding: 1rem;
    }
}

/* Smooth animations */
@media (prefers-reduced-motion: no-preference) {
    .ingredient-card,
    .benefit-card,
    .action-card {
        animation: fadeInUp 0.6s ease-out;
    }
    
    .ingredient-card:nth-child(2) { animation-delay: 0.1s; }
    .ingredient-card:nth-child(3) { animation-delay: 0.2s; }
    .ingredient-card:nth-child(4) { animation-delay: 0.3s; }
    
    .benefit-card:nth-child(2) { animation-delay: 0.1s; }
    .benefit-card:nth-child(3) { animation-delay: 0.2s; }
    .benefit-card:nth-child(4) { animation-delay: 0.3s; }
    .benefit-card:nth-child(5) { animation-delay: 0.4s; }
    .benefit-card:nth-child(6) { animation-delay: 0.5s; }
}

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


/* Customer Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-content {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-intro p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

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

.testimonial-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-star {
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite;
}

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

.testimonial-author h4 {
    color: #1e293b;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.location {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-content {
    line-height: 1.7;
}

.testimonial-content p {
    color: #374151;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.testimonial-content p:first-child {
    font-style: italic;
    color: #667eea;
}

.testimonials-conclusion {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fef7f7, #fdf2f2);
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.testimonials-conclusion p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.final-testimonial-statement {
    font-weight: 600;
    color: #667eea;
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonials-intro p {
        font-size: 1rem;
    }
    
    .testimonials-conclusion {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .testimonial-header {
        gap: 0.5rem;
    }
    
    .testimonial-author h4 {
        font-size: 1rem;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
    }
}


/* Conclusion About PrimeBiome Section */
.conclusion-about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.conclusion-content {
    max-width: 900px;
    margin: 0 auto;
}

.conclusion-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.conclusion-intro p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.emphasis-text {
    font-style: italic;
    color: #dc2626;
    font-weight: 600;
    margin: 2rem 0;
}

.discovery-text {
    color: #667eea;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 2rem 0;
}

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

.conclusion-summary h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.summary-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.summary-point:hover {
    transform: translateX(5px);
}

.check-icon {
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.summary-point p {
    margin: 0;
    color: #374151;
    line-height: 1.6;
}

.revolution-statement {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 15px;
    border-left: 4px solid #10b981;
}

.revolution-statement h3 {
    color: #065f46;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.revolution-statement p {
    color: #047857;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.imagination-section {
    margin: 3rem 0;
    text-align: center;
}

.imagination-section h3 {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.imagination-points {
    background: linear-gradient(135deg, #fef7f7, #fdf2f2);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.imagination-points p {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.6;
}

.reality-check {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.dream-statement {
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.reality-check p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.opportunity-text {
    font-style: italic;
    color: #dc2626;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.final-choice {
    text-align: center;
    margin: 3rem 0;
}

.final-choice > p {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.transformation-promise {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.transform-text {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Responsive adjustments for conclusion sections */
@media (max-width: 768px) {
    .conclusion-about {
        padding: 60px 0;
    }
    
    .conclusion-summary,
    .revolution-statement,
    .imagination-points,
    .reality-check,
    .transformation-promise {
        padding: 1.5rem;
    }
    
    .summary-point {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .final-cta {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .conclusion-intro p,
    .reality-check p,
    .imagination-points p {
        font-size: 1rem;
    }
    
    .dream-statement {
        font-size: 1.1rem;
    }
    
    .transform-text {
        font-size: 1.1rem;
    }
    
    .cta-text {
        font-size: 1.2rem;
    }
    
    .revolution-statement h3 {
        font-size: 1.2rem;
    }
    
    .imagination-section h3 {
        font-size: 1.3rem;
    }
}


/* Scam Alert Section */
.scam-alert {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-top: 4px solid #dc2626;
    border-bottom: 4px solid #dc2626;
}

.scam-alert-content {
    max-width: 900px;
    margin: 0 auto;
}

.alert-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.alert-intro p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.warning-text {
    color: #dc2626;
    font-weight: 700;
    font-size: 1.2rem;
    background: #fef2f2;
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid #fca5a5;
}

.danger-warning {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
    border-left: 4px solid #dc2626;
}

.warning-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.warning-content h3 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.warning-content p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.official-stance h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.stance-text {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #374151;
}

.not-available {
    margin: 2rem 0;
}

.not-available h4 {
    color: #dc2626;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.1rem;
}

.not-available-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.not-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fef2f2;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid #fca5a5;
}

.x-icon {
    font-size: 1.2rem;
}

.red-flag {
    background: #dc2626;
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

.red-flag-text {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.exclusivity-reason {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #0ea5e9;
}

.exclusivity-reason h3 {
    color: #0369a1;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.exclusivity-reason p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.protection-message {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #10b981;
}

.shield-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.protection-content h3 {
    color: #065f46;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.protection-content p {
    color: #047857;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.guarantee-text {
    font-weight: 600;
    color: #059669;
}

.final-warning {
    font-weight: 700;
    color: #dc2626;
    font-size: 1.1rem;
}

/* Where to Buy Section */
.where-to-buy {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.where-to-buy-content {
    max-width: 900px;
    margin: 0 auto;
}

.buy-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.buy-intro p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.question-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffd700;
    font-style: italic;
}

.official-source {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.official-source p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.official-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.pointer-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.cta-main {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.cta-sub {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.importance-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.importance-section h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.importance-section p {
    line-height: 1.7;
    opacity: 0.9;
}

.benefits-buying {
    margin: 3rem 0;
}

.benefits-buying h3 {
    color: #ffd700;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    text-align: center;
}

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

.benefit-item {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.benefit-text h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.benefit-text p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.transformation-ready {
    text-align: center;
    margin: 3rem 0;
}

.transformation-ready h3 {
    color: #ffd700;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.journey-points {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.journey-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.journey-icon {
    font-size: 1.2rem;
}

.final-buy-message {
    text-align: center;
    margin: 3rem 0;
}

.final-text,
.choose-path {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.choose-path {
    font-weight: 600;
    color: #ffd700;
}

.buy-button-section {
    margin-top: 2rem;
}

.official-buy-button {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1e293b;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.official-buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #ffed4e, #ffd700);
}

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

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .scam-alert,
    .where-to-buy {
        padding: 60px 0;
    }
    
    .danger-warning,
    .protection-message {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .warning-icon,
    .shield-icon {
        font-size: 2rem;
    }
    
    .not-available-list {
        grid-template-columns: 1fr;
    }
    
    .official-cta {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .journey-points {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .official-buy-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .scam-alert-content,
    .where-to-buy-content {
        padding: 0 1rem;
    }
    
    .danger-warning,
    .official-stance,
    .protection-message,
    .official-source,
    .importance-section {
        padding: 1.5rem;
    }
    
    .warning-text {
        font-size: 1rem;
    }
    
    .question-text {
        font-size: 1.2rem;
    }
    
    .official-buy-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}


/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

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

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: #667eea;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: white;
}

.faq-answer p {
    padding: 0 2rem;
    margin: 1.5rem 0;
    color: #374151;
    line-height: 1.7;
    font-size: 1rem;
}

.faq-answer p:first-child {
    margin-top: 2rem;
}

.faq-answer p:last-child {
    margin-bottom: 2rem;
}

.faq-answer strong {
    color: #1e293b;
    font-weight: 700;
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-content {
        padding: 0 1rem;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 0;
    }
    
    .faq-toggle {
        align-self: flex-end;
        margin-top: -2rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 1rem;
        font-size: 0.9rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Custom Styles for PrimeBiome Landing Page */
html {
    font-size: 18px;
}

.product-bottle::before {
    content: none;
}

.cta-button a {
    /* color: inherit; */
    text-decoration: none;
}   

.scam-alert .section-title {
    background: linear-gradient(135deg, darkred, darkred);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.where-to-buy .section-title {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.transformation-promise h3 {
    color: #ffed4e;
}

.final-statement {
    color: #ffed4e;
}

.product-bottle {
    background: none;
    width: unset;
}

.product-bottle img {
    width: 100%;
    height: 100%;
    border-radius: 20px 20px 40px 40px;
    object-fit: cover;
}

.check-icon {
    display: none;
}

.summary-point p::before {
    content: '✔';
    font-weight: bolder;
    color: #10b981;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.cta-main a {
    color: inherit;
    font-weight: bold;
}

.importance-section a {
    color: inherit;
    font-weight: bold;
}

.testimonial-content p:first-child {
    color: darkblue;
}

@media (max-width: 768px) {
    .product-bottle {
        width: unset;
    }

    .nav-link {
        font-size: 14px;
    }    
}
/* End of Custom Styles for PrimeBiome Landing Page */