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

/* ===== DESIGN TOKENS ===== */
:root {
  --bg: #f8f9f7;
  --ink: #2c3e50;
  --slate: #3D5A66;
  --sage: #8fa998;
  --gold: #d4af37;
  --gold-text: #6B5000;
  --sand: #e6e1dc;
  --white: #ffffff;
  --sage-light: #f0f4f2;
  --gold-hover: #c49e2a;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Lora', serif;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px rgba(44,62,80,0.08);
  --shadow-lg: 0 8px 32px rgba(44,62,80,0.14);

  --max-w: 1100px;
  --section-py: 88px;
}

/* ===== BODY ===== */
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 600; }
h4 { font-size: 0.95rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--gold-text); text-decoration: none; transition: color 0.2s; }
a:hover { color: #4a3900; text-decoration: underline; }
.hero a, .section--ink a, .cta-section a, .quote-section a { color: var(--gold); }
.hero a:hover, .section--ink a:hover, .cta-section a:hover, .quote-section a:hover { color: var(--gold-hover); }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section { padding: var(--section-py) 0; }
.section--sand { background: var(--sand); }
.section--sage-light { background: var(--sage-light); }
.section--ink { background: var(--ink); }
.section--ink h1,
.section--ink h2,
.section--ink h3,
.section--ink p { color: var(--white); }

.section-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-text);
  display: block;
  margin-bottom: 14px;
}
.section--ink .section-label,
.cta-section .section-label,
.lead-section .section-label { color: rgba(255,255,255,0.8); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-header p { color: var(--slate); font-size: 1.05rem; margin-top: 14px; }
.section--ink .section-header p { color: rgba(255,255,255,0.75); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(212,175,55,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-lg { padding: 17px 36px; font-size: 1rem; }

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--sand);
  padding: 16px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo:hover { text-decoration: none; }
.nav__logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.2;
}
.nav__logo-tagline {
  font-size: 0.68rem;
  color: var(--slate);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0 auto;
}
.nav__links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav__links a:hover { color: var(--slate); }
.nav__links a.active { color: var(--gold-text); border-bottom-color: var(--gold); }
.nav__cta { flex-shrink: 0; }
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: var(--ink);
  color: var(--white);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143,169,152,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: start;
}
.hero__photo-col {
  aspect-ratio: 3/4;
  max-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.hero__photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero__sub { font-size: 1.1rem; color: rgba(255,255,255,0.72); margin-bottom: 36px; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero__card {
  background: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.hero__card-title {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 22px;
  line-height: 1.55;
}
.hero__pain-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.hero__pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.5;
}
.hero__pain-list li::before {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
}

/* ===== PAIN POINTS ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.pain-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pain-card__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.pain-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.pain-card p { font-size: 0.875rem; color: var(--slate); line-height: 1.65; margin: 0; }
.pain-callout {
  text-align: center;
  margin-top: 36px;
  padding: 22px 28px;
  background: var(--ink);
  border-radius: var(--radius-lg);
}
.pain-callout p {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold);
  margin: 0;
}

/* ===== BEFORE / AFTER ===== */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.ba-col__header {
  padding: 16px 24px;
  border-radius: var(--radius) var(--radius) 0 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}
.ba-col--before .ba-col__header { background: #ddd8d2; color: var(--slate); }
.ba-col--after .ba-col__header { background: var(--gold); color: var(--ink); }
.ba-col__body {
  background: var(--white);
  border: 1px solid var(--sand);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 20px 24px;
}
.ba-col--after .ba-col__body { border-color: rgba(212,175,55,0.28); }
.ba-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(230,225,220,0.8);
  font-size: 0.875rem;
  color: var(--ink);
  line-height: 1.55;
}
.ba-item:last-child { border-bottom: none; padding-bottom: 0; }
.ba-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  margin-top: 1px;
}
.ba-col--before .ba-icon { background: #fde8e8; color: #c0392b; }
.ba-col--after .ba-icon { background: #e4f2e8; color: #27ae60; }
.ba-callout {
  text-align: center;
  margin-top: 28px;
}
.ba-callout p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--slate);
  margin: 0;
}

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 27px);
  right: calc(12.5% + 27px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(212,175,55,0.3));
}
.process-step { text-align: center; position: relative; }
.process-step__num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--bg);
}
.section--sage-light .process-step__num { box-shadow: 0 0 0 8px var(--sage-light); }
.process-step h3 { font-size: 0.95rem; margin-bottom: 10px; }
.process-step p { font-size: 0.85rem; color: var(--slate); line-height: 1.65; }

/* ===== CREDENTIALS ===== */
.credentials-row {
  display: flex;
  gap: 0;
  margin: 32px 0;
}
.credential-item {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border: 1px solid var(--sand);
}
.credential-item:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.credential-item:last-child { border-radius: 0 var(--radius) var(--radius) 0; border-left: none; }
.credential-item + .credential-item { border-left: none; }
.credential-item__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-text);
  line-height: 1;
}
.credential-item__label {
  font-size: 0.78rem;
  color: var(--slate);
  margin-top: 6px;
  line-height: 1.4;
}

/* ===== ABOUT SECTION ===== */
.about-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: center;
}
.about__photo {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--sage) 0%, var(--slate) 100%);
  aspect-ratio: 3/4;
  max-height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about__photo-placeholder {
  padding: 28px;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
}
.about__credential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0 32px;
}
.about__cred {
  background: var(--sage-light);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
}
.about__cred-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-text);
  line-height: 1;
}
.about__cred-label {
  font-size: 0.75rem;
  color: var(--slate);
  margin-top: 5px;
  line-height: 1.4;
}

/* ===== QUOTE ===== */
.quote-section {
  background: var(--ink);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-accent);
  font-size: 14rem;
  color: var(--gold);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
}
.quote-section blockquote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
  color: var(--white);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.quote-section cite {
  display: block;
  margin-top: 24px;
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-card__icon { font-size: 1.8rem; margin-bottom: 14px; }
.service-card h3 {
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.service-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.service-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.845rem;
  color: var(--slate);
  line-height: 1.5;
}
.service-card ul li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  margin-top: 7px;
}

.service-card__why {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 14px;
  font-style: italic;
}
.service-card__gain {
  margin-top: 16px;
  padding: 12px 14px;
  background: var(--sage-light);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--ink);
  line-height: 1.55;
}

/* ===== PLANS ===== */
.plans-note-top {
  text-align: center;
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 36px;
  padding: 18px 24px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
}
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: start; }
.plan-card {
  background: var(--white);
  border: 2px solid var(--sand);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.plan-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.plan-card--featured { border-color: var(--gold); }
.plan-card__header {
  background: #3F6050;
  padding: 22px 18px;
  text-align: center;
}
.plan-card--featured .plan-card__header { background: var(--ink); }
.plan-card--custom .plan-card__header { background: #3D5A66; }
.plan-card__badge {
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 5px 8px;
}
.plan-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.plan-card__hours {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.plan-card--featured .plan-card__hours { color: var(--gold); }
.plan-card__period {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  margin-top: 3px;
}
.plan-card__body { padding: 22px 18px; }
.plan-card__price {
  text-align: center;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--sand);
}
.plan-card__amount {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.plan-card__per { font-size: 0.78rem; color: var(--slate); margin-top: 3px; }
.plan-card__igic { font-size: 0.72rem; color: var(--slate); opacity: 0.8; }
.plan-card__desc { font-size: 0.845rem; color: var(--slate); line-height: 1.65; text-align: center; }
.plans-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.875rem;
  color: var(--slate);
}
.plans-note a { color: var(--slate); text-decoration: underline; }
.plans-note a:hover { color: var(--gold); }

/* ===== CTA SECTIONS ===== */
.cta-section { background: var(--sage); padding: 96px 0; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-section--ink { background: var(--ink); }
.cta-section--ink h2 { color: var(--white); }
.cta-section--ink p { color: rgba(255,255,255,0.75); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 80px 0 64px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.page-hero .section-label { justify-content: center; }

/* ===== ABOUT PAGE ===== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.value-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--gold);
}
.value-card__num {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 10px;
}
.value-card h3 { font-size: 1rem; margin-bottom: 10px; }
.value-card p { font-size: 0.875rem; color: var(--slate); margin: 0; line-height: 1.65; }

.differentiator-list { display: flex; flex-direction: column; gap: 24px; }
.diff-item { display: flex; gap: 20px; align-items: flex-start; }
.diff-item__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}
.diff-item h3 { font-size: 1rem; margin-bottom: 6px; }
.diff-item p { font-size: 0.875rem; color: var(--slate); margin: 0; line-height: 1.65; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: start; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 26px; }
.contact-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.contact-item__label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}
.contact-item__value { font-size: 0.95rem; color: var(--ink); }
.contact-item__value a { color: var(--ink); }
.contact-item__value a:hover { color: var(--gold); text-decoration: none; }

.booking-box {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  box-shadow: var(--shadow);
}
.booking-box h2 { font-size: 1.5rem; margin-bottom: 12px; }
.booking-box p { color: var(--slate); font-size: 0.925rem; margin-bottom: 28px; }
.booking-steps { text-align: left; margin: 28px 0; }
.booking-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.booking-step:last-child { margin-bottom: 0; }
.booking-step__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-step p { font-size: 0.875rem; color: var(--slate); margin: 0; padding-top: 4px; line-height: 1.55; }

.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius); padding: 20px 22px; }
.faq-item h4 { font-size: 0.925rem; color: var(--ink); margin-bottom: 8px; }
.faq-item p { font-size: 0.875rem; color: var(--slate); margin: 0; line-height: 1.65; }

/* ===== FOOTER ===== */
.footer {
  background: #1e2d3d;
  color: rgba(255,255,255,0.65);
  padding: 56px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer__brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 2px;
}
.footer__brand-tagline { font-size: 0.78rem; color: var(--gold); margin-bottom: 14px; }
.footer__brand-desc { font-size: 0.845rem; line-height: 1.65; }
.footer h3 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}
.faq-item h3 { font-size: 0.925rem; color: var(--ink); margin-bottom: 8px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul li a { color: rgba(255,255,255,0.6); font-size: 0.845rem; text-decoration: none; transition: color 0.2s; }
.footer ul li a:hover { color: var(--gold); }
.footer__contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.845rem; margin-bottom: 10px; }
.footer__contact-item a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer__contact-item a:hover { color: var(--gold); }
.footer__divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}
.footer__tagline {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--gold);
  opacity: 0.8;
}
.footer__legal {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer__legal a {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--gold); }

/* ===== PARA QUIÉN ===== */
.pq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.pq-col {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.pq-col--yes {
  background: var(--sage-light);
  border: 2px solid var(--sage);
}
.pq-col--no {
  background: var(--white);
  border: 1px solid var(--sand);
}
.pq-col__header {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid currentColor;
  opacity: 0.7;
}
.pq-col--yes .pq-col__header { color: #2D5E3E; opacity: 1; }
.pq-col--no .pq-col__header { color: var(--slate); }
.pq-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 13px;
  line-height: 1.55;
}
.pq-item:last-child { margin-bottom: 0; }
.pq-icon { font-weight: 700; flex-shrink: 0; margin-top: 1px; font-size: 0.85rem; }
.pq-col--yes .pq-icon { color: var(--gold); }
.pq-col--no .pq-icon { color: #b03a2e; }

/* ===== LEAD MAGNET ===== */
.lead-section {
  background: var(--ink);
  padding: var(--section-py) 0;
}
.lead-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.lead-content .section-label { color: rgba(212,175,55,0.9); }
.lead-content h2 { color: var(--white); margin-bottom: 14px; }
.lead-content p { color: rgba(255,255,255,0.72); margin-bottom: 20px; line-height: 1.72; font-size: 0.95rem; }
.lead-checklist { list-style: none; padding: 0; margin: 0 0 32px 0; }
.lead-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 10px;
  line-height: 1.55;
}
.lead-checklist li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.lead-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.lead-form-box h3 { font-size: 1.1rem; color: var(--ink); margin-bottom: 8px; }
.lead-form-box__sub { font-size: 0.845rem; color: var(--slate); margin-bottom: 24px; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-bottom: 7px;
  text-transform: uppercase;
}
.form-label .req { color: var(--gold); }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(143,169,152,0.15);
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(93,115,126,0.5); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%235d737e' d='M8 11L2 5h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  cursor: pointer;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-submit { width: 100%; }
.form-note { font-size: 0.78rem; color: var(--slate); text-align: center; margin-top: 14px; line-height: 1.5; }
.contact-form-box {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.contact-form-box > p { color: var(--slate); font-size: 0.9rem; margin-bottom: 28px; line-height: 1.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  :root { --section-py: 60px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__photo-col { display: none; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about__photo { display: none; }
  .ba-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .pq-grid { grid-template-columns: 1fr; }
  .lead-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-py: 48px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav { position: relative; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px 28px;
    border-bottom: 1px solid var(--sand);
    gap: 18px;
    z-index: 99;
    box-shadow: var(--shadow-lg);
  }
  .nav__links.open + .nav__cta {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 98;
    text-align: center;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
  }
  .pain-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about__credential-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .lead-form-box { padding: 24px 20px; }
  .contact-form-box { padding: 24px 18px; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .credentials-row { flex-direction: column; }
  .credential-item { border-radius: 0; border-left: 1px solid var(--sand); border-right: 1px solid var(--sand); border-bottom: none; }
  .credential-item:first-child { border-radius: var(--radius) var(--radius) 0 0; border-bottom: none; }
  .credential-item:last-child { border-radius: 0 0 var(--radius) var(--radius); border-bottom: 1px solid var(--sand); border-left: 1px solid var(--sand); }
}

/* ===== MOBILE EXTRA: 480px ===== */
@media (max-width: 480px) {
  /* Bug 1: process-grid se quedaba en 2 columnas en móvil pequeño */
  .process-grid { grid-template-columns: 1fr; }
  /* Bug 2: footer legal links — columna en pantallas muy pequeñas */
  .footer__legal { flex-direction: column; align-items: center; gap: 12px; }
  /* Mejora: about__credential-grid más compacto */
  .about__credential-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ===== LEAD MAGNET PAGES ===== */
.lm-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.lm-content { max-width: 800px; margin: 0 auto; padding: 56px 24px; }
.lm-section { margin-bottom: 48px; }
.lm-section-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  padding: 8px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  display: inline-block;
}
.lm-check-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.lm-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--sand);
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.5;
}
.lm-check-box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--sage);
  border-radius: 3px;
  margin-top: 1px;
}
.lm-priority {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: var(--font-heading);
  padding: 2px 8px;
  border-radius: 10px;
}
.lm-priority--alta { background: #fde8e8; color: #c62828; }
.lm-priority--media { background: #fff8e1; color: #f9a825; }
.lm-priority--baja { background: #e8f5e9; color: #388e3c; }
.lm-question {
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  margin-bottom: 10px;
}
.lm-question p { font-size: 0.9rem; color: var(--ink); margin: 0 0 10px; font-weight: 500; }
.lm-answers { display: flex; gap: 16px; flex-wrap: wrap; }
.lm-answer { font-size: 0.82rem; color: var(--slate); display: flex; align-items: center; gap: 6px; cursor: pointer; }
.lm-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -4px; }
.lm-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; margin-bottom: 8px; }
.lm-table th { background: var(--ink); color: var(--white); padding: 10px 12px; text-align: left; font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600; }
.lm-table td { padding: 10px 12px; border-bottom: 1px solid var(--sand); color: var(--slate); vertical-align: top; min-width: 80px; }
.lm-table tr:nth-child(even) td { background: var(--bg); }
.lm-result { padding: 20px 22px; border-radius: var(--radius-lg); margin-bottom: 14px; }
.lm-result--verde { background: #e8f5e9; border-left: 4px solid #388e3c; }
.lm-result--amarillo { background: #fff8e1; border-left: 4px solid #f9a825; }
.lm-result--rojo { background: #fde8e8; border-left: 4px solid #c62828; }
.lm-result h3 { font-size: 0.95rem; margin-bottom: 6px; color: var(--ink); }
.lm-result p { font-size: 0.875rem; color: var(--slate); margin: 0; line-height: 1.6; }
.lm-tip { background: var(--sage-light); border-left: 3px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; padding: 14px 18px; font-size: 0.875rem; color: var(--ink); line-height: 1.6; }
.lm-error-card {
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  background: var(--white);
  margin-bottom: 16px;
}
.lm-error-card__num { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--sand); line-height: 1; margin-bottom: 8px; }
.lm-error-card h3 { font-size: 1rem; color: var(--ink); margin-bottom: 12px; }
.lm-error-card dl dt { font-size: 0.78rem; font-weight: 700; font-family: var(--font-heading); letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); margin-bottom: 4px; margin-top: 10px; }
.lm-error-card dl dd { font-size: 0.875rem; color: var(--slate); line-height: 1.65; margin: 0; }
.lm-tool-card { border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 20px 22px; background: var(--white); margin-bottom: 14px; }
.lm-tool-card h3 { font-size: 0.95rem; color: var(--ink); margin-bottom: 10px; border-bottom: 1px solid var(--sand); padding-bottom: 8px; }
.lm-tool-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.lm-tool-item { font-size: 0.875rem; color: var(--slate); display: flex; gap: 8px; }
.lm-tool-name { font-weight: 600; color: var(--ink); min-width: 110px; flex-shrink: 0; }
.lm-framework-field { border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 20px 24px; background: var(--white); margin-bottom: 12px; }
.lm-framework-field__num { font-family: var(--font-heading); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-bottom: 6px; }
.lm-framework-field h3 { font-size: 0.95rem; color: var(--ink); margin-bottom: 8px; }
.lm-framework-field p { font-size: 0.85rem; color: var(--slate); margin: 0 0 12px; line-height: 1.6; }
.lm-fill-box { background: var(--bg); border: 1px dashed var(--sage); border-radius: var(--radius); padding: 12px 14px; min-height: 56px; font-size: 0.8rem; color: var(--slate); font-style: italic; }
.lm-signal { display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px; background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-lg); margin-bottom: 12px; }
.lm-signal__num { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--gold); line-height: 1; flex-shrink: 0; width: 36px; text-align: center; }
.lm-signal__body h3 { font-size: 0.95rem; color: var(--ink); margin-bottom: 6px; }
.lm-signal__body p { font-size: 0.85rem; color: var(--slate); margin: 0; line-height: 1.6; }
.lm-resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lm-resource-card { border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 26px 22px; background: var(--white); display: flex; flex-direction: column; transition: box-shadow 0.2s, transform 0.2s; }
.lm-resource-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.lm-resource-card__type { font-family: var(--font-heading); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); margin-bottom: 10px; }
.lm-resource-card__icon { font-size: 1.6rem; margin-bottom: 12px; }
.lm-resource-card h3 { font-size: 0.95rem; color: var(--ink); margin-bottom: 8px; }
.lm-resource-card p { font-size: 0.845rem; color: var(--slate); line-height: 1.6; flex-grow: 1; margin: 0; }
.lm-resource-card .btn { margin-top: 20px; font-size: 0.82rem; }
@media (max-width: 960px) { .lm-resources-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .lm-resources-grid { grid-template-columns: 1fr; } .lm-content { padding: 32px 16px; } }
@media print {
  .nav, .cta-section, footer, .lm-print-hide, .page-hero + .section { display: none !important; }
  .lm-content { padding: 0; }
  body { font-size: 12pt; }
}

/* ── Interactive: checkboxes ──────────────────────────────── */
.lm-check-box { cursor: pointer; user-select: none; position: relative; }
.lm-check-box.checked { background: var(--sage); border-color: var(--sage); }
.lm-check-box.checked::after { content: '✓'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: var(--white); font-size: 11px; font-weight: 700; }
.lm-check-item.lm-checked > span:first-of-type { text-decoration: line-through; opacity: 0.45; }

/* ── Interactive: editable fields ────────────────────────── */
[contenteditable="true"] { outline: none; cursor: text; }
[contenteditable="true"]:focus { background: #fffef5 !important; box-shadow: inset 0 0 0 2px rgba(212,173,96,0.35); }
td[contenteditable="true"]:empty::before { content: '·'; color: var(--slate); opacity: 0.3; }

/* ── Live score display ───────────────────────────────────── */
.lm-score-live { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 14px 20px; font-size: 0.9rem; color: var(--slate); margin-bottom: 20px; }
.lm-score-live__num { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; min-width: 2ch; text-align: center; }

/* ── Result dimming when live ─────────────────────────────── */
.lm-results-live .lm-result { opacity: 0.28; transition: opacity 0.25s; }
.lm-results-live .lm-result.lm-result--active { opacity: 1; }

/* ── Selectable signals ───────────────────────────────────── */
.lm-signal--selectable { cursor: pointer; user-select: none; transition: background 0.15s, border-color 0.15s; }
.lm-signal--selectable:hover { background: var(--sage-light); border-color: var(--sage); }
.lm-signal--selectable.lm-signal--checked { background: #e8f5e9; border-color: #388e3c; }
.lm-signal__check { flex-shrink: 0; width: 20px; height: 20px; border: 2px solid var(--sage); border-radius: 3px; margin-top: 3px; position: relative; transition: background 0.15s; }
.lm-signal--checked .lm-signal__check { background: #388e3c; border-color: #388e3c; }
.lm-signal--checked .lm-signal__check::after { content: '✓'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: var(--white); font-size: 11px; font-weight: 700; }

/* ── Interest bar ─────────────────────────────────────────── */
.lm-interest-bar { background: var(--bg); border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); padding: 36px 0; }
.lm-interest-bar__inner { max-width: 540px; margin: 0 auto; text-align: center; }
.lm-interest-form { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; justify-content: center; }
.lm-interest-form .form-input { flex: 1; min-width: 150px; max-width: 220px; }
