/* ============================================
   NeuroFitHealth – REDESIGN
   Theme: Clean Wellness / Teal + White
   ============================================ */

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

:root {
    --primary: #0D9488;
    --primary-dark: #0F766E;
    --primary-deeper: #134E4A;
    --primary-light: #CCFBF1;
    --primary-bg: #F0FDFA;
    --accent: #F59E0B;
    --accent-dark: #D97706;
    --accent-light: #FEF3C7;
    --text-dark: #1E293B;
    --text-mid: #475569;
    --text-light: #94A3B8;
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --border: #E2E8F0;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.16);
    --font-body: 'DM Sans', sans-serif;
    --font-display: 'DM Serif Display', serif;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
    background: var(--primary-deeper);
    color: rgba(255,255,255,0.9);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 10px 0;
    letter-spacing: 0.01em;
}
.announce-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.announce-sep { opacity: 0.3; }

/* ── HEADER ── */
.site-header {
    position: fixed;
    top: 38px;
    left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: top var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
    top: 0;
    box-shadow: var(--shadow-md);
}
.nav-wrap {
    display: flex;
    align-items: center;
    height: 68px;
    gap: 2rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-mark {
    width: 36px; height: 36px;
    background: var(--primary);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
}
.logo-name {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}
.logo-name strong { font-weight: 700; }
.main-nav {
    display: flex;
    gap: 2rem;
    margin-left: auto;
}
.main-nav a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color var(--transition);
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width var(--transition);
    border-radius: 2px;
}
.main-nav a:hover { color: var(--primary); }
.main-nav a:hover::after { width: 100%; }
.header-cta {
    background: var(--primary);
    color: var(--white);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 0.84rem;
    font-weight: 600;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
}
.header-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.mobile-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-align: center;
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(245,158,11,0.3);
}
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245,158,11,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-full { width: 100%; }

/* ── SECTION INTRO ── */
.section-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.section-intro.light h2 { color: var(--white); }
.section-intro.light p { color: rgba(255,255,255,0.7); }
.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-tag.green { background: var(--primary-light); color: var(--primary-dark); }
.section-tag.white { background: rgba(255,255,255,0.15); color: var(--white); }
.section-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.2;
}
.section-intro p {
    font-size: 1.02rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ── HERO ── */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(160deg, var(--white) 0%, var(--primary-bg) 100%);
    position: relative;
    overflow: hidden;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}
.hero-left h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.hero-highlight {
    color: var(--primary);
    position: relative;
}
.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; right: 0;
    height: 8px;
    background: var(--primary-light);
    z-index: -1;
    border-radius: 4px;
}
.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 480px;
}
.hero-stats {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.stat-box {
    flex: 1;
    text-align: center;
    padding: 18px 16px;
}
.stat-box:not(:last-child) { border-right: 1px solid var(--border); }
.stat-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.hero-note {
    font-size: 0.72rem;
    color: var(--text-light);
    line-height: 1.5;
}
/* Hero Visual */
.hero-right { position: relative; }
.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}
.hero-photo {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.hero-product-float {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 140px;
    z-index: 3;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
    animation: floatProduct 4s ease-in-out infinite;
}
@keyframes floatProduct {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.product-bottle {
    width: 100%;
    height: auto;
}
.hero-badge-float {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    z-index: 2;
    border-left: 3px solid var(--primary);
}
.badge-icon { font-size: 1.2rem; }
.badge-top { top: 20px; left: -20px; }
.badge-bottom { bottom: 40px; left: -30px; }
.hero-wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ── PROBLEMS ── */
.problems {
    padding: 100px 0 80px;
    background: var(--primary-bg);
}
.problems-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.problem-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}
.problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    opacity: 0;
    transition: opacity var(--transition);
}
.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.problem-card:hover::before { opacity: 1; }
.pc-icon-wrap {
    width: 52px; height: 52px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}
.problem-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.problem-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}
.problems-note {
    background: var(--primary-deeper);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}
.pn-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.problems-note p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin: 0;
}
.problems-note p strong { color: var(--white); }

/* ── BENEFITS TIMELINE ── */
.benefits {
    padding: 100px 0;
    background: var(--white);
}
.benefits-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}
.bt-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.bt-number {
    width: 56px; height: 56px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(13,148,136,0.3);
}
.bt-card {
    flex: 1;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.bt-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}
.bt-card-inner { padding: 28px; }
.bt-card-inner h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.bt-card-inner p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 14px;
}
.bt-card-inner ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.bt-card-inner ul li {
    font-size: 0.86rem;
    color: var(--primary-dark);
    font-weight: 600;
    padding-left: 20px;
    position: relative;
}
.bt-card-inner ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ── SCIENCE ── */
.science {
    padding: 100px 0;
    background: var(--primary-bg);
}
.science-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.science-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.science-visual img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.science-overlay-badge {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.science-text .section-tag { margin-bottom: 14px; }
.science-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.2;
}
.science-text > p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 32px;
}
.science-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 28px;
    background: var(--primary-deeper);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.sm-item {
    text-align: center;
    padding: 22px 14px;
}
.sm-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.1); }
.sm-item strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}
.sm-item span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.science-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--accent-light);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
}
.science-disclaimer span { font-size: 1.2rem; flex-shrink: 0; }
.science-disclaimer p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.55; margin: 0; }

/* ── INGREDIENTS ── */
.ingredients {
    padding: 110px 0;
    background: var(--primary-deeper);
    color: var(--white);
}
.ing-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 48px;
    border: 1px solid rgba(255,255,255,0.1);
}
.ing-showcase-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.ing-showcase-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.ing-label {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}
.ing-showcase-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 14px;
    color: var(--white);
}
.ing-showcase-info p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 20px;
}
.ing-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.ing-tag-row span {
    background: rgba(13,148,136,0.3);
    border: 1px solid rgba(13,148,136,0.5);
    color: var(--primary-light);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
}
.ing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.ing-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    transition: background var(--transition), transform var(--transition);
}
.ing-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}
.ing-item-icon {
    font-size: 1.8rem;
    margin-bottom: 14px;
}
.ing-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}
.ing-item p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ── TESTIMONIALS ── */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}
.testi-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 28px;
}
.testi-card-new {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}
.testi-card-new:first-child {
    background: var(--primary-deeper);
    color: var(--white);
    border-color: transparent;
}
.testi-card-new:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.tcn-stars {
    font-size: 1rem;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.tcn-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-mid);
    font-style: italic;
    margin-bottom: 24px;
}
.testi-card-new:first-child .tcn-text { color: rgba(255,255,255,0.85); }
.tcn-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.tcn-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--primary);
}
.testi-card-new:first-child .tcn-avatar {
    background: rgba(13,148,136,0.3);
    border-color: rgba(13,148,136,0.5);
}
.tcn-author strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
}
.testi-card-new:first-child .tcn-author strong { color: var(--white); }
.tcn-author span {
    font-size: 0.78rem;
    color: var(--text-light);
}
.testi-card-new:first-child .tcn-author span { color: rgba(255,255,255,0.5); }
.testi-legal {
    font-size: 0.77rem;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── LIFESTYLE BANNER ── */
.lifestyle-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}
.lifestyle-banner > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(19,78,74,0.85) 0%, rgba(13,148,136,0.7) 100%);
    display: flex;
    align-items: center;
}
.lb-overlay .container { text-align: center; }
.lb-overlay h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--white);
    margin-bottom: 14px;
}
.lb-overlay p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ── FAQ ── */
.faq {
    padding: 100px 0;
    background: var(--primary-bg);
}
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(13,148,136,0.1);
}
.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    font-family: var(--font-body);
    transition: background var(--transition);
}
.faq-item.open .faq-q { background: var(--primary-light); }
.faq-toggle {
    width: 30px; height: 30px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}
.faq-item.open .faq-toggle {
    background: var(--primary);
    color: var(--white);
    transform: rotate(45deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}
.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 24px 22px;
}
.faq-a p {
    font-size: 0.93rem;
    color: var(--text-mid);
    line-height: 1.75;
}

/* ── CONTACT CTA ── */
.contact-cta {
    padding: 110px 0;
    background: var(--primary-deeper);
    position: relative;
    overflow: hidden;
}
.contact-cta::before {
    content: '';
    position: absolute;
    top: 20%; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(13,148,136,0.2) 0%, transparent 70%);
    pointer-events: none;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.contact-info .section-tag { margin-bottom: 14px; }
.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}
.contact-info > p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 36px;
}
.contact-perks {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cp-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    transition: background var(--transition);
}
.cp-item:hover { background: rgba(255,255,255,0.1); }
.cp-ico {
    font-size: 1.3rem;
    background: rgba(13,148,136,0.3);
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cp-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}
.cp-item span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}
/* Contact Form */
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--text-dark);
    box-shadow: var(--shadow-xl);
    border-top: 4px solid var(--primary);
}
.contact-form-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.contact-form-card > p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 28px;
}
.contact-form-card form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.form-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.field label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.field input,
.field select,
.field textarea {
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.93rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--off-white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(13,148,136,0.12);
}
.field textarea { resize: vertical; }
.field-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.84rem;
    color: var(--text-mid);
}
.field-check input[type="checkbox"] {
    width: 17px; height: 17px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary);
}
.field-check a { color: var(--primary); text-decoration: underline; }

/* ── FOOTER ── */
.site-footer {
    background: #0C1F1E;
    color: rgba(255,255,255,0.65);
    padding: 64px 0 32px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-brand p {
    font-size: 0.87rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    margin-top: 16px;
}
.footer-logo-block .logo-mark {
    background: var(--primary);
}
.footer-logo-block .logo-name { color: var(--white); }
.footer-links-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.footer-links-col ul { list-style: none; }
.footer-links-col ul li { margin-bottom: 10px; }
.footer-links-col ul li a {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}
.footer-links-col ul li a:hover { color: var(--primary); }
.footer-links-col address p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
    line-height: 1.55;
}
.footer-disclaimer-bar {
    background: rgba(13,148,136,0.1);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 18px 22px;
    margin-bottom: 24px;
}
.footer-disclaimer-bar p {
    font-size: 0.81rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin: 0;
}
.footer-disclaimer-bar p strong { color: rgba(255,255,255,0.8); }
.footer-refs { margin-bottom: 24px; }
.footer-refs h5 {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}
.footer-refs ol { padding-left: 18px; }
.footer-refs li { margin-bottom: 5px; }
.footer-refs a {
    font-size: 0.79rem;
    color: rgba(255,255,255,0.35);
    transition: color var(--transition);
}
.footer-refs a:hover { color: var(--primary); }
.footer-bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 24px;
    text-align: center;
}
.footer-bottom-bar p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
}

/* ── POLICY PAGES ── */
.policy-hero {
    padding: 160px 0 64px;
    background: linear-gradient(160deg, var(--primary-deeper) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}
.policy-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 14px;
}
.policy-hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    max-width: 580px;
    margin: 0 auto 10px;
    line-height: 1.7;
}
.policy-meta {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}
.policy-body {
    padding: 60px 0;
    background: var(--primary-bg);
}
.policy-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 36px;
    align-items: start;
}
.policy-sidebar {
    position: sticky;
    top: 90px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--primary);
}
.policy-sidebar h3 {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}
.policy-sidebar ul { list-style: none; }
.policy-sidebar li { margin-bottom: 4px; }
.policy-sidebar a {
    font-size: 0.84rem;
    color: var(--text-light);
    display: block;
    padding: 5px 0 5px 12px;
    transition: color var(--transition), border-color var(--transition);
    border-left: 2px solid transparent;
}
.policy-sidebar a:hover {
    color: var(--primary);
    border-left-color: var(--primary);
}
.policy-content {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
}
.policy-sec {
    padding: 32px 40px;
    border-bottom: 1px solid var(--border);
}
.policy-sec:last-child { border-bottom: none; }
.policy-sec h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.policy-sec h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 20px 0 10px;
}
.policy-sec p {
    font-size: 0.93rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 12px;
}
.policy-sec ul, .policy-sec ol {
    padding-left: 20px;
    margin: 10px 0;
}
.policy-sec li {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 6px;
}
.policy-highlight {
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin: 16px 0;
}
.policy-highlight p { color: var(--primary-deeper); margin: 0; font-size: 0.92rem; }
.policy-warning {
    background: var(--accent-light);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin: 16px 0;
}
.policy-warning p { color: #7a4500; margin: 0; font-size: 0.92rem; }
.policy-info-box {
    background: var(--off-white);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin: 16px 0;
    border: 1px solid var(--border);
}

/* ── NOTIFICATIONS ── */
.notification {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 9999;
    max-width: 380px;
    border-radius: var(--radius-md);
    padding: 18px 22px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: slideIn 0.3s ease;
}
.notification.success { background: var(--primary-deeper); color: var(--white); border-left: 4px solid var(--primary); }
.notification.error { background: #c53030; color: var(--white); border-left: 4px solid #feb2b2; }
.notification-msg { font-size: 0.9rem; line-height: 1.55; }
.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0.6;
    margin-left: auto;
    flex-shrink: 0;
    line-height: 1;
}
@keyframes slideIn {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(120%); opacity: 0; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-right { display: none; }
    .hero { padding-top: 140px; }
    .science-layout { grid-template-columns: 1fr; gap: 40px; }
    .ing-showcase { grid-template-columns: 1fr; }
    .ing-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-slider { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
    .policy-layout { grid-template-columns: 1fr; }
    .policy-sidebar { position: static; }
}
@media (max-width: 768px) {
    .announce-inner { font-size: 0.7rem; gap: 8px; }
    .site-header { top: 0; }
    .main-nav, .header-cta { display: none; }
    .mobile-toggle { display: flex; }
    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 68px; left: 0; right: 0;
        background: var(--white);
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
        z-index: 999;
        border-bottom: 3px solid var(--primary);
    }
    .main-nav.open a { font-size: 1rem; color: var(--text-dark); }
    .problems-row { grid-template-columns: 1fr 1fr; }
    .bt-item { flex-direction: column; gap: 12px; }
    .bt-number { align-self: flex-start; }
    .form-2col { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .lifestyle-banner { height: 300px; }
}
@media (max-width: 480px) {
    .problems-row { grid-template-columns: 1fr; }
    .ing-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; }
    .hero-stats { flex-direction: column; }
    .stat-box:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); }
    .contact-form-card { padding: 28px 20px; }
    .policy-sec { padding: 24px 20px; }
    .ing-showcase { padding: 24px 20px; }
}