:root {
  --color-primary: #2D6A4F;
  --color-primary-light: #40916C;
  --color-primary-dark: #1B4332;
  --color-secondary: #D4A373;
  --color-secondary-light: #E9C99E;
  --color-accent: #95D5B2;
  --color-accent-light: #D8F3DC;
  --color-warm: #C17952;
  --color-warm-light: #F5EDE8;
  --color-bg: #FAFDF7;
  --color-bg-alt: #F0F7F2;
  --color-white: #FFFFFF;
  --color-dark: #1B1F23;
  --color-text: #2D3436;
  --color-text-light: #636E72;
  --color-border: #E0E0E0;
  --color-overlay: rgba(27, 67, 50, 0.85);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --header-height: 80px;
  --max-width: 1200px;
  --section-pad: 120px;
  --section-pad-mobile: 64px;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(45,106,79,0.05);
  --shadow: 0 4px 24px rgba(45,106,79,0.07);
  --shadow-lg: 0 12px 48px rgba(45,106,79,0.1);
  --shadow-hover: 0 8px 40px rgba(45,106,79,0.12);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.3s var(--ease-out);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

::selection { background: var(--color-accent); color: var(--color-primary-dark); }

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

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

/* ── UTILITIES ── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.card--centered { text-align: center; }
.card--centered .card__icon { margin: 0 auto 20px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.25;
  text-rendering: optimizeLegibility;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 24px; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); margin-bottom: 20px; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
p { margin-bottom: 16px; }
.lead { font-size: 1.15rem; color: var(--color-text-light); line-height: 1.8; }
.section-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 12px;
  display: block;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  text-decoration: none;
  line-height: 1;
}
.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}
.btn:active {
  transform: translateY(0) !important;
  box-shadow: var(--shadow-sm) !important;
}
.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.btn--white {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}
.btn--white:hover {
  background: transparent;
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.btn--ghost-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost-white:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.btn--sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── HEADER / NAV ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.4s var(--ease-out), background 0.4s var(--ease-out);
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(45,106,79,0.06);
  background: rgba(255,255,255,0.99);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header__logo img { height: 60px; width: auto; }
.header__logo { display: flex; align-items: center; font-family: var(--font-heading); font-size: 1.3rem; color: var(--color-primary-dark); font-weight: 700; gap: 10px; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav__link:hover, .nav__link--active { color: var(--color-primary); }
.nav__link:hover::after, .nav__link--active::after { transform: scaleX(1); }

.nav__cta { margin-left: 8px; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  width: 24px; height: 2px;
  background: var(--color-dark);
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
  border-radius: 2px;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-bg) 60%, var(--color-white) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(149,213,178,0.3), transparent 70%);
  border-radius: 50%;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.hero__content { position: relative; z-index: 1; }
.hero__content h1 span { color: var(--color-primary); }
.hero__subtitle {
  font-size: 1.15rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 32px;
  font-weight: 300;
}
.hero__image {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.hero__image img {
  border-radius: var(--radius);
  max-height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* ── PAGE HERO (Interior pages) ── */
.page-hero {
  padding: calc(var(--header-height) + 72px) 0 72px;
  background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-bg) 100%);
  text-align: center;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { max-width: 680px; margin: 0 auto 32px; }

/* ── SECTIONS ── */
.section {
  padding: var(--section-pad) 0;
}
.section--alt { background: var(--color-bg-alt); }
.section--warm { background: var(--color-warm-light); }
.section--dark {
  background: var(--color-primary-dark);
  color: var(--color-white);
}
.section--dark h2, .section--dark h3 { color: var(--color-white); }
.section--dark .lead, .section--dark p { color: rgba(255,255,255,0.85); }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

/* ── GRID LAYOUTS ── */
.grid { display: grid; gap: 32px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
.grid--2-1 { grid-template-columns: 2fr 1fr; }
.grid--1-2 { grid-template-columns: 1fr 2fr; }

/* ── CARDS ── */
.card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
}
.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 24px; right: 24px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 3px;
  transform: scaleX(0);
  transition: transform 0.35s var(--ease-out);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.card:hover::after { transform: scaleX(1); }
.card .btn { margin-top: auto; }
.card__icon {
  width: 56px; height: 56px;
  background: var(--color-accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.card__icon--green { background: var(--color-accent-light); color: var(--color-primary); }
.card__icon--amber { background: var(--color-warm-light); color: var(--color-warm); }
.card__icon--blue { background: #E8F0F6; color: #4A7C96; }

.card h3 a { color: var(--color-dark); }
.card h3 a:hover { color: var(--color-primary); }

/* ── STAT BLOCKS ── */
.stat {
  text-align: center;
  padding: 32px 24px;
}
.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* ── PRODUCT CARDS ── */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.product-card__image {
  background: var(--color-bg-alt);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  overflow: hidden;
}
.product-card__image img {
  max-height: 180px;
  object-fit: contain;
  transition: transform 0.5s var(--ease-out);
}
.product-card:hover .product-card__image img { transform: scale(1.05); }
.product-card__body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.product-card__price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 8px;
}
.product-card__desc { color: var(--color-text-light); font-size: 0.9rem; flex: 1; }
.product-card__badge {
  display: inline-block;
  background: var(--color-warm-light);
  color: var(--color-warm);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-card .btn { margin-top: 20px; text-align: center; justify-content: center; }

/* ── ABOUT / BIO SECTION ── */
.bio {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}
.bio__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

/* ── TESTIMONIALS ── */
.testimonial {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-primary);
  position: relative;
  transition: border-color 0.4s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.testimonial:hover {
  border-left-color: var(--color-warm);
  box-shadow: var(--shadow-hover);
}
.testimonial::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-accent);
  position: absolute;
  top: 12px; left: 24px;
  line-height: 1;
}
.testimonial__text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-top: 24px;
  font-style: italic;
  color: var(--color-text);
}
.testimonial__author {
  font-weight: 600;
  color: var(--color-primary-dark);
  font-size: 0.9rem;
}
.testimonial__location {
  color: var(--color-text-light);
  font-size: 0.85rem;
}

/* ── STEPS / PROCESS ── */
.steps { counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 40px;
}
.step:last-child { margin-bottom: 0; }
.step__number {
  counter-increment: step;
  width: 64px; height: 64px;
  background: var(--color-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--color-text-light); margin-bottom: 0; }

/* ── CHECKLIST ── */
.checklist { list-style: none; }
.checklist li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  border-bottom: 1px solid var(--color-border);
  font-size: 1.05rem;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* ── RECIPE CARDS ── */
.recipe-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.recipe-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.recipe-card__image {
  height: 200px;
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}
.recipe-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.recipe-card:hover .recipe-card__image img { transform: scale(1.05); }
.recipe-card__body { padding: 32px; }
.recipe-card__meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(193,121,82,0.12), transparent 70%);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(149,213,178,0.1), transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--color-white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 32px; font-size: 1.1rem; }
.cta-banner .btn-group { justify-content: center; }

/* ── CONTACT FORM ── */
.form { max-width: 600px; }
.form__group { margin-bottom: 24px; }
.form__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-dark);
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  color: var(--color-text);
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}
.form__textarea { min-height: 140px; resize: vertical; }

/* ── CREDENTIALS LIST ── */
.credentials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; list-style: none; }
.credentials li {
  padding: 16px 20px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.credentials li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── OFFER TIERS ── */
.tier {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  text-align: center;
}
.tier:hover { border-color: var(--color-primary); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.tier--featured {
  border-color: var(--color-primary);
  position: relative;
}
.tier--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-warm);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tier__icon { font-size: 2.5rem; margin-bottom: 16px; }
.tier__title { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 8px; }
.tier__price { font-size: 0.9rem; color: var(--color-primary); font-weight: 600; margin-bottom: 16px; }
.tier__desc { color: var(--color-text-light); font-size: 0.95rem; margin-bottom: 24px; }

/* ── FOOTER ── */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}
.footer h4 { color: var(--color-white); font-size: 1rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-body); }
.footer h4 + h4 { margin-top: 24px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 10px; }
.footer__links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.3s var(--ease-out);
}
.footer__links a:hover { color: var(--color-white); }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.1rem;
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.footer__social a:hover { background: var(--color-primary); color: var(--color-white); transform: translateY(-2px); }
.footer__cta { margin-top: 24px; }
.footer__bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer__disclaimer {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ── LEGAL PAGES ── */
.legal { padding: calc(var(--header-height) + 60px) 0 var(--section-pad); }
.legal h1 { margin-bottom: 32px; }
.legal h2 { font-size: 1.4rem; margin-top: 40px; margin-bottom: 16px; }
.legal p, .legal li { color: var(--color-text-light); line-height: 1.8; }
.legal ul { margin-left: 24px; margin-bottom: 16px; }
.legal li { margin-bottom: 8px; }

/* ── LEAD MAGNET ── */
.lead-magnet { background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-bg) 100%); }
.lead-magnet__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.lead-magnet__content h2 { margin-bottom: 12px; }
.lead-magnet__list {
  list-style: none;
  margin-top: 16px;
}
.lead-magnet__list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--color-text);
}
.lead-magnet__list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}
.lead-magnet__form-wrap {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.04);
}
.lead-magnet__form .form__group { margin-bottom: 16px; }
.lead-magnet__form h3 { text-align: center; margin-bottom: 4px; }
.lead-magnet__form p { text-align: center; font-size: 0.9rem; color: var(--color-text-light); margin-bottom: 20px; }
.lead-magnet__form .btn { width: 100%; justify-content: center; }
.lead-magnet__form-footer { text-align: center; font-size: 0.78rem; color: var(--color-text-light); margin-top: 12px; margin-bottom: 0; }

/* ── DOWNLOAD CARD ── */
.download-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--color-accent);
  text-align: center;
}
.download-card__icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid--4, .grid--5 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --section-pad: var(--section-pad-mobile);
  }

  .nav { display: none; }
  .header:has(.nav--open) { backdrop-filter: none; }
  .nav--open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0; bottom: 0;
    background: var(--color-white);
    padding: 32px 24px;
    gap: 8px;
    z-index: 999;
    overflow-y: auto;
  }
  .nav--open .nav__link { font-size: 1.1rem; padding: 12px 0; }
  .nav--open .nav__cta { margin-left: 0; margin-top: 16px; }
  .mobile-toggle { display: flex; }

  .header__logo span { font-size: 1rem; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero__content { padding: 0 12px; }
  .hero__content .btn-group { justify-content: center; }
  .hero__content .btn-group .btn { padding: 12px 24px; font-size: 0.9rem; }
  .hero { min-height: auto; padding-bottom: 40px; }

  .grid--2, .grid--3, .grid--4, .grid--5 { grid-template-columns: 1fr; }
  .bio { grid-template-columns: 1fr; text-align: center; }
  .bio__image { order: -1; }
  .bio__image img { max-width: 300px; margin: 0 auto; }

  .step { grid-template-columns: 48px 1fr; gap: 16px; }
  .step__number { width: 48px; height: 48px; font-size: 1.2rem; }

  .credentials { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .lead-magnet__inner { grid-template-columns: 1fr; }
  .lead-magnet__form-wrap { max-width: 460px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .btn-group { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
