/* =============================================
   SNORPLE v2 — Styles
   ============================================= */

/* --- Variables & Reset --- */

:root {
    --primary: #1a2744;
    --primary-light: #243a5e;
    --accent: #e07a3d;
    --accent-dark: #c46830;
    --accent-glow: rgba(224, 122, 61, 0.15);
    --success: #0f9b58;
    --success-light: #e6f7ef;
    --warning: #f59e0b;
    --danger: #dc2626;
    --danger-light: #fef2f2;
    --text: #1a2744;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg: #ffffff;
    --bg-off: #f8f9fc;
    --bg-dark: #0d1b2a;
    --bg-card: #ffffff;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
    --shadow-accent: 0 8px 30px rgba(224, 122, 61, 0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

/* --- Focus Styles (Accessibility) --- */

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
    outline: none;
}

/* --- Reduced Motion --- */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =============================================
   URGENCY BAR
   ============================================= */

.urgency-bar {
    background: var(--primary);
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    position: relative;
    z-index: 100;
}

.urgency-bar-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.urgency-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s ease-in-out infinite;
}

.urgency-bar-accent .pulse-dot {
    background: #fff;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

/* =============================================
   NAV
   ============================================= */

.nav {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 90;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-family: var(--font);
    font-weight: 900;
    font-size: 22px;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 2px;
}

.logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.footer-logo .logo-img {
    height: 28px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: all 0.2s !important;
}

.nav-cta:hover {
    background: var(--accent-dark) !important;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
    padding: 4px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 12px;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    padding: 8px 0;
}

.mobile-menu.active {
    display: flex;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 17px;
    border-radius: 12px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-block {
    display: flex;
    width: 100%;
    text-align: center;
}

/* =============================================
   HERO
   ============================================= */

.hero {
    position: relative;
    background: var(--bg-dark);
    color: #fff;
    padding: 120px 0 100px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 80px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(224, 122, 61, 0.12) 0%, transparent 70%),
                radial-gradient(ellipse at 70% 80%, rgba(36, 58, 94, 0.5) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(224, 122, 61, 0.15);
    border: 1px solid rgba(224, 122, 61, 0.3);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.text-danger { color: var(--accent); }
.text-accent { color: var(--success); }

.hero-sub {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
}

.hero-sub-small {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.proof-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: #fff;
}

.proof-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    margin-top: 4px;
}

.hero-proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* =============================================
   SECTION COMMON
   ============================================= */

.section-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--accent);
    text-align: center;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

/* =============================================
   FEAR SECTION
   ============================================= */

.fear-section {
    background: var(--bg-off);
    padding: 100px 0;
}

.fear-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.fear-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s ease;
}

.fear-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
    transform: translateY(-4px);
}

.fear-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.fear-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text);
}

.fear-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.fear-callout {
    background: linear-gradient(135deg, var(--danger-light), #fff);
    border: 2px solid var(--danger);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.fear-callout-inner {
    padding: 40px 48px;
    border-left: 6px solid var(--danger);
}

.fear-callout h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--danger);
    margin-bottom: 12px;
}

.fear-callout p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
}

@media (max-width: 768px) {
    .fear-grid { grid-template-columns: 1fr; }
}

/* =============================================
   SCIENCE SECTION
   ============================================= */

.science-section {
    padding: 100px 0;
}

.science-steps {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.science-step {
    display: flex;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border-light);
    align-items: flex-start;
}

.science-step:last-child {
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-off);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-light);
}

.step-solution .step-number {
    background: var(--success);
    border-color: var(--success);
    color: #fff;
    font-size: 20px;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.step-solution .step-content h3 {
    color: var(--success);
}

.step-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* =============================================
   WAKE UP STATS
   ============================================= */

.wakeup-section {
    background: var(--bg-dark);
    color: #fff;
    padding: 80px 0;
}

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

.wakeup-number {
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 56px);
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
}

.wakeup-text {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .wakeup-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* =============================================
   PRODUCTS SECTION (Homepage)
   ============================================= */

.products-section {
    padding: 100px 0;
    background: var(--bg-off);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 32px;
}

.product-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
}

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

.product-card-featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), var(--shadow-accent);
}

.product-tag {
    position: absolute;
    top: -14px;
    left: 32px;
    background: var(--primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.tag-featured {
    background: var(--accent);
}

.product-image-wrap {
    border-radius: var(--radius);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    overflow: hidden;
    background: var(--bg-off);
}

.product-image-wrap.featured-bg {
    background: linear-gradient(135deg, var(--accent-glow), var(--bg-off));
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.3s ease;
}

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

.product-name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}

.product-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    margin-bottom: 24px;
}

.product-features li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text);
    padding-left: 24px;
    position: relative;
}

.product-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.price-original {
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-sale {
    font-size: 36px;
    font-weight: 900;
    color: var(--text);
}

.price-save {
    background: var(--success-light);
    color: var(--success);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.product-urgency {
    text-align: center;
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
    margin-top: 12px;
}

.products-comparison-note {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .products-grid { grid-template-columns: 1fr; }
}

/* =============================================
   TESTIMONIALS
   ============================================= */

.testimonials-section {
    padding: 100px 0;
}

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

.testimonial-card {
    background: var(--bg-off);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.testimonial-stars {
    color: var(--warning);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* =============================================
   FINAL CTA
   ============================================= */

.final-cta-section {
    padding: 100px 0;
    background: var(--bg-dark);
    color: #fff;
}

.final-cta-accent {
    background: linear-gradient(135deg, var(--bg-dark), #1a0a10);
}

.final-cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    margin-bottom: 32px;
}

.choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
    text-align: left;
}

.choice-bad, .choice-good {
    padding: 32px;
    border-radius: var(--radius);
}

.choice-bad {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.choice-good {
    background: rgba(15, 155, 88, 0.1);
    border: 1px solid rgba(15, 155, 88, 0.3);
}

.choice-bad h3 { color: var(--danger); font-size: 18px; margin-bottom: 16px; }
.choice-good h3 { color: var(--success); font-size: 18px; margin-bottom: 16px; }
.choice-bad ul, .choice-good ul { list-style: none; }
.choice-bad li, .choice-good li { padding: 6px 0; font-size: 14px; color: rgba(255,255,255,0.8); }

.final-cta-text {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 32px;
}

.final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.guarantee-text {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 16px;
}

.final-alternative {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.final-alternative a {
    color: var(--accent);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .choice-grid { grid-template-columns: 1fr; }
}

/* =============================================
   PRODUCT HERO (Product Pages)
   ============================================= */

.product-hero {
    padding: 80px 0;
    background: var(--bg-off);
}

.product-hero-accent {
    background: linear-gradient(135deg, var(--bg-off), #fdf2f4);
}

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

.product-hero-badge {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 8px;
}

.product-hero-info h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 12px;
}

.product-hero-tagline {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-hero-pricing {
    margin-bottom: 20px;
}

.pricing-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 8px;
}

.price-original-lg {
    font-size: 24px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-sale-lg {
    font-size: 52px;
    font-weight: 900;
    color: var(--text);
}

.final-cta-section .price-sale-lg {
    color: #fff;
}

.pricing-save-badge {
    display: inline-block;
    background: var(--success-light);
    color: var(--success);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
}

.final-cta-section .pricing-save-badge {
    background: rgba(15, 155, 88, 0.15);
}

.pricing-compare {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    margin-top: 8px;
}

.trust-row {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.trust-row span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 768px) {
    .product-hero-grid { grid-template-columns: 1fr; }
}

/* =============================================
   PRODUCT GALLERY
   ============================================= */

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gallery-main {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: opacity 0.3s ease;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.gallery-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gallery-thumb:hover {
    border-color: var(--text-muted);
}

.gallery-thumb.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

@media (max-width: 768px) {
    .gallery-main { aspect-ratio: 4 / 3; }
}

/* =============================================
   INLINE FEAR (Product Pages)
   ============================================= */

.inline-fear {
    padding: 40px 0;
}

.inline-fear-box {
    display: flex;
    gap: 20px;
    background: var(--danger-light);
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-left: 6px solid var(--danger);
    border-radius: var(--radius);
    padding: 28px 32px;
    align-items: flex-start;
}

.inline-fear-severe {
    background: linear-gradient(135deg, var(--danger-light), #fef2f2);
    border-color: var(--danger);
}

.inline-fear-icon {
    font-size: 32px;
    flex-shrink: 0;
    margin-top: 2px;
}

.inline-fear-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--danger);
    margin-bottom: 8px;
}

.inline-fear-content p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
}

/* =============================================
   DETAIL GRID (Product Pages)
   ============================================= */

.product-details-section {
    padding: 80px 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.detail-card {
    background: var(--bg-off);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.detail-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.detail-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.detail-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .detail-grid { grid-template-columns: 1fr; }
}

/* =============================================
   TRANSFORMATION
   ============================================= */

.transformation-section {
    padding: 80px 0;
    background: var(--bg-off);
}

.transform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.transform-before, .transform-after {
    padding: 32px;
    border-radius: var(--radius);
}

.transform-before {
    background: var(--danger-light);
    border: 2px solid rgba(220, 38, 38, 0.15);
}

.transform-after {
    background: var(--success-light);
    border: 2px solid rgba(15, 155, 88, 0.15);
}

.transform-label-bad, .transform-label-good {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.transform-label-bad { color: var(--danger); }
.transform-label-good { color: var(--success); }

.transform-before ul, .transform-after ul { list-style: none; }
.transform-before li, .transform-after li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .transform-grid { grid-template-columns: 1fr; }
}

/* =============================================
   UPGRADE SECTION
   ============================================= */

.upgrade-section {
    padding: 60px 0;
}

.upgrade-box {
    text-align: center;
    background: linear-gradient(135deg, var(--accent-glow), #fdf2f4);
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.upgrade-box h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.upgrade-box p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   COMBO EXPLANATION
   ============================================= */

.combo-explanation {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.combo-device {
    flex: 1;
    min-width: 280px;
    background: var(--bg-off);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
}

.combo-device h3 { font-size: 20px; margin-bottom: 10px; }
.combo-device p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

.combo-plus {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
}

.combo-warning {
    background: var(--danger-light);
    border: 2px solid rgba(220, 38, 38, 0.15);
    border-left: 6px solid var(--danger);
    border-radius: var(--radius);
    padding: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.combo-warning h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--danger);
    margin-bottom: 10px;
}

.combo-warning p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
}

/* =============================================
   INCLUDED SECTION
   ============================================= */

.included-section {
    padding: 80px 0;
    background: var(--bg-off);
}

/* =============================================
   FAQ
   ============================================= */

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

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 0 20px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* =============================================
   STICKY BOTTOM BAR
   ============================================= */

.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 39, 68, 0.97);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 12px 0;
    z-index: 80;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-bottom-bar.visible {
    transform: translateY(0);
}

.sticky-bar-accent {
    background: rgba(224, 122, 61, 0.97);
}

.sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    opacity: 0.7;
}

.countdown {
    font-size: 22px;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
}

.sticky-ctas {
    display: flex;
    gap: 10px;
}

@media (max-width: 600px) {
    .sticky-label { display: none; }
    .sticky-ctas .btn { font-size: 11px; padding: 8px 14px; }
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    background: var(--bg-off);
    border-top: 1px solid var(--border);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* =============================================
   GIF DEMOS
   ============================================= */

.gif-demo {
    max-width: 600px;
    margin: 48px auto 0;
    text-align: center;
}

.gif-demo-img {
    width: 100%;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-md);
}

.gif-demo-caption {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
    font-weight: 500;
}

.gif-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.gif-showcase-item { text-align: center; }

.gif-showcase-img {
    width: 100%;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-md);
}

.gif-showcase-caption {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 10px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .gif-showcase { grid-template-columns: 1fr; }
}

/* =============================================
   SALES POPUP NOTIFICATIONS
   ============================================= */

#salesPopupContainer {
    position: fixed;
    bottom: 70px;
    left: 24px;
    z-index: 95;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    pointer-events: none;
}

.sales-popup {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    max-width: 360px;
    pointer-events: auto;
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.sales-popup-visible {
    transform: translateX(0);
    opacity: 1;
}

.sales-popup-exit {
    transform: translateX(-120%) !important;
    opacity: 0 !important;
    transition: transform 0.4s ease-in, opacity 0.3s ease !important;
}

.sales-popup-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-off);
}

.sales-popup-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sales-popup-content {
    flex: 1;
    min-width: 0;
}

.sales-popup-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sales-popup-product {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}

.sales-popup-product strong {
    color: var(--accent);
}

.sales-popup-time {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.sales-popup-close {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.2s;
}

.sales-popup-close:hover {
    color: var(--text);
}

@media (max-width: 600px) {
    #salesPopupContainer {
        left: 12px;
        right: 12px;
        bottom: 60px;
    }
    .sales-popup {
        max-width: 100%;
    }
}

/* =============================================
   INVENTORY BADGES
   ============================================= */

.inventory-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
    transition: all 0.4s ease;
}

.inv-icon { font-size: 14px; }

.inv-normal {
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa;
}

.inv-low {
    background: var(--danger-light);
    color: var(--danger);
    border: 1px solid rgba(220, 38, 38, 0.25);
    animation: inv-pulse 1.5s ease-in-out infinite;
}

@keyframes inv-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.inventory-badge-lg {
    font-size: 14px;
    padding: 10px 16px;
    margin-top: 12px;
    width: 100%;
    justify-content: center;
}

/* =============================================
   CHECKOUT PAGE
   ============================================= */

.checkout-section {
    padding: 60px 0 80px;
    background: var(--bg-off);
    min-height: calc(100vh - 120px);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}

.checkout-summary {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
}

.checkout-summary h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.checkout-product-row {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.checkout-product-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-off);
    border: 1px solid var(--border);
}

.checkout-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.checkout-product-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.checkout-product-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

.checkout-line-items {
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: 8px;
}

.checkout-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
}

.checkout-line.total {
    border-top: 2px solid var(--border);
    margin-top: 8px;
    padding-top: 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.checkout-line.total .checkout-total-price {
    color: var(--accent);
    font-size: 22px;
}

.checkout-trust {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-light);
}

.checkout-trust-item span:first-child {
    font-size: 16px;
}

/* Payment Form */

.checkout-form-wrap {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.checkout-form-wrap h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 28px;
}

.form-section-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 24px 0 12px;
}

.form-section-label:first-of-type {
    margin-top: 0;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 12px;
}

.stripe-element-wrap {
    padding: 13px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--bg);
    transition: border-color 0.2s;
}

.stripe-element-wrap.focused {
    border-color: var(--primary);
}

#card-errors {
    color: var(--danger);
    font-size: 13px;
    margin-top: 8px;
    min-height: 18px;
}

.checkout-submit-btn {
    width: 100%;
    margin-top: 24px;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.checkout-submit-btn .btn-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.checkout-submit-btn.loading .btn-spinner { display: block; }
.checkout-submit-btn.loading .btn-text { display: none; }

@keyframes spin {
    to { transform: rotate(360deg); }
}

.checkout-guarantee {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
}

@media (max-width: 900px) {
    .checkout-grid { grid-template-columns: 1fr; }
    .checkout-summary { position: static; }
}

@media (max-width: 600px) {
    .checkout-form-wrap,
    .checkout-summary { padding: 24px 18px; }
    .form-row-2,
    .form-row-3 { grid-template-columns: 1fr; }
}

/* =============================================
   ORDER CONFIRMATION
   ============================================= */

.confirmation-section {
    padding: 80px 0;
    background: var(--bg-off);
    min-height: calc(100vh - 120px);
    text-align: center;
}

.confirmation-box {
    max-width: 580px;
    margin: 0 auto;
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.confirmation-icon {
    width: 72px;
    height: 72px;
    background: var(--success-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 24px;
}

.confirmation-box h1 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}

.confirmation-box .confirmation-sub {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.confirmation-details {
    background: var(--bg-off);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 28px;
    text-align: left;
}

.confirmation-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.confirmation-detail-row:last-child { border-bottom: none; }
.confirmation-detail-row .label { color: var(--text-light); }
.confirmation-detail-row .value { font-weight: 600; color: var(--text); }

@media (max-width: 600px) {
    .confirmation-box { padding: 32px 20px; }
}

/* =============================================
   CONTENT PAGES (Contact, Shipping, FAQ)
   ============================================= */

.content-page-hero {
    background: var(--primary);
    padding: 60px 0 50px;
    text-align: center;
}

.content-page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 42px);
    color: #fff;
    margin-bottom: 12px;
}

.content-page-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto;
}

.content-section {
    padding: 60px 0 80px;
    background: var(--bg);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.content-block h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.content-block h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin: 20px 0 8px;
}

.content-block p,
.content-block li {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.content-block ul {
    padding-left: 20px;
}

.content-card {
    background: var(--bg-off);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
}

.content-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.content-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    background: var(--bg-off);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border);
}

.contact-form h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
}

.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    resize: vertical;
    min-height: 120px;
    outline: none;
}

.contact-form textarea:focus {
    border-color: var(--primary);
}

@media (max-width: 600px) {
    .content-grid { grid-template-columns: 1fr; }
    .content-page-hero h1 { font-size: 30px; }
}

/* =============================================
   EMOTIONAL TRIGGER ELEMENTS
   ============================================= */

/* --- Clinical Trust Strip --- */

.trust-strip {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
}

.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.trust-strip-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.trust-strip-item strong {
    color: var(--text);
}

@media (max-width: 768px) {
    .trust-strip-inner { gap: 24px; }
    .trust-strip-item { font-size: 13px; }
}

/* --- Partner Perspective Section --- */

.partner-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4f8, var(--bg-off));
}

.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.partner-quote-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
}

.partner-quote-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 24px;
    font-size: 72px;
    color: var(--accent);
    font-family: var(--font-display);
    line-height: 1;
    opacity: 0.3;
}

.partner-quote-text {
    font-size: 17px;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 16px;
    position: relative;
}

.partner-quote-author {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
}

.partner-quote-role {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

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

.partner-stat-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    border-left: 4px solid var(--danger);
}

.partner-stat-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--danger);
    line-height: 1;
    margin-bottom: 6px;
}

.partner-stat-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .partner-grid { grid-template-columns: 1fr; }
}

/* --- Age Risk Callout --- */

.age-risk-callout {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.age-risk-callout::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(224, 122, 61, 0.15));
}

.age-risk-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.age-risk-callout h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 12px;
    position: relative;
}

.age-risk-callout p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    position: relative;
}

.age-risk-stats {
    display: flex;
    gap: 32px;
    margin-top: 24px;
    position: relative;
}

.age-risk-stat {
    text-align: center;
}

.age-risk-stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.age-risk-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

@media (max-width: 600px) {
    .age-risk-stats { flex-direction: column; gap: 16px; }
    .age-risk-callout { padding: 28px; }
}

/* --- Doctor's Note / Clinical Badge --- */

.clinical-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0f7ff;
    border: 1px solid #c4ddf6;
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-top: 16px;
}

.clinical-badge-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.clinical-badge-text {
    font-size: 13px;
    color: var(--text);
    line-height: 1.5;
}

.clinical-badge-text strong {
    color: var(--primary);
}

/* --- Identity / Vitality Section --- */

.vitality-section {
    padding: 80px 0;
    background: var(--bg);
}

.vitality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.vitality-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-off);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

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

.vitality-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.vitality-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}

.vitality-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .vitality-grid { grid-template-columns: 1fr; }
}

/* =============================================
   BREADCRUMBS
   ============================================= */

.breadcrumb {
    padding: 14px 0;
    font-size: 13px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg);
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb .sep {
    margin: 0 8px;
    color: var(--text-muted);
}

.breadcrumb .current {
    color: var(--text);
    font-weight: 500;
}

/* =============================================
   BLOG INDEX
   ============================================= */

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

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

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

.blog-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--bg-off);
}

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-tag {
    display: inline-block;
    background: var(--accent-glow);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 10px;
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    gap: 12px;
}

.blog-featured-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 2px solid var(--accent);
}

.blog-featured-card .blog-card-img {
    aspect-ratio: auto;
    height: 100%;
}

.blog-featured-card .blog-card-body {
    padding: 32px;
    justify-content: center;
}

.blog-featured-card .blog-card-title {
    font-size: 24px;
    font-family: var(--font-display);
}

.blog-featured-card .blog-card-excerpt {
    -webkit-line-clamp: 5;
}

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-featured-card { grid-template-columns: 1fr; }
    .blog-featured-card .blog-card-img { aspect-ratio: 16 / 9; height: auto; }
}

/* =============================================
   BLOG FILTERS
   ============================================= */

.blog-filters-section {
    background: var(--bg-off);
    padding: 24px 0 16px;
    border-bottom: 1px solid var(--border);
}

.blog-filters-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.blog-search-wrap {
    flex: 1;
    position: relative;
}

.blog-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.blog-search-input {
    width: 100%;
    padding: 10px 14px 10px 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font);
    background: #fff;
    color: var(--text);
    transition: border-color 0.2s;
}

.blog-search-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(224, 122, 61, 0.15);
}

.blog-sort-wrap { flex-shrink: 0; }

.blog-sort-select {
    padding: 10px 36px 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font);
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 12px center;
    color: var(--text);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.blog-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.blog-tag-pill,
.blog-contributor-pill {
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font);
    line-height: 1.4;
}

.blog-tag-pill:hover,
.blog-contributor-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.blog-tag-pill.active,
.blog-contributor-pill.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    font-weight: 600;
}

.blog-contributor-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.blog-filter-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-right: 4px;
}

.blog-results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.blog-clear-btn {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    font-family: var(--font);
    padding: 0;
}

.blog-clear-btn:hover {
    color: var(--primary);
}

.blog-card[data-hidden="true"] {
    display: none !important;
}

.blog-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 16px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

@media (max-width: 768px) {
    .blog-filters-bar {
        flex-direction: column;
    }
    .blog-tag-cloud {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }
    .blog-tag-pill,
    .blog-contributor-pill {
        white-space: nowrap;
    }
}

/* =============================================
   BLOG ARTICLE
   ============================================= */

.article-hero {
    background: var(--primary);
    padding: 60px 0 50px;
    text-align: center;
}

.article-hero .article-tag {
    display: inline-block;
    background: rgba(224, 122, 61, 0.2);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.article-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    color: #fff;
    margin-bottom: 12px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.article-hero .article-meta {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.article-content {
    max-width: 740px;
    margin: 0 auto;
    padding: 48px 24px 60px;
}

.article-content h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text);
    margin-top: 48px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.article-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-top: 36px;
    margin-bottom: 12px;
}

.article-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.article-content li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 8px;
}

.article-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-content a:hover {
    color: var(--accent-dark);
}

.article-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--bg-off);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text);
}

.article-content img {
    max-width: 100%;
    border-radius: var(--radius);
    margin: 24px 0;
}

/* Article CTA Box */

.article-cta-box {
    background: var(--bg-off);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 40px 0;
    text-align: center;
}

.article-cta-box h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    margin-top: 0;
    color: var(--text);
}

.article-cta-box p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.article-cta-box .btn {
    text-decoration: none;
}

/* Table of Contents */

.toc {
    background: var(--bg-off);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 40px;
}

.toc h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.toc ol {
    padding-left: 20px;
    margin: 0;
}

.toc li {
    font-size: 14px;
    color: var(--text-light);
    padding: 4px 0;
    line-height: 1.5;
}

.toc a {
    color: var(--text-light);
    text-decoration: none;
}

.toc a:hover {
    color: var(--accent);
}

/* Related Articles */

.related-articles {
    padding: 60px 0;
    background: var(--bg-off);
    border-top: 1px solid var(--border);
}

.related-articles .section-title {
    font-size: 28px;
    margin-bottom: 32px;
}

/* Blog Resources Section (for existing pages) */

.resources-section {
    padding: 80px 0;
    background: var(--bg-off);
}

.resources-section .blog-grid {
    max-width: 900px;
    margin: 0 auto;
}

.view-all-link {
    text-align: center;
    margin-top: 32px;
}

/* =============================================
   PRODUCT REVIEWS
   ============================================= */

.reviews-section {
    padding: 80px 0;
    background: var(--bg);
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviews-stars-lg {
    color: var(--warning);
    font-size: 24px;
    letter-spacing: 2px;
}

.reviews-rating-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
}

.reviews-count {
    font-size: 14px;
    color: var(--text-muted);
}

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

.review-card {
    background: var(--bg-off);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.review-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.review-verified {
    font-size: 11px;
    color: var(--success);
    font-weight: 600;
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
}

.review-stars {
    color: var(--warning);
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.review-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.review-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.review-card.hidden-review {
    display: none;
}

.review-card.hidden-review.visible {
    display: block;
}

.reviews-show-more {
    text-align: center;
    margin-top: 32px;
}

.reviews-show-more-btn {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 32px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
}

.reviews-show-more-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.reviews-archived {
    text-align: center;
    margin-top: 24px;
    padding: 16px;
    background: var(--bg-off);
    border-radius: var(--radius);
    font-size: 13px;
    color: var(--text-muted);
    display: none;
}

.reviews-archived.visible {
    display: block;
}

@media (max-width: 768px) {
    .reviews-grid { grid-template-columns: 1fr; }
}

/* --- Social Proof Strip (Product Pages) --- */

.social-proof-strip {
    background: var(--bg-off);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.social-proof-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-light);
}

.social-proof-stars {
    color: var(--warning);
    font-size: 16px;
    letter-spacing: 1px;
}

.social-proof-inner strong {
    color: var(--text);
}

.social-proof-divider {
    width: 1px;
    height: 16px;
    background: var(--border);
}

@media (max-width: 600px) {
    .social-proof-inner { gap: 12px; font-size: 12px; }
    .social-proof-divider { display: none; }
}

/* =============================================
   CONTRIBUTOR PROFILES
   ============================================= */

.contributor-profiles {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contributor-card {
    display: flex;
    gap: 32px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.contributor-photo {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent);
}

.contributor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contributor-info h2 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 4px;
}

.contributor-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.contributor-info p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .contributor-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .contributor-photo {
        width: 140px;
        height: 140px;
    }
}

/* =============================================
   FOUNDER / ABOUT PAGE
   ============================================= */

.founder-section {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 48px;
}

.founder-photo {
    flex-shrink: 0;
    width: 280px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.founder-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.founder-bio h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 4px;
}

.founder-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.founder-bio p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 14px;
}

.founder-credentials {
    margin-top: 24px;
    padding: 20px 24px;
    background: var(--bg-off);
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
}

.founder-credentials h3 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 10px;
}

.founder-credentials ul {
    list-style: none;
    padding: 0;
}

.founder-credentials li {
    font-size: 14px;
    color: var(--text-light);
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.founder-credentials li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.mission-section {
    background: var(--primary);
    color: #fff;
    padding: 48px;
    border-radius: var(--radius);
    margin-top: 48px;
}

.mission-section h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: #fff;
    margin-bottom: 16px;
}

.mission-section p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 14px;
}

@media (max-width: 768px) {
    .founder-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .founder-photo { width: 220px; }
    .mission-section { padding: 32px 24px; }
}

/* =============================================
   BLOG PAGINATION
   ============================================= */

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.blog-pagination a {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border);
}

.blog-pagination a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.blog-pagination .active {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.blog-pagination .ellipsis {
    border: none;
    background: none;
    color: var(--text-muted);
}

/* Blog author byline in articles */
.article-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.article-author-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.article-author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-author-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
}

.article-author-name a {
    color: var(--primary);
    text-decoration: none;
}

.article-author-name a:hover {
    color: var(--accent);
}

/* =============================================
   ARTICLE REFERENCES
   ============================================= */

.article-references {
    margin-top: 48px;
    padding: 24px 28px;
    background: var(--bg-off);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.article-references h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.article-references ol {
    padding-left: 20px;
    margin: 0;
}

.article-references li {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 6px;
    line-height: 1.5;
}

.article-references a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.article-references a:hover {
    border-bottom-color: var(--accent);
    color: var(--accent);
}

/* =============================================
   RELATED ARTICLES
   ============================================= */

.related-articles {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.related-articles h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

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

.related-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.related-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.related-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}

.related-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

.related-read {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: auto;
}

@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   ARTICLE FEATURED IMAGE
   ============================================= */

.article-featured-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin-bottom: 32px;
}
