/* ==========================================================================
   SmartBook — page-specific styles (builds on styles.css tokens/components)
   ========================================================================== */

.accent { color: var(--gold); }

/* ---- Hero ---- */
.sb-hero {
  background-color: var(--bg-deep);
  color: var(--text-on-dark);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0;
  line-height: 0;
}
.sb-hero__img {
  display: block;
  width: 100%;
  height: auto;
}
.sb-hero__grid {
  display: grid;
  gap: var(--space-6);
  align-items: center;
  max-width: 46rem;
}
.sb-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #fff;
}
.sb-lede {
  margin-top: var(--space-4);
  color: var(--text-muted-on-dark);
  font-size: 1.1rem;
  max-width: 34rem;
}
.sb-lede strong { color: var(--text-on-dark); }
.sb-hero__points {
  margin-top: var(--space-4);
  display: grid;
  gap: 0.6rem;
}
.sb-hero__points li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
}
.sb-hero__points svg { color: var(--primary-light); flex-shrink: 0; }

.sb-hero__buy {
  margin-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
}
.sb-price-tag {
  display: inline-flex;
  flex-direction: column;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(244, 113, 28, 0.12);
  border: 1px solid rgba(244, 113, 28, 0.4);
}
.sb-price-tag__label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.sb-price-tag__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1;
  color: #fff;
}
.sb-hero .hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.sb-hero .btn-ghost { color: var(--text-on-dark); }


/* ---- Feature badges ---- */
.sb-badges-sec {
  background: var(--surface-light);
  padding-block: var(--space-5);
  border-bottom: 1px solid var(--border-light);
}
.sb-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4) var(--space-3);
}
.sb-badges li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-on-light);
  flex: 0 1 128px;
}
.sb-badges li small {
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--text-muted-on-light);
  line-height: 1.35;
}
.sb-badges-sec--dark .sb-badges li small { color: var(--text-muted-on-dark); }
.sb-badge__i {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(244, 113, 28, 0.14);
  color: var(--gold-deep);
}

/* ---- About ---- */
.sb-about {
  background: linear-gradient(165deg, var(--bg-panel), var(--bg-deep));
  color: var(--text-on-dark);
}
.sb-about__grid {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}
@media (min-width: 900px) { .sb-about__grid { grid-template-columns: 1fr 1fr; } }
.sb-about__head { text-align: left; margin: 0; }
.sb-about__card {
  background: var(--bg-panel-2);
  border: 1px solid var(--border-dark);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}
.sb-about__lead { color: var(--text-muted-on-dark); font-size: 1.1rem; }
.sb-about__strong {
  margin-top: 0.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.15;
  color: #fff;
}

/* ---- Check lists (shared) ---- */
.sb-check { display: grid; gap: 0.5rem; }
.sb-check li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.95rem;
}
.sb-check li svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* ---- What you receive ---- */
.sb-receive { background: var(--surface-light); }
.sb-cards {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .sb-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .sb-cards { grid-template-columns: repeat(3, 1fr); } }
.sb-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.sb-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sb-card__head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: var(--space-3);
}
.sb-card__num {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(244, 113, 28, 0.14);
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
}
.sb-card__head h3 { font-size: 1.15rem; color: var(--text-on-light); }
.sb-card__desc {
  color: var(--text-muted-on-light);
  font-size: 0.92rem;
  margin-bottom: var(--space-3);
}
.sb-card--accent {
  border-color: rgba(244, 113, 28, 0.5);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(244, 113, 28, 0.10), transparent 55%),
    var(--surface-card);
}

/* ---- Learn + Audience ---- */
.sb-learn { background: var(--surface-light); border-top: 1px solid var(--border-light); }
.sb-learn__grid {
  display: grid;
  gap: var(--space-6);
}
@media (min-width: 900px) { .sb-learn__grid { grid-template-columns: 1.1fr 0.9fr; } }
.sb-colhead { text-align: left; margin: 0 0 var(--space-4); }
@media (min-width: 560px) { .sb-check--2col { grid-template-columns: 1fr 1fr; gap: 0.5rem var(--space-4); } }
.sb-audience { display: grid; gap: 0.7rem; }
.sb-audience li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  font-weight: 500;
  font-size: 0.95rem;
}
.sb-audience__i {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(23, 162, 74, 0.12);
  color: var(--primary);
}

/* ---- Comparison ---- */
.sb-compare {
  background: linear-gradient(180deg, var(--bg-deep), var(--bg-panel));
  color: var(--text-on-dark);
}
.sb-x { color: var(--gold); }
.sb-compare__grid {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}
@media (min-width: 820px) { .sb-compare__grid { grid-template-columns: 1fr auto 1fr; } }
.sb-compare__col {
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  border: 1px solid var(--border-dark);
  background: var(--bg-panel-2);
}
.sb-compare__col h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-3);
  color: #fff;
}
.sb-compare__col ul { display: grid; gap: 0.6rem; }
.sb-compare__col li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.95rem;
}
.sb-compare__col li svg { flex-shrink: 0; margin-top: 2px; }
.sb-compare__col--old { opacity: 0.9; }
.sb-compare__col--old h3 { color: var(--text-muted-on-dark); }
.sb-compare__col--old li { color: var(--text-muted-on-dark); }
.sb-compare__col--old li svg { color: var(--danger); }
.sb-compare__col--new {
  border-color: rgba(244, 113, 28, 0.5);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(244, 113, 28, 0.12), transparent 55%),
    var(--bg-panel-2);
}
.sb-compare__col--new li svg { color: var(--primary-light); }
.sb-vs {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sb-vs span {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold);
  color: #0B1830;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
}

/* ---- Technical library ---- */
.sb-library { background: var(--surface-light); }
.sb-lib-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .sb-lib-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .sb-lib-grid { grid-template-columns: repeat(3, 1fr); } }
.sb-lib {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.sb-lib:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sb-lib__i {
  width: 50px; height: 50px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(244, 113, 28, 0.14);
  color: var(--gold-deep);
  margin-bottom: var(--space-3);
}
.sb-lib h3 { font-size: 1.1rem; color: var(--text-on-light); margin-bottom: 0.35rem; }
.sb-lib p { color: var(--text-muted-on-light); font-size: 0.9rem; }

/* ---- Journey ---- */
.sb-journey {
  background: linear-gradient(180deg, var(--bg-panel), var(--bg-deep));
  color: var(--text-on-dark);
}
.sb-steps {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 720px) { .sb-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .sb-steps { grid-template-columns: repeat(4, 1fr); } }
.sb-step {
  position: relative;
  background: var(--bg-panel-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}
.sb-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-muted-on-dark);
  margin-bottom: var(--space-3);
}
.sb-step h3 { font-size: 1.1rem; color: #fff; }
.sb-step p { color: var(--text-muted-on-dark); font-size: 0.9rem; margin-top: 0.3rem; }
.sb-step--current {
  border-color: rgba(244, 113, 28, 0.55);
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(244, 113, 28, 0.14), transparent 60%),
    var(--bg-panel-2);
}
.sb-step--current .sb-step__num { background: var(--gold); color: #0B1830; border-color: transparent; }
.sb-step__tag {
  display: inline-block;
  margin-top: var(--space-3);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(244, 113, 28, 0.14);
  border: 1px solid rgba(244, 113, 28, 0.35);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
}
.sb-step__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: var(--space-3);
  color: var(--primary-light);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}
.sb-step__link svg { transition: transform 180ms var(--ease); }
.sb-step__link:hover svg { transform: translateX(3px); }

/* ---- Price / CTA ---- */
.sb-price-sec {
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(23, 162, 74, 0.12), transparent 55%),
    linear-gradient(180deg, var(--bg-deep), #0F1215);
  color: var(--text-on-dark);
}
.sb-price-wrap {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}
@media (min-width: 900px) { .sb-price-wrap { grid-template-columns: 1fr 1fr; } }
.sb-results .section-kicker { color: var(--gold); }
.sb-results h2 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-top: 0.4rem; }
.sb-check--lg { margin-top: var(--space-4); gap: 0.7rem; }
.sb-check--lg li { font-size: 1.05rem; font-weight: 500; }
.sb-check--lg li svg { color: var(--primary-light); }

.sb-price-box {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.sb-price-box__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.sb-price-box__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 3.6rem);
  line-height: 1;
  color: var(--text-on-light);
  margin: 0.4rem 0 0.6rem;
}
.sb-price-box__note {
  color: var(--text-muted-on-light);
  font-size: 0.9rem;
  margin-bottom: var(--space-4);
}
.sb-price-box__wa { margin-top: var(--space-3); }

/* ---- Footer ---- */
.sb-footer { text-align: center; }
.sb-slogan {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  color: #fff;
  letter-spacing: -0.01em;
}
.sb-footer__tag {
  max-width: 40rem;
  margin: var(--space-3) auto 0;
  color: var(--text-muted-on-dark);
  font-size: 0.95rem;
}
.sb-footer .footer-bottom { margin-top: var(--space-6); }

/* ==========================================================================
   SmartBook v2 — final material additions
   ========================================================================== */

/* Dark variant of the badges strip */
.sb-badges-sec--dark { background: linear-gradient(180deg, var(--bg-panel), var(--bg-deep)); border-bottom: none; }
.sb-badges-sec--dark .sb-badges li { color: var(--text-on-dark); }
.sb-badges-sec--dark .sb-badge__i { background: rgba(244, 113, 28,0.16); color: var(--gold); }

/* Video + transformation copy */
.sm-video { background: var(--surface-light); }
.sm-video__grid { display: grid; gap: var(--space-6); align-items: center; }
@media (min-width: 900px) { .sm-video__grid { grid-template-columns: 1fr 1fr; } }
.video-card--wide { aspect-ratio: 4 / 3; }
.sm-video__copy h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
.sm-video__list { margin-top: var(--space-4); display: grid; gap: 0.65rem; }
.sm-video__list li { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 1rem; font-weight: 500; }
.sm-video__list li svg { color: var(--gold-deep); flex-shrink: 0; margin-top: 3px; }
.sm-video__copy .btn { margin-top: var(--space-5); }

/* Real-practice photo grid */
.sm-photos { display: grid; gap: var(--space-3); grid-template-columns: repeat(2, 1fr); margin-top: var(--space-5); }
@media (min-width: 720px) { .sm-photos { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .sm-photos { grid-template-columns: repeat(3, 1fr); } }
.sm-photos img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-md); display: block; }

/* Pricing tiers */
.sm-tiers { display: grid; gap: var(--space-4); max-width: 920px; margin-inline: auto; }
@media (min-width: 760px) { .sm-tiers { grid-template-columns: repeat(3, 1fr); } }
.sm-tier {
  background: var(--surface-card); color: var(--text-on-light);
  border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  padding: var(--space-5); text-align: center;
}
.sm-tier__label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); }
.sm-tier__value { font-family: var(--font-display); font-weight: 800; font-size: 2.3rem; line-height: 1; margin: 0.5rem 0; }
.sm-tier__value small { font-size: 1.05rem; }
.sm-tier__desc { color: var(--text-muted-on-light); font-size: 0.92rem; }
.sm-tier--main { border-top: 5px solid var(--gold); box-shadow: var(--shadow-lg); }
.sm-tier--contact { border-color: rgba(23,162,74,0.4); }
.sm-price-cta { margin-top: var(--space-6); display: flex; flex-direction: column; align-items: center; gap: var(--space-3); }
.sm-price-cta__note { color: var(--text-muted-on-dark); font-size: 0.85rem; letter-spacing: 0.03em; text-align: center; }

/* Footer trust strip */
.sm-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-5); margin-top: var(--space-4); }
.sm-trust li { display: flex; align-items: center; gap: 0.5rem; color: var(--text-muted-on-dark); font-size: 0.85rem; font-weight: 600; }
.sm-trust li svg { color: var(--gold); flex-shrink: 0; }

/* Why-different + YouTube: side-by-side pair */
.sb-why-grid { display: grid; gap: var(--space-5); align-items: stretch; }
@media (min-width: 900px) { .sb-why-grid { grid-template-columns: 1fr 1fr; } }
.sb-why-grid .authority-card--compact { height: 100%; }
.sb-why-grid .co-bonus__card--compact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  background: linear-gradient(160deg, var(--bg-panel-2), var(--bg-deep));
  color: var(--text-on-dark);
  border: 1px solid var(--border-dark);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: left;
}

/* Round author photo (used inside the why-different card) */
.authority-photo--round {
  aspect-ratio: 1;
  width: 100%;
  max-width: 200px;
  border-radius: 50%;
  margin-inline: auto;
}
@media (min-width: 800px) {
  .sb-why-grid .authority-card--compact { grid-template-columns: 200px 1fr; }
}
