/* ═══════════════════════════════════════════════════════════════════
   CONSULTATION PAGE — Specific Styles
   Body class: .page-consultation
   ═══════════════════════════════════════════════════════════════════ */

/* Remove default body padding compensation — consultation has its own nav */
.page-consultation .site-main {
  overflow-x: hidden;
}

/* ── HERO ────────────────────────────────────────────────────────── */
.c-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: calc(100vh - var(--nav-height));
}

.c-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}

.c-hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 7vw, 104px);
  letter-spacing: 0.03em;
  line-height: 0.95;
  color: var(--black);
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease 0.1s both;
}

.c-hero__sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
  max-width: 420px;
  margin-bottom: 40px;
  animation: fadeUp 0.7s ease 0.3s both;
}
.c-hero__sub strong { font-weight: 500; color: var(--black); }

.c-hero__left .label      { animation: fadeUp 0.7s ease 0.05s both; }
.c-hero__left .hero-divider { animation: fadeUp 0.7s ease 0.25s both; }
.c-hero__left .hero-actions { animation: fadeUp 0.7s ease 0.38s both; }
.c-hero__left .hero-note  { animation: fadeUp 0.7s ease 0.45s both; }

.c-hero__right {
  position: relative;
  overflow: hidden;
  background: var(--pale-sage);
}
.c-hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── PROBLEM SECTION ─────────────────────────────────────────────── */
.c-problem {
  background: var(--pale-sage);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  padding: var(--section-pad);
}

.problem-list {
  list-style: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
}
.problem-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: #555;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.problem-list li:first-child { border-top: 1px solid var(--border); }
.problem-list li .x {
  font-size: 13px;
  color: var(--mid);
  flex-shrink: 0;
  margin-top: 2px;
}
.problem-list li strong { color: var(--black); font-weight: 500; }

/* ── DELIVERABLES ─────────────────────────────────────────────────── */
.c-deliverables {
  background: var(--off-white);
  padding: var(--section-pad);
}

.deliverables {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.deliverable {
  padding: 40px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.deliverable:nth-child(4),
.deliverable:nth-child(5),
.deliverable:nth-child(6) { border-bottom: none; }
.deliverable:nth-child(3n) { border-right: none; }

.deliverable-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--moss-mid);
  margin-bottom: 16px;
  display: block;
}
.deliverable-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 12px;
}
.deliverable-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #666;
}

/* ── HOW IT WORKS ────────────────────────────────────────────────── */
.c-process {
  background: var(--pale-sage);
  padding: var(--section-pad);
}

.steps {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.step {
  padding: 48px;
  border-right: 1px solid var(--border);
}
.step:last-child { border-right: none; }

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  letter-spacing: 0.03em;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
}
.step:first-child .step-num { color: var(--lime); }

.step-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 10px;
  display: block;
}
.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 16px;
}
.step-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: #666;
}
.step-time {
  display: block;
  margin-top: 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ── FOR WHO ─────────────────────────────────────────────────────── */
.c-for-who {
  background: var(--off-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  padding: var(--section-pad);
}

.check-list {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}
.check-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: #555;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.check-list li:first-child { border-top: 1px solid var(--border); }
.check-list li .ck {
  font-size: 11px;
  font-weight: 600;
  color: var(--moss);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.for-who-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--pale-sage);
}
.for-who-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.for-who-pull {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.for-who-pull blockquote {
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--black);
  padding-left: 20px;
  border-left: 3px solid var(--yellow);
}
.for-who-pull cite {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  font-style: normal;
}

/* ── OFFER / BOOKING ─────────────────────────────────────────────── */
.c-offer {
  background: var(--moss);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--section-pad);
}
.c-offer .label { color: rgba(255,255,255,0.35); }
.c-offer .section-title { color: var(--lime); }
.c-offer .body-text { color: rgba(255,255,255,0.55); margin: 0 auto 64px; }

.offer-box {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 64px;
  max-width: 640px;
  width: 100%;
}
.offer-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 0.08em;
  color: var(--yellow);
  line-height: 1;
}
.offer-price-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
  margin-bottom: 48px;
  display: block;
}
.offer-list {
  list-style: none;
  text-align: left;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 48px;
}
.offer-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.offer-list li .ck { color: var(--lime); font-size: 14px; flex-shrink: 0; font-weight: 500; }
.btn-book {
  display: block;
  width: 100%;
  background: var(--lime);
  color: var(--moss);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.12em;
  padding: 18px 48px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-book:hover { opacity: 0.85; }
.offer-note {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

/* ── FAQ ─────────────────────────────────────────────────────────── */
.c-faq {
  background: var(--pale-sage);
  padding: 72px 80px;
}

.faq-list {
  margin-top: 48px;
  border-top: 1px solid var(--border);
}
.faq-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.faq-q {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--black);
  line-height: 1.2;
}
.faq-a {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: #666;
}

/* ── FINAL CTA ───────────────────────────────────────────────────── */
.c-final-cta {
  background: var(--off-white);
  padding: 140px 80px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.c-final-cta .section-title {
  max-width: 700px;
  margin: 0 auto 0;
}
.c-final-cta .body-text {
  margin: 0 auto 48px;
  text-align: center;
}
.title-wrap {
  display: inline-block;
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.final-cta-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--mid);
  letter-spacing: 0.08em;
}

/* ── ANIMATIONS ─────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .c-hero { grid-template-columns: 1fr; min-height: auto; }
  .c-hero__left { padding: 80px 24px 48px; }
  .c-hero__right { min-height: 360px; }

  .c-problem { grid-template-columns: 1fr; gap: 48px; padding: 64px 24px; }

  .c-deliverables { padding: 64px 24px; }
  .deliverables { grid-template-columns: 1fr; }
  .deliverable { border-right: none; border-bottom: 1px solid var(--border); }
  .deliverable:nth-child(4),
  .deliverable:nth-child(5) { border-bottom: 1px solid var(--border); }
  .deliverable:nth-child(6) { border-bottom: none; }

  .c-process { padding: 64px 24px; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }

  .c-for-who { grid-template-columns: 1fr; gap: 48px; padding: 64px 24px; }

  .c-offer { padding: 64px 24px; }
  .offer-box { padding: 40px 24px; }

  .c-faq { padding: 64px 24px; }
  .faq-item { grid-template-columns: 1fr; gap: 12px; }

  .c-final-cta { padding: 80px 24px; }
}
