@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&family=Bebas+Neue&display=swap');

/* ══════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════ */
:root {
    --gadre-red: #EE3123;
    --gadre-red-d: #c9271a;
    --edamame-g: #78B82A;
    --edamame-g-d: #5a9020;
    --edamame-dark: #1b4d3e;
    --black: #0a0a0a;
    --white: #ffffff;
    --off-white: #f8faf4;
    --text-dark: #111111;
    --text-muted: #64748b;
    --glass: rgba(255, 255, 255, 0.72);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 40px 100px rgba(0, 0, 0, 0.18);
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 40px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.55s var(--ease);
}

/* ══════════════════════════════════════
   BASE RESET
══════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: #fafdf6;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

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

a {
    color: inherit;
}

/* ══════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════ */
h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 7.5rem);
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: -1px;
}

h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--text-dark);
    line-height: 0.92;
}

h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-tag {
    display: inline-block;
    background: var(--edamame-g);
    color: white;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.18);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-title {
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--gadre-red);
}

.section-title.light {
    color: white;
}

.section-title.light span {
    color: var(--edamame-g);
}

.section-sub {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 5rem;
    font-weight: 400;
    text-align: center;
}

.section-sub.light {
    color: rgba(255, 255, 255, 0.7);
}

/* ══════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-hyper {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gadre-red);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(238, 49, 35, 0.3);
    white-space: nowrap;
}

.btn-hyper:hover {
    background: var(--gadre-red-d);
    box-shadow: 0 12px 40px rgba(238, 49, 35, 0.45);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    color: var(--text-dark);
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--gadre-red);
    color: var(--gadre-red);
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
#navbar {
    position: fixed;
    top: 0 !important;
    left: 0;
    width: 100%;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent !important;
    z-index: 10000;
    border-bottom: 1px solid transparent;
    transition: all 0.4s var(--ease);
    margin: 0 !important;
}

#navbar.scrolled {
    padding: 0.8rem 5%;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-logo {
    display: flex !important;
    align-items: center !important;
    min-width: 120px;
}

.nav-logo img {
    height: 48px !important;
    width: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.25s;
}

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

.nav-cta {
    padding: 0.75rem 1.6rem;
    font-size: 0.72rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(25px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 140px;
    padding-bottom: 50px;
    gap: 1.25rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
    overflow-y: auto;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.mobile-link {
    text-decoration: none;
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 8vw, 2.2rem);
    letter-spacing: 2px;
    transition: color 0.25s;
    text-align: center;
}

.mobile-link:hover {
    color: var(--edamame-g);
}

.mobile-shop {
    margin-top: 1rem;
    font-size: 0.9rem;
    padding: 1rem 2.5rem;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10rem 7% 6rem;
    position: relative;
    overflow: hidden;
    gap: 4rem;
}

/* Orb background blobs */
.hero-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    animation: floatOrb 12s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(120, 184, 42, 0.35), transparent);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(238, 49, 35, 0.15), transparent);
    bottom: -100px;
    left: 10%;
    animation-delay: -4s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(120, 184, 42, 0.2), transparent);
    top: 40%;
    left: 30%;
    animation-delay: -8s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-15px, 25px) scale(0.95);
    }
}

/* Hero content */
.hero-text {
    flex: 1;
    position: relative;
    z-index: 5;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(120, 184, 42, 0.12);
    color: var(--edamame-g-d);
    border: 1px solid rgba(120, 184, 42, 0.3);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    animation: fadeSlideDown 0.8s var(--ease) 0.2s both;
}

h1 {
    animation: fadeSlideUp 0.9s var(--ease) 0.3s both;
}

h1 span {
    color: var(--edamame-g);
    display: block;
    margin: 0.2rem 0;
}

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: #444;
    margin: 1.5rem 0 2rem;
    max-width: 500px;
    line-height: 1.7;
    animation: fadeSlideUp 0.9s var(--ease) 0.45s both;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
    animation: fadeSlideUp 0.9s var(--ease) 0.55s both;
}

.pill {
    background: rgba(120, 184, 42, 0.1);
    color: var(--edamame-g-d);
    border: 1px solid rgba(120, 184, 42, 0.25);
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.9s var(--ease) 0.65s both;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    animation: fadeSlideUp 0.9s var(--ease) 0.75s both;
}

.star-row {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Hero visuals */
.hero-visuals {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    animation: fadeIn 1s var(--ease) 0.4s both;
}

.pack-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(120, 184, 42, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.pack-container {
    position: relative;
    width: 100%;
    max-width: 530px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pack-front {
    width: 86%;
    max-height: 75vh;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.16));
    transition: transform 0.08s ease-out;
    position: relative;
    z-index: 2;
    transform: rotate(-6deg) translateX(-6%);
}

.pack-back {
    width: 78%;
    max-height: 70vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.12));
    position: absolute;
    right: -12%;
    top: 5%;
    z-index: 1;
    transform: rotate(8deg);
    opacity: 0.9;
    transition: transform 0.08s ease-out;
}

/* Floating stat badges */
.floating-badges {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
}

.float-badge {
    position: absolute;
    background: white;
    border-radius: var(--radius-sm);
    padding: 0.8rem 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: floatBadge 3.5s ease-in-out infinite;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.fb-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--gadre-red);
    line-height: 1;
}

.fb-label {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.float-1 {
    top: 10%;
    left: -5%;
}

.float-2 {
    bottom: 25%;
    left: -8%;
}

.float-3 {
    top: 18%;
    right: -5%;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker-lux {
    background: var(--edamame-g);
    color: white;
    padding: 0.9rem 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: tickerMove 28s linear infinite;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.9rem);
    letter-spacing: 1px;
}

.ticker-svg {
    display: inline-block;
    vertical-align: middle;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 8px;
    margin-top: -4px;
    stroke: currentColor;
    fill: none;
}

@keyframes tickerMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ticker-lux:hover .ticker-content {
    animation-play-state: paused;
}

/* ══════════════════════════════════════
   NUTRITION HUB
══════════════════════════════════════ */
.glass-hub {
    padding: 8rem 7%;
    background: var(--off-white);
    text-align: center;
}

.shimmer-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 5rem 7%;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 1100px;
    margin: 0 auto;
}

/* Hero macro row */
.macro-hero-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    margin-bottom: 5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #f0f0f0;
}

.macro-hero-item .macro-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 12vw, 10rem);
    line-height: 0.85;
    letter-spacing: 0;
}

.macro-hero-item.red .macro-val {
    color: var(--gadre-red);
}

.macro-hero-item.green .macro-val {
    color: var(--edamame-g);
}

.macro-hero-item .macro-label {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin: 0.5rem 0;
}

.macro-context {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 250px;
    margin: 0 auto;
    line-height: 1.5;
}

.macro-divider {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #ddd;
    letter-spacing: 2px;
}

/* Small macro grid */
.macro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.macro-item {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 2rem 1rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.macro-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.macro-icon {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.macro-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--edamame-g);
    line-height: 1;
}

.macro-label {
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    margin-top: 0.35rem;
}

/* Comparison bars */
.nutrition-bar-section {
    text-align: left;
    padding: 3rem 0 1rem;
    border-top: 1px solid #f0f0f0;
}

.nutrition-bar-section h3 {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-family: 'Outfit', sans-serif;
}

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

.bar-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    gap: 1rem;
}

.bar-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.bar-track {
    background: #f0f0f0;
    border-radius: 100px;
    height: 36px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    background: #ddd;
    border-radius: 100px;
    display: flex;
    align-items: center;
    padding-left: 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: white;
    width: 0;
    transition: width 1.2s var(--ease);
    white-space: nowrap;
}

.green-bar {
    background: linear-gradient(90deg, var(--edamame-g), var(--edamame-g-d));
}

.bar-label-highlight {
    color: var(--gadre-red);
}

.bar-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-style: italic;
}

.hub-cta {
    margin-top: 4rem;
}

/* ══════════════════════════════════════
   BENEFITS
══════════════════════════════════════ */
.benefits-section {
    padding: 8rem 7%;
    background: var(--off-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2378B82A' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.benefit-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    padding: 3rem 2.5rem;
    text-align: left;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    background: white;
    transform: translateY(-6px);
    border-color: rgba(120, 184, 42, 0.3);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(120, 184, 42, 0.08);
    color: var(--edamame-g-d);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.benefit-svg {
    width: 24px;
    height: 24px;
}

.benefit-card h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.benefit-card strong {
    color: var(--edamame-g-d);
}

/* ══════════════════════════════════════
   COMPARISON TABLE
══════════════════════════════════════ */
.compare-section {
    padding: 8rem 7%;
    background: white;
    text-align: center;
}

.compare-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin: 0 auto;
    max-width: 900px;
    -webkit-overflow-scrolling: touch;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    min-width: 580px;
}

.compare-table thead {
    background: var(--edamame-g);
    color: white;
}

.compare-table thead th {
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
}

.compare-table tbody tr {
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
}

.compare-table tbody tr:hover {
    background: #fafafa;
}

.compare-table td {
    padding: 1.1rem 1.5rem;
    text-align: left;
}

.highlight-row {
    background: linear-gradient(90deg, rgba(120, 184, 42, 0.07), rgba(120, 184, 42, 0.03));
    border-left: 4px solid var(--edamame-g) !important;
}

.highlight-row td:first-child {
    font-weight: 900;
}

.good {
    color: var(--edamame-g-d);
    font-weight: 700;
}

.bad {
    color: var(--gadre-red);
}

.compare-note {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.compare-note a {
    color: var(--gadre-red);
    font-weight: 700;
    text-decoration: none;
}

.compare-note a:hover {
    text-decoration: underline;
}

/* ══════════════════════════════════════
   PREP SECTION
══════════════════════════════════════ */
.prep-section {
    padding: 8rem 7%;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.prep-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.prep-card {
    background: var(--off-white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-md);
    padding: 3.5rem 2.5rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.prep-card:hover {
    border-color: rgba(120, 184, 42, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.prep-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    color: rgba(0, 0, 0, 0.03);
    position: absolute;
    top: -1rem;
    right: 1rem;
    line-height: 1;
    pointer-events: none;
}

.prep-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(120, 184, 42, 0.08);
    color: var(--edamame-g-d);
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.prep-svg {
    width: 28px;
    height: 28px;
}

.prep-card h3 {
    color: var(--edamame-g-d);
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.prep-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.prep-card strong {
    color: var(--text-dark);
}

.prep-time {
    display: inline-block;
    margin-top: 1.5rem;
    background: rgba(120, 184, 42, 0.12);
    color: var(--edamame-g-d);
    border: 1px solid rgba(120, 184, 42, 0.25);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Pro tip */
.pro-tip {
    max-width: 700px;
    margin: 0 auto;
}

.pro-tip-inner {
    background: rgba(238, 49, 35, 0.05);
    border: 1px solid rgba(238, 49, 35, 0.15);
    border-radius: var(--radius-md);
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: left;
}

.pro-badge {
    background: var(--gadre-red);
    color: white;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    white-space: nowrap;
}

.pro-tip-inner p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.pro-tip-inner strong {
    color: var(--gadre-red);
}

/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
.reviews-section {
    padding: 8rem 7%;
    background: var(--off-white);
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}

.review-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 3rem 2.5rem;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.review-card blockquote {
    font-size: 0.97rem;
    color: #333;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 2rem;
    quotes: "\201C" "\201D";
}

.review-card blockquote::before {
    content: open-quote;
    color: var(--edamame-g);
    font-size: 2rem;
    line-height: 0;
    vertical-align: -0.5rem;
    margin-right: 0.2rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--edamame-g);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.reviewer strong {
    display: block;
    font-size: 0.9rem;
}

.reviewer span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-section {
    padding: 8rem 7%;
    background: white;
    text-align: center;
}

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

.faq-item {
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.8rem 0;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
    transition: color 0.25s;
}

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

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

.faq-arrow {
    font-size: 1.2rem;
    transition: transform 0.35s var(--ease);
    flex-shrink: 0;
    color: var(--text-muted);
}

.faq-item[open] .faq-arrow {
    transform: rotate(180deg);
    color: var(--gadre-red);
}

.faq-item[open] summary {
    color: var(--gadre-red);
}

.faq-answer {
    padding: 0 0 2rem;
    animation: faqOpen 0.4s var(--ease);
}

.faq-answer p {
    color: #555;
    font-size: 0.97rem;
    line-height: 1.8;
}

.faq-answer a {
    color: var(--gadre-red);
    text-decoration: none;
    font-weight: 700;
}

.faq-answer a:hover {
    text-decoration: underline;
}

@keyframes faqOpen {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════════════
   BUY SECTION
══════════════════════════════════════ */
.buy-section {
    padding: 8rem 7%;
    background: var(--off-white);
    text-align: center;
}

.buy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.buy-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    padding: 2rem 1.2rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.buy-card:hover {
    background: white;
    transform: translateY(-5px);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-md);
}

.buy-card.official {
    background: rgba(238, 49, 35, 0.08);
    border-color: rgba(238, 49, 35, 0.2);
}

.buy-card.official:hover {
    background: rgba(238, 49, 35, 0.12);
    border-color: var(--gadre-red);
}

.buy-card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gadre-red);
    color: white;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 0.3rem 0.7rem;
    border-radius: 0 var(--radius-md) 0 var(--radius-sm);
}

.buy-icon {
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.2rem;
}

.buy-icon img {
    height: 56px;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.buy-card:hover .buy-icon img {
    transform: scale(1.08);
}

.buy-name {
    color: var(--text-dark);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.buy-desc {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ══════════════════════════════════════
   STICKY DOCK
══════════════════════════════════════ */
.order-dock-sticky {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 0.9rem 1.8rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.07);
    white-space: nowrap;
    max-width: calc(100vw - 2rem);
    overflow-x: auto;
    scrollbar-width: none;
}

.order-dock-sticky::-webkit-scrollbar {
    display: none;
}

.dock-title {
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.dock-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.25s;
    padding: 0.2rem 0;
    border-bottom: 2px solid transparent;
}

.dock-link:hover {
    color: var(--gadre-red);
    border-bottom-color: var(--gadre-red);
}

.dock-highlight {
    color: var(--gadre-red) !important;
    font-weight: 900;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
    padding: 2.5rem 7% 6.5rem;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    color: var(--text-dark);
}

.footer-logo {
    height: 55px;
    margin: 0 auto 1rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.25s;
}

.footer-nav a:hover {
    color: var(--gadre-red);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.7rem;
    opacity: 0.7;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════ */
@media (max-width: 1100px) {
    .buy-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 550px;
    }

    .macro-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 7rem 6% 5rem;
        gap: 3rem;
        min-height: auto;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-badge {
        display: inline-block;
    }

    h1 span {
        display: inline;
    }

    .hero-sub {
        margin: 1.5rem auto 2rem;
    }

    .hero-pills {
        justify-content: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visuals {
        width: 90%;
        max-width: 440px;
    }

    .float-badge {
        display: flex;
    }

    .macro-hero-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 2.2rem;
        padding-bottom: 2.2rem;
    }

    .macro-divider {
        display: none;
    }

    .macro-hero-item {
        text-align: center;
    }

    .macro-context {
        display: none;
    }

    .macro-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bar-row {
        grid-template-columns: 130px 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .prep-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .pro-tip-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .buy-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        margin: 0 auto;
    }

    .shimmer-card {
        padding: 2.5rem 5%;
    }

    .glass-hub,
    .benefits-section,
    .compare-section,
    .prep-section,
    .reviews-section,
    .faq-section,
    .buy-section {
        padding: 6rem 5%;
    }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════ */
@media (max-width: 640px) {
    h1 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    h2 {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .hero {
        padding: 6rem 5% 4rem;
    }

    .hero-visuals {
        width: 90%;
        max-width: 380px;
    }

    .float-badge {
        padding: 0.4rem 0.6rem;
        border-radius: 8px;
    }

    .fb-val {
        font-size: 1.1rem;
    }

    .fb-label {
        font-size: 0.48rem;
    }

    .float-1 {
        top: 10%;
        left: -2%;
    }

    .float-2 {
        bottom: 20%;
        left: -4%;
    }

    .float-3 {
        top: auto;
        bottom: 20%;
        right: -2%;
    }

    .macro-hero-item .macro-val {
        font-size: clamp(3.2rem, 10vw, 5rem);
    }

    .macro-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .bar-row {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .bar-label {
        font-size: 0.78rem;
    }

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

    .benefit-card {
        padding: 2.5rem 2rem;
    }

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

    .buy-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }

    .order-dock-sticky {
        justify-content: flex-start;
        border-radius: 16px;
        bottom: 1rem;
    }

    .dock-title {
        display: none;
    }

    .glass-hub,
    .benefits-section,
    .compare-section,
    .prep-section,
    .reviews-section,
    .faq-section,
    .buy-section {
        padding: 5rem 5%;
    }

    .macro-hero-row {
        margin-bottom: 1.2rem;
        padding-bottom: 1.2rem;
    }

    .shimmer-card {
        padding: 1.8rem 4%;
        border-radius: var(--radius-md);
    }

    .compare-table {
        font-size: 0.82rem;
    }

    .compare-table th,
    .compare-table td {
        padding: 0.9rem 1rem;
    }

    footer {
        padding: 2rem 5% 6.5rem;
    }

    .footer-nav {
        gap: 1.5rem;
    }
}

@media (max-width: 400px) {
    .hero-pills .pill {
        font-size: 0.72rem;
    }

    .btn-hyper,
    .btn-outline {
        font-size: 0.75rem;
        padding: 0.8rem 1.4rem;
    }

    .macro-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ══════════════════════════════════════
   ACCESSIBILITY & PRINT
══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 3px solid var(--gadre-red);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ══════════════════════════════════════
   REVIEWS PAGE SPECIFIC
   ══════════════════════════════════════ */
.reviews-page {
    background-color: var(--off-white);
    color: var(--text-dark);
}

.reviews-hero {
    position: relative;
    padding: 8rem 5% 5rem;
    text-align: center;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.reviews-hero-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.2rem, 8vw, 5rem);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    color: var(--text-dark);
}

.reviews-title span {
    color: var(--edamame-g);
}

.reviews-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.aggregate-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    background: var(--off-white);
    padding: 2.5rem 3.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 680px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.agg-score-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.agg-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    line-height: 0.9;
    color: var(--text-dark);
}

.agg-stars {
    color: #f59e0b;
    font-size: 1.4rem;
    margin: 0.5rem 0;
    letter-spacing: 2px;
}

.agg-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.agg-bars-col {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.bar-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.star-num {
    width: 30px;
    text-align: right;
    font-weight: 600;
}

.bar-fill-track {
    flex-grow: 1;
    height: 8px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill-actual {
    height: 100%;
    background: var(--edamame-g);
    border-radius: 4px;
}

.bar-pct {
    width: 35px;
    text-align: left;
    color: var(--text-muted);
    font-weight: 600;
}

.reviews-listing-section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-cta-section {
    padding: 6rem 5%;
    text-align: center;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.reviews-cta-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.reviews-cta-section p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-more-cta {
    text-align: center;
    margin-top: 3.5rem;
}

@media (max-width: 768px) {
    .aggregate-box {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
    .agg-bars-col {
        width: 100%;
    }
}