/* StreamMax — Premium Wellness Design */

:root {
    --ink: #0c0c10;
    --ink-soft: #16161e;
    --ink-muted: #242430;
    --cream: #faf6f0;
    --cream-dark: #f0ebe3;
    --white: #ffffff;
    --terracotta: #d4614a;
    --terracotta-light: #e87862;
    --terracotta-glow: rgba(212, 97, 74, 0.35);
    --gold: #c4a35a;
    --gold-light: #dbc07a;
    --sage: #3d5a4c;
    --sage-light: #5a7d6a;
    --blush: #f3e8e4;
    --text: #1a1a22;
    --text-muted: #5c5c6a;
    --text-light: #9494a4;
    --border: rgba(12, 12, 16, 0.07);
    --glass: rgba(255, 255, 255, 0.72);
    --shadow-sm: 0 2px 12px rgba(12, 12, 16, 0.04);
    --shadow: 0 8px 32px rgba(12, 12, 16, 0.08);
    --shadow-lg: 0 20px 60px rgba(12, 12, 16, 0.12);
    --shadow-glow: 0 0 80px var(--terracotta-glow);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

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

/* ─── Header ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.logo::before {
    content: '';
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--terracotta), var(--gold));
    border-radius: 50%;
    box-shadow: 0 0 12px var(--terracotta-glow);
}

.logo a {
    text-decoration: none;
    color: var(--ink);
    transition: color var(--transition);
}

.logo a:hover {
    color: var(--terracotta);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color var(--transition);
    position: relative;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--terracotta), var(--gold));
    transition: width var(--transition);
}

.header-nav a:hover {
    color: var(--ink);
}

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

.header-cta {
    padding: 0.65rem 1.5rem !important;
    font-size: 0.8rem !important;
    letter-spacing: 1px !important;
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
    background: var(--ink);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

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

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--terracotta) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--sage) 0%, transparent 70%);
    bottom: -15%;
    left: -10%;
    animation-delay: -4s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: 40%;
    left: 35%;
    opacity: 0.25;
    animation-delay: -8s;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.05); }
    66% { transform: translate(-15px, 20px) scale(0.95); }
}

.hero-split {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.75rem;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.02;
    letter-spacing: -3px;
    margin-bottom: 1.75rem;
}

.hero-text h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--terracotta-light) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.85;
    margin-bottom: 2.5rem;
    max-width: 480px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-accent {
    background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.hero-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--sage-light));
}

.hero-accent-card {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-accent-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hero-accent-card:first-child {
    padding-top: 0;
}

.accent-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.accent-stat {
    font-family: var(--font-display);
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.35rem;
    background: linear-gradient(135deg, var(--white), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    font-weight: 300;
}

/* Stats strip */
.stats-strip {
    background: var(--ink-soft);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.5px;
    font-weight: 400;
}

/* ─── Buttons ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-light) 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 20px var(--terracotta-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px var(--terracotta-glow);
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-dark {
    color: var(--ink);
    border-color: var(--border);
}

.btn-outline-dark:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

/* ─── Section Headers ─── */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1rem;
    position: relative;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '—';
    margin: 0 0.75rem;
    color: var(--gold);
    font-weight: 300;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.75;
}

/* ─── Product ─── */
.product-section {
    padding: 7rem 0;
    background: var(--white);
    position: relative;
}

.product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

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

.carousel-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(160deg, var(--cream) 0%, var(--blush) 100%);
    box-shadow: var(--shadow-lg);
}

.carousel-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(145deg, rgba(212,97,74,0.3), rgba(196,163,90,0.2), rgba(61,90,76,0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.carousel-slides {
    position: relative;
    height: 520px;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(12, 12, 16, 0.12));
    transition: transform 0.7s ease;
}

.carousel-slide.active img {
    animation: productReveal 0.7s ease;
}

@keyframes productReveal {
    from { transform: scale(0.95); opacity: 0.8; }
    to { transform: scale(1); opacity: 1; }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--ink);
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.carousel-btn:hover {
    background: var(--ink);
    color: var(--white);
    transform: translateY(-50%) scale(1.08);
}

.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cream-dark);
    cursor: pointer;
    transition: all var(--transition);
}

.dot.active {
    background: linear-gradient(135deg, var(--terracotta), var(--gold));
    transform: scale(1.2);
    box-shadow: 0 0 12px var(--terracotta-glow);
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--blush), var(--cream-dark));
    color: var(--sage);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(61, 90, 76, 0.15);
}

.product-badge::before {
    content: '◆';
    font-size: 0.5rem;
    color: var(--terracotta);
}

.product-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
    line-height: 1.15;
}

.product-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.25rem;
    line-height: 1.85;
    font-weight: 300;
}

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2.25rem;
}

.product-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: var(--radius);
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.5;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.product-features .feature:hover {
    background: var(--white);
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.feature-icon {
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sage), var(--sage-light));
    border-radius: 6px;
    font-size: 0.65rem;
}

.product-specs {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.product-specs::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--terracotta-glow) 0%, transparent 70%);
    border-radius: 50%;
}

.product-specs h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
}

.product-specs p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.5rem;
    position: relative;
}

.product-specs p strong {
    color: var(--gold-light);
    font-weight: 500;
}

.product-price {
    margin-bottom: 1.5rem;
}

.price-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.price-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #ff9900;
    border-radius: 2px;
}

/* ─── Benefits Bento ─── */
.benefits-section {
    padding: 7rem 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212,97,74,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.bento-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--terracotta), var(--gold));
    opacity: 0;
    transition: opacity var(--transition);
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:nth-child(1) { grid-column: span 4; }
.bento-card:nth-child(2) { grid-column: span 4; }
.bento-card:nth-child(3) { grid-column: span 4; }
.bento-card:nth-child(4) { grid-column: span 8; }
.bento-card:nth-child(5) { grid-column: span 4; }

.bento-card.featured {
    background: linear-gradient(145deg, var(--ink) 0%, var(--ink-soft) 100%);
    color: var(--white);
    border: none;
}

.bento-card.featured::before {
    background: linear-gradient(90deg, var(--gold), var(--terracotta));
    opacity: 1;
}

.bento-card.featured h3 {
    color: var(--white);
}

.bento-card.featured p {
    color: rgba(255, 255, 255, 0.6);
}

.benefit-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--terracotta), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.85;
}

.bento-card.featured .benefit-number {
    background: linear-gradient(135deg, var(--gold-light), var(--terracotta-light));
    -webkit-background-clip: text;
    background-clip: text;
}

.bento-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    font-weight: 300;
}

/* ─── Comparison ─── */
.how-it-works {
    padding: 7rem 0;
    background: var(--ink);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.how-it-works .section-title {
    color: var(--white);
}

.how-it-works .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.how-it-works .section-eyebrow {
    color: var(--gold-light);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: stretch;
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    font-style: italic;
    opacity: 0.6;
}

.comparison-item {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
}

.comparison-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.comparison-item.highlight {
    border-color: rgba(212, 97, 74, 0.4);
    background: linear-gradient(160deg, rgba(212,97,74,0.12) 0%, rgba(255,255,255,0.04) 100%);
    box-shadow: 0 0 60px rgba(212, 97, 74, 0.1);
}

.comparison-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.comparison-item .comparison-tag {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
}

.comparison-item.highlight .comparison-tag {
    background: rgba(212, 97, 74, 0.2);
    color: var(--terracotta-light);
}

.comparison-item h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -0.5px;
}

.comparison-image {
    margin-bottom: 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.comparison-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12,12,16,0.4) 0%, transparent 50%);
    pointer-events: none;
}

.comparison-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.comparison-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.75;
    font-weight: 300;
}

/* ─── Guarantee ─── */
.guarantee {
    padding: 6rem 0;
    background: var(--white);
}

.guarantee-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(160deg, var(--cream) 0%, var(--blush) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.guarantee-card::before {
    content: '✦';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.15;
}

.guarantee-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--terracotta), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 32px var(--terracotta-glow);
}

.guarantee-card .section-title {
    margin-bottom: 1.25rem;
}

.guarantee-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.85;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* ─── FAQ ─── */
.faq {
    padding: 7rem 0;
    background: var(--cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
}

.faq-item::before {
    content: attr(data-num);
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cream-dark);
    line-height: 1;
    pointer-events: none;
}

.faq-item:hover {
    box-shadow: var(--shadow);
    border-color: rgba(212, 97, 74, 0.2);
    transform: translateY(-3px);
}

.faq-item h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.75rem;
    padding-right: 3rem;
    letter-spacing: -0.3px;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
    font-weight: 300;
}

/* ─── Contact ─── */
.contact-section {
    padding: 7rem 0;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

.contact-section .section-title {
    color: var(--white);
}

.contact-section .section-subtitle,
.contact-section > .container > p {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 3.5rem;
    font-weight: 300;
}

.contact-section .section-eyebrow {
    color: var(--gold-light);
}

.contact-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--terracotta-glow) 0%, transparent 60%);
    pointer-events: none;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
    backdrop-filter: blur(8px);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 97, 74, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(212,97,74,0.2), rgba(196,163,90,0.15));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card strong {
    display: block;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.contact-card strong a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition);
}

.contact-card strong a:hover {
    color: var(--gold-light);
}

.contact-card span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
}

/* ─── Footer ─── */
.footer {
    background: var(--ink-soft);
    color: rgba(255, 255, 255, 0.6);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-legal h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.legal-info {
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.5rem 2rem;
}

.legal-info p {
    font-size: 0.92rem;
    line-height: 1.7;
    font-weight: 300;
}

.legal-info strong {
    color: var(--gold-light);
    font-weight: 500;
}

.health-notice {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--terracotta);
    padding: 1.75rem 2rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 2rem;
}

.health-notice h4 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.health-notice p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.contact-info-footer {
    margin-bottom: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info-footer p {
    font-size: 0.92rem;
    font-weight: 300;
}

.contact-info-footer strong {
    color: var(--white);
    font-weight: 500;
}

.contact-info-footer a {
    color: var(--terracotta-light);
    text-decoration: none;
    transition: color var(--transition);
}

.contact-info-footer a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 400;
    transition: color var(--transition);
}

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

.footer-bottom > p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.88rem;
}

/* ─── Legal Pages ─── */
.legal-page {
    padding: 8rem 0 6rem;
    min-height: 60vh;
    background: var(--cream);
}

.legal-page h1 {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 3.5rem;
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
}

.legal-page h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--terracotta), var(--gold));
    border-radius: 2px;
}

.legal-page section {
    margin-bottom: 1.5rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.legal-page section:hover {
    box-shadow: var(--shadow-sm);
}

.legal-page h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.legal-page h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.legal-page p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    line-height: 1.85;
    font-size: 1rem;
    font-weight: 300;
}

.legal-page ul {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.legal-page ul li {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
}

.legal-page a {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition);
}

.legal-page a:hover {
    color: var(--gold);
}

.withdrawal-form {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    border: 1px solid var(--border);
    border-left: 3px solid var(--sage);
}

.withdrawal-form p {
    margin-bottom: 1.25rem;
}

.product-image img,
.comparison-image img {
    background-color: var(--cream);
    min-height: 200px;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .bento-card:nth-child(1),
    .bento-card:nth-child(2),
    .bento-card:nth-child(3),
    .bento-card:nth-child(4),
    .bento-card:nth-child(5) {
        grid-column: span 6;
    }

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

    .stat-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-nav {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 7rem 0 4rem;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-image {
        position: static;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

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

    .bento-card:nth-child(n) {
        grid-column: span 1;
    }

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

    .comparison-vs {
        padding: 0.5rem 0;
    }

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

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .carousel-slides {
        height: 380px;
    }

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

    .stat-item::after {
        display: none;
    }

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

    .footer-links {
        justify-content: center;
    }

    .legal-page section {
        padding: 1.75rem;
    }

    .guarantee-card {
        padding: 2.5rem 1.5rem;
    }
}
