/* ================================================
   E2 CREATINE GUMMIES — HOMEPAGE STYLES
   Mixed dark + light aesthetic
   ================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Dark backgrounds */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card-dark: #1a1a1a;
    --bg-darkest: #050505;

    /* Light backgrounds */
    --bg-light: #fafafa;
    --bg-white: #ffffff;

    /* Text on dark */
    --text-white: #ffffff;
    --text-light: #f5f5f5;
    --text-muted: #999999;
    --text-subtle: #666666;

    /* Text on light */
    --text-dark: #111111;
    --text-dark-muted: #666666;
    --text-dark-subtle: #999999;

    /* Accents */
    --accent-red: #e63946;
    --accent-pink: #ff6b7a;
    --accent-glow: rgba(230, 57, 70, 0.15);

    /* Borders */
    --border-dark-subtle: #1a1a1a;
    --border-dark-medium: #333333;
    --border-light: #e8e8e8;

    /* Fonts */
    --font-heading: 'Bebas Neue', 'Arial Narrow', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.6s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ---------- Utilities ---------- */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 80px;
}

.section-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--accent-red);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: 3px;
    color: var(--text-white);
    margin-bottom: 48px;
}

.section-title--dark {
    color: var(--text-dark);
}

.section-header {
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-primary {
    background: var(--accent-red);
    color: var(--text-white);
    padding: 16px 40px;
}

.btn-primary:hover {
    background: var(--accent-pink);
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.4);
}

.btn-large {
    padding: 20px 60px;
    font-size: 20px;
}

/* ---------- Keyframe Animations ---------- */
@keyframes announcement-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ================================================
   SECTION 1: ANNOUNCEMENT BAR
   ================================================ */
.announcement-bar {
    background: var(--accent-red);
    height: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.announcement-track {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
    animation: announcement-scroll 20s linear infinite;
}

.announcement-track span {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-white);
}

.announcement-track .separator {
    font-size: 8px;
    opacity: 0.7;
}

/* ================================================
   SECTION 2: NAVIGATION
   ================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-dark-subtle);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 80px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--text-white);
    letter-spacing: 4px;
    transition: color var(--transition-medium);
}

.nav-logo:hover {
    color: var(--accent-red);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    transition: color var(--transition-medium);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-red);
    transition: width var(--transition-medium);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
}

.nav-cart {
    position: relative;
    color: var(--text-light);
    transition: color var(--transition-medium);
}

.nav-cart:hover {
    color: var(--accent-red);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--accent-red);
    color: var(--text-white);
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile menu toggle */
.nav-toggle-input {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    width: 28px;
    height: 28px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-white);
    transition: all var(--transition-medium);
}

/* ================================================
   SECTION 3: HERO
   ================================================ */
.hero {
    min-height: 100vh;
    background: var(--bg-primary);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 80px;
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-glow {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translate(0, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(230, 57, 70, 0.12) 0%, rgba(255, 107, 122, 0.06) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-right: 40px;
}

.hero-tagline {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--accent-red);
    margin-bottom: 24px;
    display: inline-block;
    border: 1px solid var(--accent-red);
    padding: 8px 20px;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: 96px;
    line-height: 0.95;
    letter-spacing: 4px;
    color: var(--text-white);
    margin-bottom: 28px;
}

.hero-subhead {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 40px;
}

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

.hero-image img {
    max-width: 520px;
    width: 100%;
    border-radius: 16px;
    filter: drop-shadow(0 20px 60px rgba(230, 57, 70, 0.25));
}

/* ================================================
   SECTION 4: SCROLLING MARQUEE
   ================================================ */
.marquee-section {
    background: var(--bg-secondary);
    padding: 30px 0;
    overflow: hidden;
    border-top: 1px solid var(--border-dark-subtle);
    border-bottom: 1px solid var(--border-dark-subtle);
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    animation: marquee-scroll 30s linear infinite;
}

.marquee-track span {
    font-family: var(--font-heading);
    font-size: 48px;
    color: transparent;
    -webkit-text-stroke: 1px #444;
    letter-spacing: 6px;
}

.marquee-track .dot {
    font-size: 16px;
    -webkit-text-stroke: 0;
    color: var(--accent-red);
}

/* ================================================
   SECTION 5: PRODUCT SHOWCASE
   ================================================ */
.product-showcase {
    background: var(--bg-light);
    padding: 120px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.product-card-image {
    overflow: hidden;
    height: 400px;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image img {
    transform: scale(1.03);
}

.product-card-info {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-info .btn {
    margin-top: auto;
    align-self: flex-start;
}

.product-card-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--text-dark);
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.product-variant {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark-subtle);
    margin-bottom: 16px;
}

.product-description {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-claims {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.product-claims span {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    padding: 6px 14px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark-muted);
}

/* ================================================
   SECTION 6: BENEFITS STRIP
   ================================================ */
.benefits-strip {
    background: var(--bg-white);
    padding: 100px 0;
    border-top: 1px solid var(--border-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit-card {
    text-align: center;
    padding: 40px 24px;
}

.benefit-icon {
    width: 72px;
    height: 72px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: border-color var(--transition-medium);
}

.benefit-card:hover .benefit-icon {
    border-color: var(--accent-red);
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-dark);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.benefit-card p {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark-muted);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ================================================
   NEW: HOW IT WORKS
   ================================================ */
.how-it-works {
    background: var(--bg-light);
    padding: 120px 0;
    border-top: 1px solid var(--border-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    counter-reset: step;
}

.step-card {
    position: relative;
    padding: 40px 32px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    text-align: center;
    transition: box-shadow var(--transition-medium);
}

.step-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 64px;
    letter-spacing: 4px;
    color: rgba(230, 57, 70, 0.1);
    line-height: 1;
    margin-bottom: 16px;
}

.step-icon {
    margin-bottom: 20px;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-dark);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.step-card p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark-muted);
    line-height: 1.7;
}

/* ================================================
   NEW: LIFESTYLE BANNER
   ================================================ */
.lifestyle-banner {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.lifestyle-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.lifestyle-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lifestyle-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.65) 100%);
}

.lifestyle-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    padding: 80px;
}

.lifestyle-content h2 {
    font-family: var(--font-heading);
    font-size: 72px;
    color: var(--text-white);
    line-height: 1.05;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.lifestyle-text {
    font-family: var(--font-body);
    font-size: 17px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 36px;
}

/* ================================================
   NEW: INGREDIENTS SECTION
   ================================================ */
.ingredients-section {
    background: var(--bg-light);
    padding: 120px 0;
}

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

.ingredients-intro {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.ingredient-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ingredient-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
}

.ingredient-item:first-child {
    border-top: 1px solid var(--border-light);
}

.ingredient-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.ingredient-header h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text-dark);
    letter-spacing: 2px;
}

.ingredient-amount {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-red);
    background: rgba(230, 57, 70, 0.08);
    padding: 4px 12px;
    border-radius: 4px;
}

.ingredient-item p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark-muted);
    line-height: 1.6;
}

.ingredients-image {
    position: sticky;
    top: 100px;
}

.ingredients-image img {
    width: 100%;
    border-radius: 12px;
}

/* ================================================
   SECTION 7: BRAND STORY SPLIT
   ================================================ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.split-image {
    overflow: hidden;
    background: #f0e0e0;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    background: var(--bg-primary);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    color: #aaaaaa;
    line-height: 1.7;
    margin-bottom: 20px;
}

.split-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid #222222;
    padding-top: 32px;
    margin-top: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--accent-red);
    line-height: 1;
    letter-spacing: 3px;
}

.stat-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-subtle);
}

/* ================================================
   NEW: COMPARISON TABLE
   ================================================ */
.comparison-section {
    background: var(--bg-white);
    padding: 120px 0;
    border-top: 1px solid var(--border-light);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--bg-primary);
}

.comparison-header div {
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 3px;
    color: var(--text-white);
}

.comparison-header .comparison-e2 {
    background: var(--accent-red);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border-light);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row div {
    padding: 16px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-row .comparison-feature {
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-row .comparison-e2 {
    background: rgba(230, 57, 70, 0.04);
}

.check {
    color: var(--accent-red);
    font-weight: 700;
    font-size: 16px;
}

.cross {
    color: #ccc;
    font-weight: 700;
    font-size: 16px;
}

.neutral {
    color: #999;
    font-weight: 700;
}

/* ================================================
   SECTION 8: TESTIMONIALS
   ================================================ */
.testimonials {
    background: var(--bg-light);
    padding: 120px 0;
}

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

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 40px;
    transition: border-color var(--transition-medium);
}

.testimonial-card:hover {
    border-color: var(--accent-red);
}

.stars {
    color: var(--accent-red);
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark-muted);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.verified {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    color: var(--accent-red);
}

/* ================================================
   NEW: FAQ SECTION
   ================================================ */
.faq-section {
    background: var(--bg-primary);
    padding: 120px 0;
}

.faq-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}

.faq-intro-text {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #222;
}

.faq-item:first-child {
    border-top: 1px solid #222;
}

.faq-item summary {
    padding: 24px 0;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--text-white);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-medium);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--accent-red);
    transition: transform var(--transition-medium);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item summary:hover {
    color: var(--accent-red);
}

.faq-answer {
    padding: 0 0 24px;
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ================================================
   NEW: COMMUNITY GALLERY
   ================================================ */
.community-section {
    background: var(--bg-light);
    padding: 120px 0 0;
}

.community-subtext {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--text-dark-muted);
    max-width: 500px;
    margin: -24px auto 48px;
    line-height: 1.6;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.community-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.community-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.community-item:hover img {
    transform: scale(1.08);
}

.community-overlay {
    position: absolute;
    inset: 0;
    background: rgba(230, 57, 70, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.community-item:hover .community-overlay {
    opacity: 1;
}

.community-overlay span {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-white);
    letter-spacing: 1px;
}

/* ================================================
   SECTION 9: CTA BANNER
   ================================================ */
.cta-banner {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-bg-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.93) 0%, rgba(10, 10, 10, 0.85) 100%);
}

.cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 72px;
    color: var(--text-white);
    line-height: 1.1;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.cta-content p {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
}

/* ================================================
   SECTION 10: FOOTER
   ================================================ */
.site-footer {
    background: var(--bg-darkest);
    padding: 80px 0 30px;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--text-white);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 12px;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-subtle);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--accent-red);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-family: var(--font-body);
    font-size: 14px;
    color: #888888;
    transition: color var(--transition-medium);
}

.footer-col a:hover {
    color: var(--text-white);
}

.footer-bottom {
    border-top: 1px solid var(--border-dark-subtle);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-subtle);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-subtle);
    transition: color var(--transition-medium);
}

.footer-legal a:hover {
    color: var(--text-white);
}

/* ================================================
   RESPONSIVE — 1024px (Tablet)
   ================================================ */
@media (max-width: 1024px) {
    .section-container {
        padding: 0 40px;
    }

    .nav-container {
        padding: 0 40px;
    }

    .hero {
        padding: 0 40px;
    }

    .hero-headline {
        font-size: 72px;
    }

    .section-title {
        font-size: 48px;
    }

    .marquee-track span {
        font-size: 40px;
    }

    .split-content {
        padding: 60px 40px;
    }

    .stat-number {
        font-size: 40px;
    }

    .cta-content h2 {
        font-size: 56px;
    }

    .footer-container {
        padding: 0 40px;
    }

    /* How It Works */
    .how-it-works {
        padding: 100px 0;
    }

    .steps-grid {
        gap: 24px;
    }

    .step-number {
        font-size: 52px;
    }

    /* Lifestyle Banner */
    .lifestyle-content {
        padding: 60px 40px;
    }

    .lifestyle-content h2 {
        font-size: 56px;
    }

    /* Ingredients */
    .ingredients-section {
        padding: 100px 0;
    }

    .ingredients-layout {
        gap: 40px;
    }

    /* Comparison */
    .comparison-section {
        padding: 100px 0;
    }

    /* FAQ */
    .faq-section {
        padding: 100px 0;
    }

    .faq-layout {
        grid-template-columns: 300px 1fr;
        gap: 48px;
    }

    /* Community */
    .community-section {
        padding: 100px 0 0;
    }
}

/* ================================================
   RESPONSIVE — 768px (Mobile / Small Tablet)
   ================================================ */
@media (max-width: 768px) {
    .section-container {
        padding: 0 24px;
    }

    .section-title {
        font-size: 40px;
        margin-bottom: 32px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Nav mobile */
    .nav-container {
        padding: 0 24px;
        height: 60px;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 10;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all var(--transition-medium);
        z-index: 999;
    }

    .nav-toggle-input:checked ~ .nav-links {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-toggle-input:checked ~ .mobile-menu-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle-input:checked ~ .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle-input:checked ~ .mobile-menu-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-actions {
        margin-right: 48px;
    }

    /* Hero mobile */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 80px 24px 60px;
        text-align: center;
    }

    .hero-glow {
        top: auto;
        bottom: 0;
        right: 50%;
        transform: translate(50%, 0);
        width: 400px;
        height: 400px;
    }

    .hero-content {
        padding-right: 0;
        order: 1;
    }

    .hero-headline {
        font-size: 56px;
    }

    .hero-subhead {
        max-width: none;
        font-size: 16px;
    }

    .hero-image {
        order: 2;
        margin-top: 40px;
    }

    .hero-image img {
        max-width: 320px;
        margin: 0 auto;
    }

    /* Marquee */
    .marquee-track span {
        font-size: 32px;
    }

    .marquee-track .dot {
        font-size: 12px;
    }

    /* Product showcase */
    .product-showcase {
        padding: 80px 0;
    }

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

    .product-card-image {
        height: 300px;
    }

    /* Benefits */
    .benefits-strip {
        padding: 80px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Split section */
    .split-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .split-image {
        height: 400px;
    }

    .split-content {
        padding: 60px 24px;
    }

    .split-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    /* Testimonials */
    .testimonials {
        padding: 80px 0;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 30px;
    }

    /* CTA Banner */
    .cta-content h2 {
        font-size: 48px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .btn-large {
        padding: 16px 40px;
        font-size: 18px;
    }

    /* How It Works */
    .how-it-works {
        padding: 80px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }

    .step-card {
        padding: 32px 24px;
    }

    .step-number {
        font-size: 48px;
    }

    /* Lifestyle Banner */
    .lifestyle-banner {
        min-height: 450px;
    }

    .lifestyle-content {
        padding: 60px 24px;
        max-width: none;
    }

    .lifestyle-content h2 {
        font-size: 44px;
    }

    .lifestyle-text {
        font-size: 15px;
    }

    /* Ingredients */
    .ingredients-section {
        padding: 80px 0;
    }

    .ingredients-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ingredients-image {
        position: static;
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Comparison */
    .comparison-section {
        padding: 80px 0;
    }

    .comparison-table {
        border-radius: 0;
    }

    .comparison-header div {
        padding: 16px 12px;
        font-size: 12px;
        letter-spacing: 2px;
    }

    .comparison-row div {
        padding: 12px;
        font-size: 13px;
    }

    /* FAQ */
    .faq-section {
        padding: 80px 0;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-intro-text {
        margin-bottom: 0;
    }

    /* Community */
    .community-section {
        padding: 80px 0 0;
    }

    .community-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .community-subtext {
        font-size: 15px;
    }

    /* Footer */
    .footer-container {
        padding: 0 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ================================================
   RESPONSIVE — 480px (Small Mobile)
   ================================================ */
@media (max-width: 480px) {
    .announcement-track span {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .hero-headline {
        font-size: 44px;
    }

    .hero-tagline {
        font-size: 11px;
        letter-spacing: 4px;
        padding: 6px 14px;
    }

    .hero-subhead {
        font-size: 14px;
    }

    .hero-image img {
        max-width: 260px;
    }

    .section-title {
        font-size: 34px;
    }

    .section-title--dark {
        font-size: 34px;
    }

    .marquee-track span {
        font-size: 24px;
    }

    .marquee-track {
        gap: 24px;
    }

    .product-card-info {
        padding: 24px;
    }

    .product-card-info h3 {
        font-size: 22px;
    }

    .benefit-card {
        padding: 30px 16px;
    }

    .split-image {
        height: 300px;
    }

    .split-stats {
        flex-direction: column;
        gap: 20px;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .cta-banner {
        min-height: 350px;
    }

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

    .footer-col h4 {
        margin-bottom: 12px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }

    /* How It Works */
    .step-card {
        padding: 28px 20px;
    }

    .step-number {
        font-size: 40px;
    }

    .step-card h3 {
        font-size: 18px;
    }

    /* Lifestyle Banner */
    .lifestyle-banner {
        min-height: 380px;
    }

    .lifestyle-content h2 {
        font-size: 34px;
    }

    .lifestyle-text {
        font-size: 14px;
        margin-bottom: 24px;
    }

    /* Ingredients */
    .ingredient-header h4 {
        font-size: 17px;
    }

    .ingredient-amount {
        font-size: 11px;
        padding: 3px 10px;
    }

    .ingredient-item {
        padding: 18px 0;
    }

    .ingredients-image {
        max-width: 300px;
    }

    /* Comparison */
    .comparison-header div {
        padding: 14px 8px;
        font-size: 10px;
        letter-spacing: 1px;
    }

    .comparison-row div {
        padding: 10px 8px;
        font-size: 12px;
        gap: 6px;
    }

    /* FAQ */
    .faq-item summary {
        font-size: 14px;
        padding: 20px 0;
    }

    .faq-item summary::after {
        font-size: 24px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .section-title--dark {
        font-size: 34px;
    }

    /* Community */
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .community-subtext {
        font-size: 14px;
    }
}
