/* ============================================================
   VALGOFIX — Complete Redesign
   Design: Clean Medical Editorial | Warm Neutral Palette
   ============================================================ */

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

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

:root {
  --teal:       #0d9488;
  --teal-dark:  #0f766e;
  --teal-light: #ccfbf1;
  --teal-bg:    #f0fdfa;
  --amber:      #f59e0b;
  --amber-light:#fef3c7;
  --red-soft:   #ef4444;
  --slate-900:  #0f172a;
  --slate-800:  #1e293b;
  --slate-700:  #334155;
  --slate-600:  #475569;
  --slate-400:  #94a3b8;
  --slate-200:  #e2e8f0;
  --slate-100:  #f1f5f9;
  --slate-50:   #f8fafc;
  --white:      #ffffff;
  --font-serif: 'Lora', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Utility ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section--alt { background: var(--slate-50); }
.section--teal { background: var(--teal-bg); }

.section__label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--slate-600);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.text-center { text-align: center; }
.text-center .section__subtitle { margin-left: auto; margin-right: auto; }

/* ---- AD Badge ---- */
.ad-badge {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: var(--slate-900);
  color: var(--slate-400);
  text-align: center;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  pointer-events: none;
}

/* ---- Cookie Banner ---- */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--slate-900);
  color: var(--slate-200);
  padding: 20px 24px;
  display: none;
  animation: slideUp .4s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.cookie-bar__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-bar__text {
  flex: 1;
  font-size: .9rem;
  line-height: 1.6;
  min-width: 260px;
}

.cookie-bar__text a { color: #5eead4; }

.cookie-bar__btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.btn-cookie-accept:hover { background: var(--teal-dark); }

.btn-cookie-decline {
  background: transparent;
  color: var(--slate-400);
  border: 1px solid var(--slate-600);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s;
}
.btn-cookie-decline:hover { border-color: var(--slate-400); color: var(--white); }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 28px; /* below ad-badge */
  z-index: 900;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--slate-200);
  padding: 0 24px;
}

.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-dark);
  text-decoration: none;
  letter-spacing: -.02em;
}

.site-logo span {
  color: var(--slate-400);
  font-weight: 400;
  font-size: 1rem;
  margin-left: 6px;
  font-family: var(--font-sans);
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--slate-700);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: all .2s;
  text-decoration: none;
}

.nav-links a:hover {
  background: var(--teal-bg);
  color: var(--teal-dark);
}

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 100%);
  padding: 80px 0 64px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(13,148,136,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid var(--teal-light);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.hero__eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero__title em {
  font-style: italic;
  color: var(--teal-dark);
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero__checks {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--slate-700);
}

.hero__checks li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(13,148,136,.35);
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,148,136,.45);
  text-decoration: none;
  color: var(--white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--teal-dark);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: 2px solid var(--teal);
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--teal-bg);
  text-decoration: none;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: .82rem;
  color: var(--slate-500, #64748b);
}

.hero__trust-stars { color: var(--amber); letter-spacing: 2px; }

.hero__image-wrap {
  position: relative;
}

.hero__image-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 200px; height: 200px;
  background: var(--teal-light);
  border-radius: 50%;
  z-index: 0;
}

.hero__img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  top: 20px; left: -20px;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}

.hero__badge-icon { font-size: 1.6rem; }

.hero__badge-text strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--slate-900);
}

.hero__badge-text span {
  font-size: .8rem;
  color: var(--slate-500, #64748b);
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--slate-900);
  padding: 28px 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.stat__number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat__label {
  font-size: .8rem;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ---- Problem Cards ---- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: box-shadow .25s, transform .25s;
}

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

.problem-card__icon {
  width: 52px; height: 52px;
  background: var(--amber-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.problem-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
}

.problem-card__text {
  font-size: .93rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ---- Product Section ---- */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.product-img-frame {
  position: relative;
}

.product-img-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px dashed var(--teal-light);
  border-radius: calc(var(--radius-lg) + 12px);
  pointer-events: none;
}

.product-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.product-price-box {
  background: var(--teal-bg);
  border: 2px solid var(--teal-light);
  border-radius: var(--radius-md);
  padding: 28px;
  margin: 28px 0;
  text-align: center;
}

.product-price-box__old {
  font-size: .9rem;
  color: var(--slate-400);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.product-price-box__current {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1;
}

.product-price-box__current sup {
  font-size: 1.4rem;
  vertical-align: super;
}

.product-price-box__note {
  font-size: .85rem;
  color: var(--slate-600);
  margin-top: 8px;
}

.product-price-box__shipping {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--teal-dark);
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
  margin-top: 12px;
  border: 1px solid var(--teal-light);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--slate-700);
  line-height: 1.6;
}

.feature-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  margin-top: 2px;
}

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

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--slate-200);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow .25s;
}

.benefit-card:hover { box-shadow: var(--shadow-md); }

.benefit-card__icon {
  width: 48px; height: 48px;
  background: var(--teal-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.benefit-card__title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--slate-900);
  margin-bottom: 6px;
}

.benefit-card__text {
  font-size: .88rem;
  color: var(--slate-600);
  line-height: 1.65;
}

.benefit-card__disclaimer {
  font-size: .78rem;
  color: var(--slate-400);
  margin-top: 8px;
  font-style: italic;
}

/* ---- Steps ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal-light) 0, var(--teal-light) 8px, transparent 8px, transparent 16px);
}

.step-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  position: relative;
}

.step-card__num {
  width: 56px; height: 56px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--teal-bg);
}

.step-card__title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.step-card__text {
  font-size: .87rem;
  color: var(--slate-600);
  line-height: 1.65;
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  transition: box-shadow .25s;
}

.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 20px;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--teal-light);
  line-height: 1;
}

.testimonial-card__stars {
  color: var(--amber);
  font-size: .9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-card__text {
  font-size: .93rem;
  color: var(--slate-700);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, #0369a1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--slate-900);
}

.testimonial-card__location {
  font-size: .8rem;
  color: var(--slate-400);
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .2s;
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-item.is-open { border-color: var(--teal-light); }

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-trigger__q {
  font-weight: 600;
  font-size: .97rem;
  color: var(--slate-800);
  line-height: 1.5;
}

.faq-trigger__icon {
  width: 28px; height: 28px;
  background: var(--teal-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal-dark);
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform .25s, background .2s;
}

.faq-item.is-open .faq-trigger__icon {
  transform: rotate(45deg);
  background: var(--teal);
  color: var(--white);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-item.is-open .faq-body { max-height: 400px; }

.faq-body__inner {
  padding: 0 24px 20px;
  font-size: .93rem;
  color: var(--slate-600);
  line-height: 1.75;
}

/* ---- Order Form ---- */
.order-section {
  background: linear-gradient(135deg, #0f766e 0%, #0369a1 100%);
  padding: 80px 0;
}

.order-section .section__label {
  background: rgba(255,255,255,.15);
  color: var(--white);
}

.order-section .section__title { color: var(--white); }
.order-section .section__subtitle { color: rgba(255,255,255,.8); }

.order-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}

.order-card__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 6px;
}

.order-card__sub {
  font-size: .9rem;
  color: var(--slate-500, #64748b);
  margin-bottom: 28px;
}

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

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--slate-800);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,148,136,.12);
}

.form-field textarea { resize: vertical; min-height: 90px; }

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394a3b8' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.btn-order {
  width: 100%;
  padding: 16px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 4px 14px rgba(13,148,136,.35);
  margin-top: 8px;
}

.btn-order:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,148,136,.45);
}

.order-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.order-trust__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--slate-500, #64748b);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand__logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand__desc {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--slate-400);
  max-width: 320px;
}

.footer-col__title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: .88rem;
  color: var(--slate-400);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover { color: var(--white); }

.footer-contact {
  font-size: .88rem;
  line-height: 1.9;
  font-style: normal;
}

.footer-contact a { color: var(--slate-400); }
.footer-contact a:hover { color: var(--white); }

/* ---- Footer Disclosures ---- */
.footer-disclosures {
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 32px 0;
  margin-top: 0;
}

.disclosure-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 16px;
}

.disclosure-text {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  line-height: 1.8;
  margin-bottom: 10px;
}

.disclosure-text strong { color: rgba(255,255,255,.5); }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom__copy {
  font-size: .82rem;
  color: rgba(255,255,255,.3);
}

.footer-bottom__links {
  display: flex;
  gap: 20px;
}

.footer-bottom__links a {
  font-size: .82rem;
  color: rgba(255,255,255,.3);
  text-decoration: none;
}

.footer-bottom__links a:hover { color: rgba(255,255,255,.6); }

/* ---- Page-specific (sub-pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--teal-bg) 0%, #e0f2fe 100%);
  padding: 60px 0 48px;
  border-bottom: 1px solid var(--slate-200);
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 12px;
}

.page-hero__sub {
  font-size: 1rem;
  color: var(--slate-600);
  max-width: 600px;
}

.page-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--slate-500, #64748b);
  background: var(--slate-100);
  padding: 6px 14px;
  border-radius: 99px;
  margin: 24px 0 32px;
}

.prose {
  max-width: 800px;
}

.prose h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--slate-900);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--teal-light);
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--slate-800);
  margin: 24px 0 8px;
}

.prose p {
  font-size: .95rem;
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 14px;
}

.prose ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.prose ul li {
  font-size: .95rem;
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 6px;
}

.prose a { color: var(--teal); font-weight: 500; }

.info-callout {
  background: var(--teal-bg);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 20px 0;
}

.info-callout p {
  margin: 0;
  font-size: .9rem;
  color: var(--teal-dark);
  font-weight: 500;
}

.warning-callout {
  background: var(--amber-light);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 20px 0;
}

.warning-callout p {
  margin: 0;
  font-size: .9rem;
  color: #92400e;
  font-weight: 500;
}

/* ---- Contact Page ---- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  transition: box-shadow .25s;
}

.contact-card:hover { box-shadow: var(--shadow-md); }

.contact-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-card__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.contact-card__value {
  font-size: .95rem;
  font-weight: 600;
  color: var(--slate-800);
}

.contact-card__value a { color: var(--slate-800); }
.contact-card__value a:hover { color: var(--teal); text-decoration: none; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero__grid,
  .product-layout { grid-template-columns: 1fr; }

  .hero__image-wrap { order: -1; }
  .hero__badge { display: none; }

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

  .problem-grid { grid-template-columns: 1fr 1fr; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .benefits-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .contact-cards { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .order-card { padding: 32px 24px; }
}

@media (max-width: 600px) {
  .problem-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero { padding: 48px 0 40px; }
  .section { padding: 52px 0; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
}