/* ============================================
   ProstaVital NL – Stylesheet
   Design: Clean Medical / Dutch Market
   ============================================ */

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

:root {
    --primary: #1a6b4a;
    --primary-dark: #124d36;
    --primary-light: #e8f5ef;
    --accent: #f0a500;
    --accent-light: #fff8e6;
    --text-dark: #1a2332;
    --text-mid: #4a5568;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-off: #f7f9fc;
    --bg-dark: #0f1c2e;
    --border: #e2e8f0;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
    --transition: 0.3s ease;
    --font-body: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-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: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === TOPBAR === */
.topbar {
    background: var(--primary-dark);
    color: #fff;
    font-size: 0.8rem;
    padding: 8px 0;
}
.topbar-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.topbar-inner span { opacity: 0.9; }

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.navbar.scrolled {
    top: 0;
    box-shadow: var(--shadow-md);
}
.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary);
    flex-shrink: 0;
}
.logo-icon {
    font-size: 1.5rem;
    color: var(--primary);
}
.logo-text { color: var(--text-dark); }
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto;
}
.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: var(--radius-xl);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* === BADGES === */
.pill-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 5px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.pill-badge.green { background: var(--primary-light); color: var(--primary); }
.pill-badge.white { background: rgba(255,255,255,0.2); color: #fff; }

/* === SECTION HEADER === */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.25;
}
.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}
.section-header.light h2 { color: #fff; }
.section-header.light p { color: rgba(255,255,255,0.8); }

/* === HERO === */
.hero {
    min-height: 100vh;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f0f7f4 0%, #e8f5ef 50%, #f7f9fc 100%);
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}
.shape-1 {
    width: 600px; height: 600px;
    background: var(--primary);
    top: -200px; right: -100px;
}
.shape-2 {
    width: 400px; height: 400px;
    background: var(--accent);
    bottom: -100px; left: -100px;
}
.shape-3 {
    width: 200px; height: 200px;
    background: var(--primary);
    top: 50%; left: 40%;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
}
.hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.18;
    color: var(--text-dark);
    margin-bottom: 22px;
}
.hero-text h1 em {
    font-style: normal;
    color: var(--primary);
}
.hero-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 520px;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-item strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}
.trust-item span {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
}
.trust-divider {
    width: 1px; height: 40px;
    background: var(--border);
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.btn-hero-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 20px rgba(26,107,74,0.3);
}
.btn-hero-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26,107,74,0.4);
}
.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--primary);
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    transition: background var(--transition), color var(--transition);
}
.btn-hero-ghost:hover {
    background: var(--primary);
    color: #fff;
}
.hero-disclaimer {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.5;
}
/* Hero Visual */
.hero-card-wrap { position: relative; }
.hero-img-block {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-img-block img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}
.hero-img-badge {
    position: absolute;
    bottom: 20px; left: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}
.hero-floating-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.hero-floating-card .fc-icon {
    font-size: 1.4rem;
    background: var(--primary-light);
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-floating-card strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
}
.hero-floating-card span {
    font-size: 0.75rem;
    color: var(--text-light);
}
.card-left { bottom: -20px; left: -30px; }
.card-right { top: 20px; right: -30px; }

/* === AWARENESS SECTION === */
.awareness-section {
    padding: 80px 0;
    background: var(--bg-white);
}
.awareness-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}
.awareness-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    color: var(--text-dark);
    margin-bottom: 14px;
}
.awareness-header p {
    font-size: 1rem;
    color: var(--text-light);
}
.awareness-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.awareness-card {
    background: var(--bg-off);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}
.awareness-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.aw-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}
.awareness-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.awareness-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}
.awareness-cta {
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 18px 24px;
    max-width: 860px;
    margin: 0 auto;
}
.awareness-cta p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* === BENEFITS SECTION === */
.benefits-section {
    padding: 100px 0;
    background: var(--bg-off);
}
.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}
.benefit-main-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 520px;
}
.benefit-main-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bmc-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(15,28,46,0.9) 0%, transparent 100%);
    padding: 32px 28px 28px;
    color: #fff;
}
.bmc-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.bmc-overlay p { font-size: 0.9rem; opacity: 0.85; }
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.benefit-item {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}
.benefit-item::before {
    content: attr(data-num);
    position: absolute;
    top: -10px; right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    font-family: var(--font-display);
}
.benefit-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}
.bi-icon {
    font-size: 1.8rem;
    background: var(--primary-light);
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.bi-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.bi-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}
.bi-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.bi-content ul li {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
    padding-left: 16px;
    position: relative;
}
.bi-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* === SCIENCE SECTION === */
.science-section {
    padding: 100px 0;
    background: var(--bg-white);
}
.science-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.science-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.science-img img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}
.science-img-badge {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--primary);
    color: #fff;
    padding: 8px 18px;
    border-radius: var(--radius-xl);
    font-size: 0.82rem;
    font-weight: 600;
}
.science-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.25;
}
.science-content > p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 36px;
}
.science-stats-row {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.ss-item { text-align: center; }
.ss-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}
.ss-item span {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 500;
}
.science-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--accent-light);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 16px;
}
.science-note span { font-size: 1.2rem; flex-shrink: 0; }
.science-note p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.5; }

/* === INGREDIENTS SECTION === */
.ingredients-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f3d28 0%, #1a6b4a 60%, #0f3d28 100%);
    color: #fff;
}
.ing-main-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
}
.ing-main-img {
    border-radius: var(--radius-md);
    overflow: hidden;
}
.ing-main-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.ing-featured-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--text-dark);
    padding: 4px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}
.ing-main-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 14px;
    color: #fff;
}
.ing-main-info p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 20px;
}
.ing-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.ing-tags span {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 5px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 500;
}
.ing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.ing-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: background var(--transition), transform var(--transition);
    backdrop-filter: blur(6px);
}
.ing-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-4px);
}
.ing-card-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.ing-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}
.ing-card p {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.55;
}

/* === TESTIMONIALS === */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-off);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}
.testi-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.testi-card.featured {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.testi-quote {
    font-size: 4rem;
    font-family: var(--font-display);
    line-height: 1;
    color: var(--primary-light);
    margin-bottom: 8px;
}
.testi-card.featured .testi-quote { color: rgba(255,255,255,0.3); }
.testi-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-mid);
    font-style: italic;
    margin-bottom: 24px;
}
.testi-card.featured .testi-text { color: rgba(255,255,255,0.9); }
.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testi-card.featured .testi-avatar {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.testi-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}
.testi-card.featured .testi-author strong { color: #fff; }
.testi-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}
.testi-card.featured .testi-author span { color: rgba(255,255,255,0.7); }
.testi-stars {
    margin-left: auto;
    font-size: 0.9rem;
    color: var(--accent);
}
.testi-disclaimer {
    font-size: 0.78rem;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === FAQ === */
.faq-section {
    padding: 100px 0;
    background: var(--bg-white);
}
.faq-wrap {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--primary); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-arrow {
    font-size: 1.1rem;
    color: var(--primary);
    transition: transform var(--transition);
    flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}
.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* === CTA SECTION === */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f1c2e 0%, #1a2e45 100%);
    color: #fff;
}
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.cta-info h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
    line-height: 1.25;
    color: #fff;
}
.cta-info > p {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 36px;
}
.cta-perks {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.cta-perk {
    display: flex;
    align-items: center;
    gap: 16px;
}
.cp-icon {
    font-size: 1.5rem;
    background: rgba(255,255,255,0.1);
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cta-perk strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}
.cta-perk span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
}
/* CTA Form */
.cta-form-box {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--text-dark);
}
.cta-form-box h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.cta-form-box > p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 28px;
}
.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}
.form-field input,
.form-field select,
.form-field textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-off);
    transition: border-color var(--transition);
    outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--primary);
    background: #fff;
}
.form-field textarea { resize: vertical; }
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-mid);
}
.form-check input[type="checkbox"] {
    width: 16px; height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary);
}
.form-check a { color: var(--primary); text-decoration: underline; }
.btn-submit {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    width: 100%;
    margin-top: 4px;
}
.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* === FOOTER === */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.75);
    padding: 64px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.footer-brand-col p {
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.6);
}
.footer-socials {
    display: flex;
    gap: 10px;
}
.footer-socials a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    transition: background var(--transition), color var(--transition);
}
.footer-socials a:hover {
    background: var(--primary);
    color: #fff;
}
.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: #fff; }
.footer-col address p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
    line-height: 1.5;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
}
.footer-disclaimer {
    background: rgba(240,165,0,0.1);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 24px;
}
.footer-disclaimer p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}
.footer-refs { margin-bottom: 24px; }
.footer-refs h5 {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.footer-refs ol { padding-left: 18px; }
.footer-refs li { margin-bottom: 5px; }
.footer-refs a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    transition: color var(--transition);
}
.footer-refs a:hover { color: rgba(255,255,255,0.8); }
.footer-copy {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* === CONTACT PAGE SPECIFIC === */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f0f7f4 0%, #e8f5ef 100%);
    text-align: center;
}
.page-hero-inner { max-width: 640px; margin: 0 auto; }
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}
.page-hero p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.7;
}
.contact-section {
    padding: 80px 0;
    background: var(--bg-off);
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: start;
}
.contact-methods-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-method-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: box-shadow var(--transition);
}
.contact-method-card:hover { box-shadow: var(--shadow-md); }
.cm-icon {
    font-size: 1.5rem;
    background: var(--primary-light);
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cm-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.cm-info p, .cm-info a {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
}
.cm-info a { color: var(--primary); font-weight: 600; }
.contact-form-box {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.contact-form-box h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.contact-form-box > p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 28px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
/* Working hours */
.hours-section {
    padding: 60px 0;
    background: var(--bg-white);
}
.hours-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.hours-info h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 24px;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table td {
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--text-mid);
}
.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--text-dark);
}
.hours-table tr.closed td { color: var(--text-light); }
.hours-note {
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--text-light);
    font-style: italic;
}
.hours-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.hours-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* === POLICY PAGES === */
.policy-page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #0f3d28 0%, #1a6b4a 100%);
    color: #fff;
    text-align: center;
}
.policy-page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin-bottom: 14px;
}
.policy-page-hero p {
    font-size: 1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 12px;
}
.policy-meta {
    font-size: 0.82rem;
    opacity: 0.65;
}
.policy-body {
    padding: 60px 0;
    background: var(--bg-off);
}
.policy-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
}
.policy-sidebar-nav {
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.policy-sidebar-nav h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}
.policy-sidebar-nav ul { list-style: none; }
.policy-sidebar-nav li { margin-bottom: 6px; }
.policy-sidebar-nav a {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
    padding: 5px 0;
    transition: color var(--transition);
    border-left: 2px solid transparent;
    padding-left: 10px;
}
.policy-sidebar-nav a:hover {
    color: var(--primary);
    border-left-color: var(--primary);
}
.policy-main-content {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
}
.policy-section {
    padding: 36px 40px;
    border-bottom: 1px solid var(--border);
}
.policy-section:last-child { border-bottom: none; }
.policy-section h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.policy-section h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 20px 0 10px;
}
.policy-section p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 12px;
}
.policy-section ul, .policy-section ol {
    padding-left: 20px;
    margin: 10px 0;
}
.policy-section li {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.65;
    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-dark); margin: 0; }
.policy-warning {
    background: #fff8e6;
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin: 16px 0;
}
.policy-warning p { color: #7a5c00; margin: 0; }
.policy-info-box {
    background: var(--bg-off);
    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: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: slideInRight 0.3s ease;
}
.notification.success { background: var(--primary); color: #fff; }
.notification.error { background: #e53e3e; color: #fff; }
.notification-msg { font-size: 0.92rem; line-height: 1.5; }
.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    margin-left: auto;
    flex-shrink: 0;
}
@keyframes slideInRight {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(120%); opacity: 0; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .benefits-layout { grid-template-columns: 1fr; }
    .benefit-main-card { height: 320px; }
    .science-grid { grid-template-columns: 1fr; gap: 40px; }
    .ing-main-block { grid-template-columns: 1fr; }
    .ing-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .policy-layout { grid-template-columns: 1fr; }
    .policy-sidebar-nav { position: static; }
    .contact-layout { grid-template-columns: 1fr; }
    .hours-grid-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .topbar-inner { font-size: 0.72rem; gap: 8px; }
    .navbar { top: 0; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 68px; left: 0; right: 0;
        background: #fff;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-md);
        z-index: 999;
    }
    .hero { padding: 100px 0 60px; }
    .awareness-grid { grid-template-columns: 1fr 1fr; }
    .ing-grid { grid-template-columns: 1fr; }
    .form-row-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .science-stats-row { gap: 20px; }
    .hero-trust { gap: 16px; }
}
@media (max-width: 480px) {
    .awareness-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .btn-hero-primary, .btn-hero-ghost { width: 100%; text-align: center; justify-content: center; }
    .cta-form-box { padding: 24px; }
    .policy-section { padding: 24px 20px; }
}