/* ============================================================
   VisionVitamin — Poland Market — Complete Redesign
   Design: Modern Medical Wellness — Blue & White Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:           #0A1628;
  --navy-mid:       #132744;
  --navy-light:     #1E3A5F;
  --blue:           #2563EB;
  --blue-light:     #3B82F6;
  --blue-glow:      #60A5FA;
  --blue-pale:      #DBEAFE;
  --blue-wash:      #EFF6FF;
  --teal:           #0D9488;
  --teal-light:     #14B8A6;
  --gold:           #D97706;
  --gold-light:     #F59E0B;
  --gold-pale:      #FEF3C7;
  --ink:            #0F172A;
  --ink-soft:       #1E293B;
  --white:          #FFFFFF;
  --off-white:      #F8FAFC;
  --cream:          #FAFBFD;
  --grey-50:        #F8FAFC;
  --grey-100:       #F1F5F9;
  --grey-200:       #E2E8F0;
  --grey-300:       #CBD5E1;
  --grey-400:       #94A3B8;
  --grey-500:       #64748B;
  --grey-600:       #475569;
  --grey-700:       #334155;
  --shadow-sm:      0 1px 3px rgba(15,23,42,.08);
  --shadow-md:      0 4px 20px rgba(15,23,42,.1);
  --shadow-lg:      0 12px 40px rgba(15,23,42,.15);
  --shadow-xl:      0 24px 60px rgba(15,23,42,.2);
  --shadow-blue:    0 8px 32px rgba(37,99,235,.25);
  --max-w:          1180px;
  --font-head:      'Inter', sans-serif;
  --font-accent:    'Playfair Display', serif;
  --font-body:      'Inter', sans-serif;
  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --radius-pill:    100px;
  --transition:     all .3s cubic-bezier(.4,0,.2,1);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--grey-600);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue-light); }

/* ── Utility ──────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.text-center { text-align: center; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); letter-spacing: -.02em; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1rem; color: var(--grey-600); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.1rem;
  color: var(--grey-500);
  line-height: 1.8;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
  letter-spacing: .01em;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
  color: var(--white);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--grey-200);
}
.btn-ghost:hover {
  background: var(--blue-wash);
  border-color: var(--blue);
}

/* ── HEADER / NAV ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--grey-100);
  box-shadow: 0 1px 12px rgba(15,23,42,.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.logo-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.25) 0%, transparent 60%);
}
.logo-icon svg { width: 20px; height: 20px; fill: white; position: relative; z-index: 1; }
.logo-text {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.03em;
}
.logo-text span { color: var(--blue); }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 500;
  color: var(--grey-600);
  text-decoration: none;
  transition: color .2s;
  letter-spacing: .01em;
}
.main-nav a:hover { color: var(--blue); }
.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--grey-100);
  padding: 16px 24px 24px;
}
.mobile-nav a {
  display: block;
  padding: 13px 0;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  color: var(--grey-600);
  border-bottom: 1px solid var(--grey-100);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: block; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: stretch;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(37,99,235,.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(96,165,250,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 90%, rgba(13,148,136,.1) 0%, transparent 40%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,.02) 0px,
    rgba(255,255,255,.02) 1px,
    transparent 1px,
    transparent 80px
  ),
  repeating-linear-gradient(
    90deg,
    rgba(255,255,255,.02) 0px,
    rgba(255,255,255,.02) 1px,
    transparent 1px,
    transparent 80px
  );
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-content {
  padding: 100px 60px 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-content .container { padding: 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(37,99,235,.25);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  color: var(--blue-glow);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--blue-glow);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--blue-glow);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -.03em;
}
.hero h1 em {
  font-style: normal;
  font-family: var(--font-accent);
  font-weight: 600;
  background: linear-gradient(135deg, #60A5FA, #34D399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .lead {
  color: rgba(255,255,255,.65);
  margin-bottom: 40px;
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: fit-content;
  backdrop-filter: blur(10px);
}
.stat-item {
  padding: 22px 30px;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .7rem;
  color: rgba(255,255,255,.45);
  margin-top: 6px;
  display: block;
  white-space: nowrap;
  letter-spacing: .02em;
}

/* Hero visual panel */
.hero-visual {
  position: relative;
  overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 35%);
  z-index: 1;
  pointer-events: none;
}
.hero-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 680px;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(.55) saturate(1.2);
}
.hero-card-float {
  position: absolute;
  bottom: 40px;
  left: 28px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.8);
}
.hero-card-float .icon-wrap {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-card-float .icon-wrap svg { width: 20px; height: 20px; stroke: white; fill: none; }
.hero-card-float .card-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: .86rem;
  color: var(--ink);
  font-weight: 700;
}
.hero-card-float .card-text span { font-size: .75rem; color: var(--grey-400); }

/* ── TRUST BAND ──────────────────────────────────────────── */
.trust-band {
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
  padding: 0;
}
.trust-band-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-band-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 36px;
  border-right: 1px solid var(--grey-100);
  transition: background .2s;
}
.trust-band-item:last-child { border-right: none; }
.trust-band-item:hover { background: var(--grey-50); }
.trust-band-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-wash);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-band-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; }
.trust-band-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 700;
  color: var(--ink);
}
.trust-band-text span { font-size: .78rem; color: var(--grey-400); }

/* ── INTRO BANNER ─────────────────────────────────────────── */
.intro-banner {
  background: var(--blue-wash);
  border-left: 4px solid var(--blue);
  padding: 22px 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 48px 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.intro-banner-icon {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.intro-banner-icon svg { width: 18px; height: 18px; stroke: white; fill: none; }
.intro-banner p {
  color: var(--navy-mid);
  font-size: .95rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.7;
}

/* ── SECTION HEADER ──────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-wash);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.section-header { margin-bottom: 60px; }
.section-header h2 { margin-bottom: 14px; }
.section-header .lead { max-width: 600px; }

/* ── INGREDIENTS ─────────────────────────────────────────── */
.ingredient-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  transition: var(--transition);
}
.ingredient-feature:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.ingredient-feature.reverse { direction: rtl; }
.ingredient-feature.reverse > * { direction: ltr; }

.ingredient-feature-img {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.ingredient-feature-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(10,22,40,.3) 0%, transparent 60%);
}
.ingredient-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.ingredient-feature:hover .ingredient-feature-img img {
  transform: scale(1.05);
}

.ingredient-num-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ingredient-feature-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.ingredient-feature-content .eyebrow { margin-bottom: 10px; }
.ingredient-feature-content h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  margin-bottom: 14px;
}
.ingredient-feature-content p { margin-bottom: 16px; }

.benefit-list { list-style: none; margin: 20px 0; }
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: .88rem;
  color: var(--grey-600);
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-list .check {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.benefit-list .check svg { width: 11px; height: 11px; stroke: white; fill: none; stroke-width: 3; }

/* ── PRODUCT SECTION ──────────────────────────────────────── */
.product-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.product-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 85% 50%, rgba(37,99,235,.15) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(13,148,136,.1) 0%, transparent 40%);
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.product-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.product-img-frame {
  position: relative;
  display: inline-block;
}
.product-img-frame::before {
  content: '';
  position: absolute;
  inset: -14px;
  border: 2px solid rgba(37,99,235,.2);
  border-radius: var(--radius-xl);
  z-index: 0;
}
.product-img-frame::after {
  content: '';
  position: absolute;
  inset: -28px;
  border: 1px solid rgba(37,99,235,.08);
  border-radius: 32px;
  z-index: 0;
}
.product-img-wrap img {
  max-width: 320px;
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  position: relative;
  z-index: 1;
}
.product-badge-wrap {
  position: absolute;
  top: -14px;
  right: -14px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white);
  border-radius: 50%;
  width: 88px;
  height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: .62rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: var(--shadow-blue);
  z-index: 2;
}

.product-content .eyebrow { color: var(--blue-glow); }
.product-content .eyebrow::before { background: var(--blue-glow); }
.product-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 18px;
}
.product-content .lead {
  color: rgba(255,255,255,.65);
  margin-bottom: 28px;
}
.product-content > p { color: rgba(255,255,255,.55); }

.ingredient-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 28px;
}
.ingredient-tag {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.ingredient-tag:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.3);
}
.ingredient-tag a { color: inherit; }

.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0 32px;
}
.product-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  transition: background .2s;
}
.product-feature-item:hover { background: rgba(255,255,255,.08); }
.product-feature-item .dot {
  width: 6px;
  height: 6px;
  background: var(--blue-glow);
  border-radius: 50%;
  flex-shrink: 0;
}

.product-note {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  margin: 0 0 24px;
  line-height: 1.6;
}

/* ── CONTACT / FORM SECTION ───────────────────────────────── */
.contact-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--blue-light));
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info .lead { margin-bottom: 36px; }

.contact-points { list-style: none; }
.contact-points li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--grey-200);
  font-size: .9rem;
  color: var(--grey-600);
}
.contact-points li:last-child { border-bottom: none; }
.contact-points .cp-icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-points .cp-icon svg { width: 18px; height: 18px; stroke: white; fill: none; }
.contact-points .cp-label {
  display: block;
  font-family: var(--font-head);
  font-size: .76rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-100);
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}
.contact-form-wrap h3 {
  font-family: var(--font-head);
  margin-bottom: 6px;
  font-size: 1.35rem;
  color: var(--ink);
}
.contact-form-wrap .form-subtitle {
  color: var(--grey-400);
  font-size: .86rem;
  margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  color: var(--grey-600);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--ink-soft);
  background: var(--grey-50);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(37,99,235,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

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

.form-note {
  font-size: .74rem;
  color: var(--grey-400);
  margin-top: 14px;
  line-height: 1.6;
}
.form-success {
  display: none;
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  border: 1.5px solid var(--teal);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  color: #065F46;
  font-family: var(--font-head);
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
}

/* ── DISCLAIMER STRIP ─────────────────────────────────────── */
.disclaimer-strip {
  background: var(--gold-pale);
  border-top: 3px solid var(--gold);
  padding: 20px 0;
}
.disclaimer-strip p {
  font-size: .8rem;
  color: var(--grey-600);
  margin: 0;
  line-height: 1.65;
}
.disclaimer-strip strong { color: var(--ink-soft); }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--blue-light));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand .logo-text { color: var(--white); font-size: 1.15rem; }
.footer-brand .logo-text span { color: var(--blue-glow); }
.footer-brand p {
  font-size: .84rem;
  color: rgba(255,255,255,.4);
  margin-top: 16px;
  line-height: 1.8;
}
.footer-col h4 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .84rem;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul li a:hover { color: rgba(255,255,255,.85); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.25); margin: 0; }

/* ── INNER PAGE HERO ──────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(37,99,235,.2) 0%, transparent 60%);
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 800;
  position: relative;
  z-index: 1;
  letter-spacing: -.02em;
}
.page-hero p {
  color: rgba(255,255,255,.55);
  margin-top: 12px;
  position: relative;
  z-index: 1;
  font-size: .92rem;
}
.page-hero-bar {
  width: 48px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin: 16px auto 0;
  position: relative;
  z-index: 1;
}

/* ── CONTENT PAGE ─────────────────────────────────────────── */
.content-page { padding: 80px 0; }
.content-page .container { max-width: 820px; }
.content-page h2 {
  margin: 44px 0 14px;
  font-size: 1.45rem;
  color: var(--navy-mid);
  display: flex;
  align-items: center;
  gap: 12px;
}
.content-page h2::before {
  content: '';
  display: block;
  width: 4px;
  height: 1.2em;
  background: linear-gradient(to bottom, var(--blue), var(--teal));
  border-radius: 2px;
  flex-shrink: 0;
}
.content-page h2:first-child { margin-top: 0; }
.content-page h3 { margin: 28px 0 10px; font-size: 1.12rem; color: var(--ink); }
.content-page p { margin-bottom: 18px; font-size: .94rem; line-height: 1.85; }
.content-page ul { margin: 12px 0 22px 0; list-style: none; }
.content-page ul li {
  margin-bottom: 10px;
  font-size: .94rem;
  color: var(--grey-600);
  line-height: 1.75;
  padding-left: 22px;
  position: relative;
}
.content-page ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: .9em;
}
.content-page strong { color: var(--ink-soft); }
.content-page a { color: var(--blue); }
.content-page a:hover { color: var(--blue-light); }

.legal-box {
  background: var(--blue-wash);
  border: 1px solid var(--blue-pale);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin: 36px 0;
}
.legal-box h3 {
  margin-top: 0;
  color: var(--navy);
  font-family: var(--font-head);
  margin-bottom: 14px;
}
.legal-box p { font-size: .9rem; }
.legal-box a { color: var(--blue); }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-100);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}
.contact-info-card h3 {
  font-family: var(--font-head);
  margin-bottom: 22px;
  color: var(--ink);
  margin-top: 8px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--grey-100);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail .cd-icon {
  width: 42px;
  height: 42px;
  background: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail .cd-icon svg { width: 18px; height: 18px; stroke: white; fill: none; }
.contact-detail-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: .78rem;
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}
.contact-detail-text span { font-size: .88rem; color: var(--grey-600); }
.contact-detail-text a { color: var(--blue); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: 80px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-band-inner { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .ingredient-feature { grid-template-columns: 1fr; }
  .ingredient-feature.reverse { direction: ltr; }
  .ingredient-feature-img { min-height: 240px; }
  .product-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .product-features { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .trust-band-inner { grid-template-columns: 1fr; }
  .trust-band-item { border-right: none; border-bottom: 1px solid var(--grey-100); }
  .trust-band-item:last-child { border-bottom: none; }
  .hero-stats { flex-direction: column; gap: 0; width: 100%; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); text-align: left; }
  .stat-item:last-child { border-bottom: none; }
}

@media (max-width: 540px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 20px; }
  .hero-content { padding: 64px 0; }
  .ingredient-feature-content { padding: 32px; }
}