:root {
    --bg-main: #07070a;
    --bg-secondary: #111116;
    --primary: #ff6600; /* Neon Orange */
    --primary-glow: rgba(255, 102, 0, 0.6);
    --secondary: #ffb703; /* Yellow Orange */
    --text-main: #f0f0f5;
    --text-muted: #a0a0ab;
    --glass-bg: rgba(20, 20, 25, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
    --accent: #00ff88; /* Neon Green for bonuses/success */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
}

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

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* Gradients & Glows */
.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-neon {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.glow-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 102, 0, 0.3);
}

/* Cookie Modal */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.cookie-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cookie-box {
    width: 90%;
    max-width: 450px;
    padding: 40px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-overlay.active .cookie-box {
    transform: scale(1);
}

.cookie-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.cookie-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.cookie-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), #e65c00);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
    box-shadow: 0 0 35px var(--primary-glow);
    transform: scale(1.05);
}

.btn-large {
    font-size: 1.2rem;
    padding: 20px 45px;
}

.btn-nav {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--primary);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 15px var(--primary-glow);
}

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

.pulse {
    animation: pulse 2s infinite;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.visible {
    opacity: 1 !important;
    transform: translate(0) !important;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(7, 7, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: radial-gradient(circle at top right, rgba(255, 102, 0, 0.1), transparent 50%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary-glow);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.badge-secondary {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.testimonials-hero {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.testim-item {
    padding: 20px;
    border-left: 4px solid var(--primary);
}

.testim-item p {
    font-style: italic;
    margin-bottom: 10px;
}

.testim-item span {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-img {
    width: 100%;
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(255,102,0,0.4));
}

.glow-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.4) 0%, rgba(255, 102, 0, 0) 70%);
    filter: blur(40px);
    z-index: 1;
}

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

/* Sections */
/* --- NEW HERO & NAVBAR STYLES (MATCHING SCREENSHOT) --- */

.navbar-light {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    background: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container-light {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-light {
    font-size: 1.8rem;
    font-weight: 900;
    color: #000;
    letter-spacing: 0px;
}

.text-orange { color: #ff5500; }
.text-tm { font-size: 0.8rem; vertical-align: top; color: #ff5500; }

.nav-links-light {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-links-light li {
    color: #333;
    font-size: 0.95rem;
}

.nav-links-light a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links-light a:hover { color: #000; }

.badge-red {
    background: #ff0000;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
    vertical-align: middle;
}

.btn-nav-green {
    background: #00cc44;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-nav-green:hover { background: #00aa33; }

.hero-blue {
    background-color: #0056b3;
    /* Subtle fruit pattern using linear-gradients or placeholder */
    background-image: radial-gradient(circle at 10% 20%, rgba(255,255,255,0.05) 1px, transparent 1px),
                      radial-gradient(circle at 90% 80%, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
    color: #fff;
}

.hero-header-text {
    margin-bottom: 40px;
}

.hero-header-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.hero-header-text h1 {
    font-size: 4rem;
    color: #fff200; /* Yellow */
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-header-text p {
    font-size: 1.2rem;
}

.hero-grid-new {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: flex-start;
}

.video-container {
    margin-bottom: 30px;
}

.video-frame {
    position: relative;
    border: 5px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-img {
    width: 100%;
    display: block;
    filter: brightness(0.7);
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    cursor: pointer;
}

.unmute-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.video-overlay p {
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.testimonials-hero-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testim-card-blue {
    background: rgba(0, 102, 204, 0.8);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.testim-card-blue::before {
    content: "“";
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 4rem;
    color: #ff5500;
    opacity: 0.5;
    line-height: 1;
    font-family: serif;
}

.testim-card-blue::after {
    content: "”";
    position: absolute;
    bottom: -20px;
    right: 10px;
    font-size: 4rem;
    color: #ff5500;
    opacity: 0.5;
    line-height: 1;
    font-family: serif;
}

.testim-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    padding-left: 30px;
}

.testim-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.stars {
    color: #fff200;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testim-card-blue p {
    font-style: italic;
    font-weight: bold;
    margin-bottom: 10px;
    padding-left: 30px;
}

.testim-card-blue span {
    font-size: 0.9rem;
    padding-left: 30px;
    opacity: 0.9;
}

.order-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    color: #333;
}

.order-box-header {
    background: #ff5500;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.order-box-header h3 {
    font-size: 1.6rem;
    line-height: 1.2;
}

.order-box-body {
    padding: 20px;
    text-align: center;
}

.bottles-img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    display: block;
}

.bonuses-divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
}

.bonuses-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ccc;
    z-index: 1;
}

.bonuses-divider span {
    background: #fff;
    padding: 0 10px;
    font-weight: bold;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.bonuses-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.bonus-mini {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 10px;
    position: relative;
    background: #fafafa;
}

.badge-free {
    background: #ff0000;
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 10px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.bonus-title-mini {
    color: #ff0000;
    font-weight: 800;
    font-size: 0.8rem;
    margin-top: 5px;
    margin-bottom: 5px;
}

.bonus-name-mini {
    font-weight: bold;
    font-size: 0.9rem;
    line-height: 1.2;
}

.btn-green-large {
    display: block;
    background: #00cc44;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 20px;
    text-decoration: none;
    border-radius: 5px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 204, 68, 0.4);
    transition: transform 0.3s, background 0.3s;
}

.btn-green-large:hover {
    background: #00aa33;
    transform: scale(1.05);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Science Section */
.science-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.science-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.science-text p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.glass-quote {
    padding: 20px;
    border-left: 4px solid var(--primary);
    background: rgba(255, 102, 0, 0.05);
    font-style: italic;
    font-size: 1.2rem;
    margin: 25px 0;
}

.science-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.science-info p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

/* Ingredients Section */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ingredient-card {
    text-align: center;
}

.ing-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.ingredient-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.ingredient-card span {
    font-size: 0.9rem;
    color: var(--primary);
    display: block;
    margin-bottom: 15px;
}

.ingredient-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.feature-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.badge-feature {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Pricing Section */
.timer-box {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 30px;
}

.timer-box h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.status-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.status { color: var(--accent); }
.stock { color: #ff3333; }

.countdown {
    font-size: 1.2rem;
    font-weight: 700;
}

.countdown span {
    font-size: 1.8rem;
    margin-left: 10px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.pricing-card {
    text-align: center;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.premium-card {
    transform: scale(1.05);
    border-color: var(--primary);
    position: relative;
    padding: 50px 30px;
}

.glow-effect-border {
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    background: var(--primary);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.pkg-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.premium-card .pkg-name {
    color: var(--primary);
}

.pkg-bottles {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.pkg-supply {
    font-size: 0.9rem;
    background: rgba(255,255,255,0.1);
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 25px;
}

.pkg-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 25px;
}

.pkg-price .currency {
    font-size: 1.5rem;
    margin-top: 5px;
}

.pkg-price .amount {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
}

.pkg-price .per {
    font-size: 0.9rem;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 10px;
    margin-left: 5px;
}

.pkg-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    width: 100%;
}

.pkg-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
}

.pkg-features li::before {
    content: '✓';
    color: var(--accent);
    margin-right: 10px;
    font-weight: bold;
}

.pkg-total {
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pkg-total .strike {
    text-decoration: line-through;
    opacity: 0.5;
}

.pkg-total .total-price {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    margin: 0 10px;
}

/* Guarantee & Bonuses */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(to right, rgba(20, 20, 25, 0.9), rgba(255, 102, 0, 0.1));
}

.guar-icon {
    font-size: 4rem;
}

.guarantee-box h3 {
    margin-bottom: 10px;
    color: var(--secondary);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.bonus-card {
    text-align: center;
}

.bonus-badge {
    background: var(--accent);
    color: #000;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.bonus-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.bonus-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    padding: 20px 30px;
    cursor: pointer;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 15px;
}

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

/* Footer */
footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.scientific-refs {
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.scientific-refs h4 {
    margin-bottom: 10px;
}

.scientific-refs p, .scientific-refs ol {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.scientific-refs ol {
    padding-left: 20px;
    margin-top: 15px;
}

.scientific-refs li {
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 20px;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-image { order: -1; }
    .testimonials-hero { align-items: center; }
    .science-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .premium-card { transform: scale(1); }
    .guarantee-box { flex-direction: column; text-align: center; }
    .bonuses-grid { grid-template-columns: 1fr; }
    
    .hero-grid-new { grid-template-columns: 1fr; }
    .hero-header-text h1 { font-size: 3rem; }
    .nav-links-light { display: none; }
}

@media (max-width: 768px) {
    .nav-links { display: none; } /* Simplified mobile nav */
    .hero h1 { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .hero-header-text h1 { font-size: 2.5rem; }
    .hero-header-text h2 { font-size: 1.8rem; }
}
