/* ============================================
   MR. JUICE - Clean Modern Design
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-card: rgba(255, 255, 255, 0.03);
    
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    
    --accent-blue: #4A90D9;
    --accent-green: #58d68d;
    --accent-yellow: #f7dc6f;
    --accent-orange: #f39c12;
    
    --border-color: rgba(255, 255, 255, 0.08);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: 0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-md) 0;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-img {
    height: 36px;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-blue);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 8px;
}

.hamburger {
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.mobile-menu-toggle.active .hamburger { background: transparent; }
.mobile-menu-toggle.active .hamburger::before { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active .hamburger::after { transform: rotate(-45deg) translate(5px, -5px); }

.nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    border-bottom: 1px solid var(--border-color);
}

.nav.active {
    display: block;
}

.nav-list {
    display: flex;
    flex-direction: column;
    padding: var(--space-md) var(--space-lg);
}

.nav-link {
    padding: var(--space-md);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav {
        display: block;
        position: static;
        background: none;
        border: none;
    }
    
    .nav-list {
        flex-direction: row;
        padding: 0;
        gap: var(--space-sm);
    }
    
    .nav-link {
        padding: var(--space-sm) var(--space-md);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--accent-blue);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 144, 217, 0.3);
}

.btn-outline {
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--text-secondary);
    background: var(--bg-card);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.1rem;
}

.btn-arrow {
    transition: transform var(--transition);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ============================================
   SECTION STYLING
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-blue);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-blue);
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--accent-blue);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bottles-img {
    max-height: 500px;
    width: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-image {
        order: 2;
    }
}

/* ============================================
   TIMELINE / JUICE MENU
   ============================================ */
.your-day {
    padding: var(--space-4xl) 0;
    background: var(--bg-secondary);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-blue), var(--accent-green));
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 42px;
    top: 20px;
    width: 18px;
    height: 18px;
    background: rgba(74, 144, 217, 0.3);
    border: 3px solid var(--accent-blue);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(74, 144, 217, 0.4);
    animation: pulseDot 2s ease-in-out infinite;
}

/* Stagger the dot animations */
.timeline-item:nth-child(1)::before { animation-delay: 0s; }
.timeline-item:nth-child(2)::before { animation-delay: 0.3s; }
.timeline-item:nth-child(3)::before { animation-delay: 0.6s; }
.timeline-item:nth-child(4)::before { animation-delay: 0.9s; }
.timeline-item:nth-child(5)::before { animation-delay: 1.2s; }
.timeline-item:nth-child(6)::before { animation-delay: 1.5s; }

@keyframes pulseDot {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(74, 144, 217, 0.3);
        background: rgba(74, 144, 217, 0.2);
    }
    50% { 
        box-shadow: 0 0 25px rgba(74, 144, 217, 0.6);
        background: rgba(74, 144, 217, 0.5);
    }
}

.timeline-item:hover::before {
    background: var(--accent-blue);
    box-shadow: 0 0 25px rgba(74, 144, 217, 0.8);
    transform: scale(1.2);
    animation: none;
}

.timeline-time {
    min-width: 100px;
    text-align: right;
    padding-top: 15px;
}

.timeline-time .time {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.timeline-time .period {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.timeline-content {
    flex: 1;
    display: flex;
    gap: var(--space-xl);
    background: linear-gradient(135deg, 
        rgba(20, 30, 50, 0.8) 0%, 
        rgba(30, 45, 65, 0.6) 50%,
        rgba(20, 35, 55, 0.8) 100%);
    border: 1px solid rgba(74, 144, 217, 0.4);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(74, 144, 217, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Always visible subtle glow */
.timeline-content::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, 
        rgba(74, 144, 217, 0.3), 
        rgba(88, 214, 141, 0.15),
        rgba(74, 144, 217, 0.3));
    z-index: -1;
    opacity: 0.5;
    filter: blur(8px);
    transition: opacity 0.4s ease;
}

/* Holographic shine effect - always animating on mobile */
.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(74, 144, 217, 0.08),
        rgba(88, 214, 141, 0.08),
        transparent
    );
    animation: shineSwipe 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shineSwipe {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.timeline-content:hover::after {
    opacity: 1;
}

.timeline-content:hover {
    background: linear-gradient(135deg, 
        rgba(25, 40, 65, 0.9) 0%, 
        rgba(35, 55, 80, 0.8) 50%,
        rgba(25, 45, 70, 0.9) 100%);
    border-color: rgba(74, 144, 217, 0.6);
    transform: translateX(8px) scale(1.02);
    box-shadow: 
        0 8px 40px rgba(74, 144, 217, 0.25),
        0 0 60px rgba(74, 144, 217, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.juice-image {
    flex-shrink: 0;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Always visible glow behind bottle */
.juice-image::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(74, 144, 217, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlowSmall 3s ease-in-out infinite;
}

@keyframes pulseGlowSmall {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.4); opacity: 0.7; }
}

.juice-image img {
    max-height: 180px;
    width: auto;
    filter: drop-shadow(0 10px 25px rgba(74, 144, 217, 0.3));
    position: relative;
    z-index: 1;
    animation: floatBottle 3s ease-in-out infinite;
}

/* Stagger the float animation for each juice */
.timeline-item:nth-child(1) .juice-image img { animation-delay: 0s; }
.timeline-item:nth-child(2) .juice-image img { animation-delay: 0.5s; }
.timeline-item:nth-child(3) .juice-image img { animation-delay: 1s; }
.timeline-item:nth-child(4) .juice-image img { animation-delay: 1.5s; }
.timeline-item:nth-child(5) .juice-image img { animation-delay: 2s; }
.timeline-item:nth-child(6) .juice-image img { animation-delay: 2.5s; }

/* Stagger the glow animation too */
.timeline-item:nth-child(1) .juice-image::before { animation-delay: 0s; }
.timeline-item:nth-child(2) .juice-image::before { animation-delay: 0.5s; }
.timeline-item:nth-child(3) .juice-image::before { animation-delay: 1s; }
.timeline-item:nth-child(4) .juice-image::before { animation-delay: 1.5s; }
.timeline-item:nth-child(5) .juice-image::before { animation-delay: 2s; }
.timeline-item:nth-child(6) .juice-image::before { animation-delay: 2.5s; }

@keyframes floatBottle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.timeline-content:hover .juice-image img {
    animation: floatBottleHover 2s ease-in-out infinite;
    filter: drop-shadow(0 15px 35px rgba(74, 144, 217, 0.5));
}

@keyframes floatBottleHover {
    0%, 100% { transform: translateY(0) scale(1.05); }
    50% { transform: translateY(-12px) scale(1.08); }
}

.juice-details {
    flex: 1;
}

.juice-number {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-blue);
    background: rgba(74, 144, 217, 0.2);
    border: 1px solid rgba(74, 144, 217, 0.4);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(74, 144, 217, 0.2);
}

.timeline-content:hover .juice-number {
    background: rgba(74, 144, 217, 0.3);
    border-color: rgba(74, 144, 217, 0.6);
    box-shadow: 0 0 20px rgba(74, 144, 217, 0.4);
}

.juice-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    background: linear-gradient(135deg, #fff 0%, rgba(74, 144, 217, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.timeline-content:hover .juice-name {
    background: linear-gradient(135deg, #fff 0%, #4A90D9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.juice-ingredients {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.juice-benefit {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.juice-nutrition {
    display: flex;
    gap: var(--space-md);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.juice-nutrition span {
    padding: 6px 12px;
    background: rgba(74, 144, 217, 0.1);
    border: 1px solid rgba(74, 144, 217, 0.2);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.timeline-content:hover .juice-nutrition span {
    background: rgba(74, 144, 217, 0.15);
    border-color: rgba(74, 144, 217, 0.4);
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item::before {
        left: 12px;
    }
    
    .timeline-item {
        flex-direction: column;
        padding-left: 50px;
        gap: var(--space-md);
    }
    
    .timeline-time {
        text-align: left;
        padding-top: 0;
        min-width: auto;
    }
    
    .timeline-content {
        flex-direction: column;
        text-align: center;
    }
    
    .juice-image {
        width: 100%;
    }
    
    .juice-nutrition {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ============================================
   CLEANSE PACKAGES
   ============================================ */
.choose-cleanse {
    padding: var(--space-4xl) 0;
}

.cleanse-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto var(--space-2xl);
}

.cleanse-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    transition: var(--transition);
}

.cleanse-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.cleanse-card.featured {
    border-color: var(--accent-blue);
    position: relative;
}

.cleanse-card.featured::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
    opacity: 0.1;
    z-index: -1;
}

.cleanse-header {
    margin-bottom: var(--space-xl);
}

.cleanse-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.cleanse-badge.popular {
    color: var(--bg-primary);
    background: var(--accent-blue);
    border-color: var(--accent-blue);
}

.cleanse-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.cleanse-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.cleanse-price .currency {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-blue);
    margin-top: 8px;
}

.cleanse-price .amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.cleanse-image {
    position: relative;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-xl);
}

.cleanse-bottle {
    max-height: 180px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.cleanse-bottle.bottle-2 {
    position: absolute;
    right: 25%;
    max-height: 160px;
    opacity: 0.7;
}

.cleanse-bottle-stack {
    max-height: 200px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
}

.cleanse-features {
    text-align: left;
    margin-bottom: var(--space-xl);
}

.cleanse-features li {
    padding: var(--space-sm) 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: var(--space-xl);
}

.cleanse-features li:last-child {
    border-bottom: none;
}

.cleanse-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: 600;
}

.delivery-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.delivery-icon {
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .cleanse-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: var(--space-4xl) 0;
    background: var(--bg-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.step {
    text-align: center;
    padding: var(--space-xl);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    margin-bottom: var(--space-md);
}

.step h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--space-4xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-bottle {
    max-height: 400px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.about-content .section-tag,
.about-content .section-title {
    text-align: left;
}

.about-intro {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.about-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.value {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
}

.value-icon {
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1.5fr;
    }
    
    .about-values {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: var(--space-4xl) 0;
    background: var(--bg-secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: var(--space-md);
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--accent-blue);
    border-radius: 2px;
    transition: var(--transition);
}

.faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.faq-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item[open] .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, rgba(74, 144, 217, 0.1) 0%, rgba(88, 214, 141, 0.05) 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--space-3xl) 0 var(--space-xl);
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo-img {
    height: 40px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.footer-links a,
.footer-contact a,
.footer-contact p {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    transition: color var(--transition);
}

.footer-address {
    margin-top: var(--space-md);
}

.footer-address p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2px;
    line-height: 1.5;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: var(--radius-full);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    text-decoration: none;
}

.instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4);
    color: white;
}

.instagram-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 0;
}

.social-links a:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
}

.footer-disclaimer {
    padding: var(--space-lg);
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xl);
}

.footer-disclaimer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

.footer-disclaimer strong {
    color: var(--text-secondary);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
}

.footer-legal a {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ============================================
   HOLOGRAM MODAL
   ============================================ */
.juice-clickable {
    cursor: pointer;
    position: relative;
}

.juice-clickable:hover {
    transform: translateY(-5px);
}

.juice-clickable .juice-image {
    position: relative;
}

.click-hint {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(74, 144, 217, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.juice-clickable:hover .click-hint {
    opacity: 1;
}

.hologram-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.hologram-modal.active {
    opacity: 1;
    visibility: visible;
}

.hologram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.hologram-container {
    position: relative;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(135deg, 
        rgba(10, 20, 40, 0.95) 0%, 
        rgba(20, 40, 60, 0.95) 50%,
        rgba(10, 30, 50, 0.95) 100%);
    border: 1px solid rgba(74, 144, 217, 0.5);
    border-radius: 20px;
    box-shadow: 
        0 0 60px rgba(74, 144, 217, 0.3),
        0 0 100px rgba(74, 144, 217, 0.1),
        inset 0 0 60px rgba(74, 144, 217, 0.05);
    transform: scale(0.8) translateY(50px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hologram-modal.active .hologram-container {
    transform: scale(1) translateY(0);
}

.hologram-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(74, 144, 217, 0.03) 2px,
        rgba(74, 144, 217, 0.03) 4px
    );
    pointer-events: none;
    border-radius: 20px;
}

.hologram-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hologram-close:hover {
    background: rgba(74, 144, 217, 0.5);
    border-color: rgba(74, 144, 217, 0.8);
    transform: rotate(90deg);
}

.hologram-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .hologram-content {
        grid-template-columns: 300px 1fr;
        padding: 3rem;
    }
}

.hologram-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hologram-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(74, 144, 217, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.hologram-image img {
    position: relative;
    max-height: 280px;
    filter: drop-shadow(0 0 30px rgba(74, 144, 217, 0.5));
    animation: floatBottle 4s ease-in-out infinite;
}

@keyframes floatBottle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hologram-info {
    color: white;
}

.hologram-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.hologram-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(74, 144, 217, 0.8);
    padding: 4px 12px;
    border: 1px solid rgba(74, 144, 217, 0.5);
    border-radius: 20px;
}

.hologram-time {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.hologram-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #4A90D9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hologram-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hologram-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.hologram-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(74, 144, 217, 0.9);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.holo-icon {
    font-size: 1rem;
}

.hologram-section p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.hologram-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.hologram-benefits li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 1.25rem;
    position: relative;
}

.hologram-benefits li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #58d68d;
    font-size: 0.7rem;
}

.hologram-nutrition {
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(74, 144, 217, 0.1) 0%, rgba(88, 214, 141, 0.05) 100%);
    border: 1px solid rgba(74, 144, 217, 0.3);
    border-radius: 12px;
}

.hologram-nutrition h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(74, 144, 217, 0.9);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.nutrition-item {
    text-align: center;
}

.nutrition-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.nutrition-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Body scroll lock when modal is open */
body.modal-open {
    overflow: hidden;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Scroll margin for anchors */
section[id] {
    scroll-margin-top: 80px;
}
