.elementor-2934 .elementor-element.elementor-element-16d1494{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-23f415d *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

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

.logo-img {
    height: 40px;
    width: auto;
}

.nav-desktop {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
}

.nav-menu a:hover {
    color: #ffd700;
}

.order-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a1a !important;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.nav-mobile {
    display: none;
    background: #1a1a1a;
    border-top: 1px solid #333;
}

.mobile-nav-menu {
    list-style: none;
    padding: 20px 0;
}

.mobile-nav-menu li {
    padding: 10px 0;
}

.mobile-nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
}

.hero-text {
    text-align: center;
    margin-bottom: 60px;
}

.headline {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheadline {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* VSL Styles */
.vsl-container {
    background: #222;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.vsl-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

.vsl-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.vsl-text {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    margin: 20px 0 10px;
}

.watch-description {
    color: #ccc;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
}

/* Product Container */
.product-container {
    background: #222;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.product-image {
    margin-bottom: 30px;
}

.product-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.product-description h3 {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-description p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    text-align: left;
    color: #ccc;
}

.product-features li {
    padding: 5px 0;
    font-size: 0.95rem;
}

/* Storytelling Section */
.storytelling {
    background: #fff;
    padding: 100px 0;
    color: #333;
}

.storytelling h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-text h3 {
    color: #ffd700;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.story-text blockquote {
    background: #f8f9fa;
    border-left: 4px solid #ffd700;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.1rem;
    border-radius: 5px;
}

.brain-comparison {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.brain-scan {
    text-align: center;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.brain-scan img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.brain-scan p {
    font-weight: 600;
    color: #333;
}

.brain-scan span {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

/* Ingredients Section */
.ingredients {
    background: #1a1a1a;
    padding: 100px 0;
    color: #fff;
}

.ingredients h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #ffd700;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.ingredient-card {
    background: #222;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.ingredient-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.ingredient-card h3 {
    color: #ffd700;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.ingredient-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Reviews Section */
.reviews {
    background: #fff;
    padding: 100px 0;
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.review-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.review-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author strong {
    display: block;
    color: #1a1a1a;
    font-weight: 700;
}

.review-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Bonus Section */
.bonus {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 100px 0;
    color: #1a1a1a;
}

.bonus h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
}

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

.bonus-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-10px);
}

.bonus-item img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.bonus-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.bonus-item p {
    color: #333;
    line-height: 1.6;
}

/* Guarantee Section */
.guarantee {
    background: #1a1a1a;
    padding: 100px 0;
    color: #fff;
}

.guarantee-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-badge img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.guarantee-text h2 {
    color: #ffd700;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.guarantee-text p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Checkout Section */
.checkout {
    background: #fff;
    padding: 100px 0;
}

.checkout h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    align-items: end;
    margin-bottom: 40px;
}

.checkout-option {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.checkout-option:hover {
    transform: translateY(-10px);
}

.checkout-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.checkout-option.featured .checkout-img {
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}

.shipping-notice {
    text-align: center;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #ffd700;
}

.shipping-notice p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.shipping-notice p:first-child {
    font-weight: 700;
    color: #1a1a1a;
}

.shipping-notice em {
    color: #666;
}

/* FAQ Section */
.faq {
    background: #1a1a1a;
    padding: 100px 0;
    color: #fff;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #ffd700;
}

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

.faq-item {
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #ffd700;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

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

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #ccc;
    line-height: 1.6;
}

/* Scientific References */
.scientific-references {
    background: #fff;
    padding: 100px 0;
}

.scientific-references h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.references-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #333;
}

.references-list {
    list-style: none;
    text-align: left;
}

.references-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    font-size: 0.95rem;
}

.references-list li:before {
    content: "📚 ";
    margin-right: 10px;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 60px 0 40px;
    color: #ccc;
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 30px;
}

.footer-links {
    margin-bottom: 40px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 20px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.disclaimer {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #888;
}

.disclaimer p {
    margin-bottom: 15px;
}

.disclaimer strong {
    color: #ccc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-desktop {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-mobile.active {
        display: block;
    }

    .headline {
        font-size: 2.5rem;
    }

    .subheadline {
        font-size: 1.3rem;
    }

    .hero-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brain-comparison {
        flex-direction: row;
        gap: 20px;
    }

    .guarantee-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .checkout-option.featured {
        order: -1;
    }

    .ingredients-grid,
    .reviews-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 100px 0 60px;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 2rem;
    }

    .subheadline {
        font-size: 1.1rem;
    }

    .brain-comparison {
        flex-direction: column;
    }

    .vsl-container,
    .product-container {
        padding: 20px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth transitions */
* {
    transition: all 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffed4e;
}/* End custom CSS */