/* ============================================================
   ProstaBridge — design system
   Clinical / editorial: ink navy, label-blue accent, warm paper
   Fonts: Fraunces (headings) | Plus Jakarta Sans (UI, body)
   ============================================================ */

:root {
  --ink:          #05080f;
  --navy-deep:    #0a1020;
  --navy:         #0f172a;
  --navy-mid:     #1e3a5f;
  --blue-accent:  #2563eb;
  --blue-bright:  #38bdf8;
  --blue-soft:    #e0f2fe;
  --surface:      #f7f5f2;
  --surface-2:    #e2e8f0;
  --white:        #ffffff;
  --text-dark:    #0f172a;
  --text-mid:     #334155;
  --text-muted:   #64748b;
  --border:       #cbd5e1;
  --shadow-sm:    0 2px 12px rgba(15, 23, 42, 0.06);
  --shadow-md:    0 8px 28px rgba(15, 23, 42, 0.1);
  --shadow-lg:    0 20px 50px rgba(15, 23, 42, 0.14);
  --radius-sm:    10px;
  --radius-md:    18px;
  --radius-lg:    26px;
  --radius-xl:    9999px;
  --transition:   0.28s ease;
  --max-width:    1160px;
  --font-head:    "Fraunces", Georgia, serif;
  --font-body:    "Plus Jakarta Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--text-dark);
  font-weight: 600;
}
h1 { font-size: clamp(2rem, 5vw, 3.35rem); font-weight: 650; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.55rem, 4vw, 2.45rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.85rem); }
h4 { font-size: clamp(1.05rem, 2.5vw, 1.35rem); }
h5 { font-size: 1.08rem; }
h6 { font-size: 0.92rem; }
p  { font-size: 1rem; color: var(--text-mid); }

/* Wordmark logo */
.logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-wordmark {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.logo-wordmark .logo-accent { color: var(--blue-accent); }
.footer-logo-wrap .logo-wordmark { color: var(--white); }
.footer-logo-wrap .logo-accent { color: var(--blue-bright); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 88px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--blue-accent);
  color: var(--white);
  border-color: var(--blue-accent);
}
.btn-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--navy-mid);
  color: var(--white);
  border-color: var(--navy-mid);
}
.btn-green:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 245, 242, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--blue-accent);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links .btn { margin-left: 6px; padding: 10px 22px; font-size: 0.86rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 12px 0;
  border-bottom: 1px solid var(--surface-2);
}
.mobile-nav a:hover { color: var(--navy); }
.mobile-nav .btn { margin-top: 12px; text-align: center; }

.hero {
  background: linear-gradient(145deg, var(--ink) 0%, var(--navy) 45%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 85% 25%, rgba(37, 99, 235, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 45% at 10% 85%, rgba(56, 189, 248, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: var(--blue-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 22px;
}
.hero-badge svg { width: 14px; height: 14px; fill: var(--blue-bright); }
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--blue-bright); }
.hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.06rem;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-product-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,0.06) 0%, transparent 55%),
    linear-gradient(160deg, rgba(37, 99, 235, 0.15), transparent);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.hero-product-frame img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.45));
}

.pillars { background: var(--surface); }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-accent);
  background: var(--blue-soft);
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  margin-bottom: 14px;
}
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 620px; margin: 0 auto; font-size: 1.03rem; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.35);
}
.card-num {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--navy), var(--blue-accent));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--white);
  margin-bottom: 18px;
}
.card h5 { margin-bottom: 10px; font-size: 1.05rem; }
.card p { font-size: 0.93rem; line-height: 1.65; }

.foods { background: var(--white); }
.foods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.food-card {
  text-align: center;
  padding: 26px 18px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: var(--transition);
}
.food-card:hover {
  border-color: var(--blue-accent);
  box-shadow: var(--shadow-md);
}
.food-visual {
  width: 100%;
  height: 140px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-soft) 0%, #f1f5f9 100%);
  border: 1px solid var(--border);
}
.food-visual svg {
  width: 52px;
  height: 52px;
  stroke: var(--navy-mid);
  fill: none;
  stroke-width: 1.5;
}
.food-card h4 { margin-bottom: 10px; font-size: 1.08rem; color: var(--navy-mid); }
.food-card p { font-size: 0.9rem; line-height: 1.65; text-align: left; }

.stats {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 88px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.stats-text h3 { color: var(--white); margin-bottom: 16px; }
.stats-text p { color: rgba(255,255,255,0.78); margin-bottom: 0; font-size: 1rem; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat-item {
  text-align: center;
  padding: 26px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.45rem;
  font-weight: 650;
  color: var(--blue-bright);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  line-height: 1.4;
}

.dual { background: var(--surface); padding: 0; }
.dual-inner { display: grid; grid-template-columns: 1fr 1fr; }
.dual-col { padding: 84px 56px; }
.dual-col:first-child {
  background: var(--navy-mid);
  color: var(--white);
}
.dual-col:first-child h3 { color: var(--white); margin-bottom: 16px; }
.dual-col:first-child p { color: rgba(255,255,255,0.85); }
.dual-col:last-child { background: var(--surface-2); }
.dual-col:last-child h3 { margin-bottom: 16px; }

.product { background: var(--white); }
.product-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.product-content h2 { margin-bottom: 18px; }
.product-content h5 {
  color: var(--navy-mid);
  margin-bottom: 14px;
  font-size: 1.04rem;
  line-height: 1.5;
  font-family: var(--font-body);
  font-weight: 600;
}
.product-content p { margin-bottom: 22px; }
.product-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink);
  border: 1px solid var(--border);
}
.product-img-wrap img {
  width: 100%;
  height: auto;
  min-height: 360px;
  max-height: 460px;
  object-fit: contain;
  margin: 0 auto;
}
.product-pack-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 12px;
  font-style: italic;
}
.product-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-icon {
  width: 26px; height: 26px;
  background: var(--blue-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-icon svg { width: 13px; height: 13px; fill: var(--blue-accent); }

.faq { background: var(--surface); }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}
.faq-header h2 { margin-bottom: 14px; }
.faq-header p { font-size: 0.95rem; }
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.accordion-item.open { border-color: var(--blue-accent); }
.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}
.accordion-btn:hover { color: var(--navy-mid); }
.accordion-icon {
  width: 28px; height: 28px;
  background: var(--surface-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.accordion-icon svg {
  width: 12px; height: 12px;
  stroke: var(--blue-accent);
  fill: none;
  stroke-width: 2.5;
}
.accordion-item.open .accordion-icon { background: var(--blue-accent); }
.accordion-item.open .accordion-icon svg { stroke: var(--white); transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.accordion-body.open { max-height: 600px; }
.accordion-body-inner {
  padding: 0 22px 20px;
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 84px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 50% 100%, rgba(37, 99, 235, 0.2) 0%, transparent 65%);
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p {
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.04rem;
}

.contact-form-section { background: var(--white); }
.form-inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 56px;
  align-items: start;
}
.form-info h3 { margin-bottom: 14px; }
.form-info p { margin-bottom: 26px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--blue-soft);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; fill: var(--blue-accent); }
.contact-detail-text strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.contact-detail-text span { font-size: 0.9rem; color: var(--text-muted); }
.contact-detail-text a { color: var(--blue-accent); }
.contact-detail-text a:hover { text-decoration: underline; }

.form-box {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 38px;
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; }
.form-msg {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}
.form-msg.success { background: var(--blue-soft); color: var(--navy-mid); border: 1px solid var(--border); }
.form-msg.error   { background: rgba(220,38,38,0.08); color: #b91c1c; border: 1px solid rgba(220,38,38,0.25); }

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding-top: 56px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 0.9rem; line-height: 1.75; max-width: 320px; color: rgba(255,255,255,0.82); }
.footer-col h6 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.footer-col ul a:hover { color: var(--white); text-decoration: underline; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 15px; height: 15px; fill: var(--blue-bright); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 0.88rem; color: rgba(255,255,255,0.85); line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,0.85); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  padding: 26px 0 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.68);
  max-width: 860px;
  line-height: 1.65;
}
.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 920px;
}
.footer-copyright {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
}
.footer-refs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  margin-top: 4px;
}
.footer-refs a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.62);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-refs a:hover { color: var(--white); }

.landing-footnotes {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 48px 0 56px;
}
.landing-footnotes .footnotes-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--navy-mid);
  margin-bottom: 20px;
}
.footnotes-list {
  list-style: decimal;
  padding-left: 1.35rem;
  max-width: 900px;
  margin: 0;
}
.footnotes-list > li {
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 14px;
  padding-left: 0.35rem;
}
.footnotes-list > li:last-child { margin-bottom: 0; }
.footnotes-list strong {
  color: var(--text-dark);
  font-weight: 700;
}

.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 88px 0 68px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; font-size: clamp(1.75rem, 4vw, 2.65rem); }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto; }

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 56px;
  align-items: start;
  padding: 80px 0;
}
.info-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
  margin-bottom: 22px;
}
.info-card h4 {
  font-size: 1rem;
  color: var(--navy-mid);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-card h4 svg { width: 18px; height: 18px; fill: var(--blue-accent); }

.legal-body { background: var(--white); padding: 64px 0 88px; }
.legal-container { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.legal-container h2 { margin-bottom: 28px; }
.legal-container h3 {
  font-size: 1.08rem;
  color: var(--navy-mid);
  margin: 26px 0 10px;
  font-weight: 650;
}
.legal-container p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.legal-container ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
}
.legal-container ul li {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 6px;
}
.legal-info-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px;
  margin-top: 28px;
}
.legal-info-box h4 {
  font-size: 0.95rem;
  color: var(--navy-mid);
  margin-bottom: 10px;
  font-family: var(--font-head);
}
.legal-info-box p { margin-bottom: 4px; font-size: 0.88rem; }

.text-center { text-align: center; }
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

.footer-logo-wrap { margin-bottom: 12px; }

@media (max-width: 1024px) {
  .dual-col { padding: 64px 40px; }
}

@media (max-width: 900px) {
  .foods-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .product-inner { grid-template-columns: 1fr; }
  .product-img-wrap { order: -1; }
  .faq-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .form-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero { padding: 72px 0 68px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .dual-inner { grid-template-columns: 1fr; }
  .dual-col { padding: 48px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .form-box { padding: 28px 22px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 560px) {
  .foods-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}
