/* =============================================
   CONSULTATION PAGE (/consultation), new 2026-08-26
   A separate, standalone offer from the "What I Build" AI systems catalog —
   this is pure advisory consultation (no execution), priced as a monthly
   retainer rather than a flat one-time build fee. See CLAUDE.md for the
   full positioning writeup.
   ============================================= */

/* ===== Hero ===== */
.cons-hero-section { padding: 56px 0 0; }
.cons-hero { text-align: center; }
.cons-hero .section-sub { margin: 0 auto; }
.cons-hero__photo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 4px;
}
.cons-hero__photo-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gold-light);
  flex-shrink: 0;
  border: 2px solid var(--gold-light);
}
.cons-hero__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50% !important;
}
.cons-hero .btns { margin-top: 24px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cons-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.cons-hero__cancel {
  max-width: 560px;
  margin: 18px auto 0;
  background: var(--gold-light);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}

/* ===== Hero flip cards ===== */
.hero-flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: 32px auto 0;
}
.hero-flip-card { perspective: 1000px; height: 150px; cursor: pointer; }
.hero-flip-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 14px; }
.hero-flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
  transform-style: preserve-3d;
}
.hero-flip-card.is-flipped .hero-flip-card__inner { transform: rotateY(180deg); }
.hero-flip-card__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 14px;
  padding: 16px 14px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-flip-card__face--front { background: var(--bg); border: 1.5px solid var(--border); }
.hero-flip-card__face--back { background: var(--navy); color: var(--gold-light); transform: rotateY(180deg); }
.hero-flip-card__icon { font-size: 18px; margin-bottom: 6px; }
.hero-flip-card__text { font-size: 13.5px; font-weight: 700; line-height: 1.4; margin: 0; }
.hero-flip-card__face--back .hero-flip-card__text { font-weight: 600; color: #fff; }
.hero-flip-card__hint {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.hero-flip-card__flip-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 14px;
  opacity: 0.55;
}

@media (prefers-reduced-motion: reduce) {
  .hero-flip-card__inner { transition: none; }
}

/* ===== Scope banner ===== */
.scope-banner {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 26px 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 34px;
}
.scope-banner__icon { font-size: 26px; flex-shrink: 0; }
.scope-banner__title { font-size: 15px; font-weight: 800; color: var(--gold-light); margin: 0 0 6px; text-transform: uppercase; letter-spacing: 0.03em; }
.scope-banner__body { font-size: 14.5px; color: rgba(255,255,255,0.8); margin: 0; line-height: 1.6; }

/* ===== Problem categories ===== */
.cons-cat-section { padding: 60px 0; background: var(--bg-alt); }
.cons-who-section { padding: 60px 0; }
.cons-reach-section { padding: 60px 0; background: var(--bg-alt); }
.cons-get-section { padding: 60px 0; }
.cons-price-section { padding: 60px 0; background: var(--bg-alt); }

.cat-header { text-align: center; margin-bottom: 30px; }
.cat-block + .cat-block { margin-top: 52px; }
.cat-block__label { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.cat-block__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.cat-block__title { font-size: 19px; font-weight: 800; margin: 0; }

.prob-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.prob-card { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 20px 22px; }
.prob-card__q { font-size: 14.5px; font-weight: 700; color: var(--text); margin: 0 0 10px; }
.prob-card__consequence {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--red);
  margin: 0;
  line-height: 1.55;
  background: #FEF2F2;
  border-radius: 8px;
  padding: 10px 12px;
}
.prob-card__consequence-label { font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; flex-shrink: 0; font-size: 11px; margin-top: 2px; }

/* ===== Who / How ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.info-card { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.info-card__icon { font-size: 24px; margin-bottom: 10px; }
.info-card__title { font-size: 16px; font-weight: 800; margin: 0 0 8px; }
.info-card__body { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ===== What you get ===== */
.get-list { max-width: 640px; margin: 30px auto 0; padding: 0; }
.get-list li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.get-list li:last-child { border-bottom: none; }
.get-list li::before { content: "✓"; color: var(--green); font-weight: 800; flex-shrink: 0; }

/* ===== Pricing ===== */
.price-card {
  max-width: 460px;
  margin: 30px auto 0;
  background: var(--bg);
  border: 1.5px solid var(--accent);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.price-card__amt { font-size: 32px; font-weight: 800; color: var(--navy); }
.price-card__unit { font-size: 13px; color: var(--light); margin-top: 2px; }
.price-card ul { text-align: left; margin: 20px 0; padding: 0; list-style: none; }
.price-card li { display: flex; gap: 8px; font-size: 13.5px; margin-bottom: 8px; color: var(--muted); }
.price-card li::before { content: "✓"; color: var(--green); font-weight: 800; }

@media (max-width: 900px) {
  .prob-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .hero-flip-grid { grid-template-columns: 1fr; max-width: 320px; }
  .hero-flip-card { height: 130px; }
}
