/* ==========================================================================
   Bet Calculator Betmentor — components.css
   Hero, stats, features, why/benefits/tips, comparison, compatibility,
   reviews, FAQ, cards, CTA, chips, breadcrumbs, pagination.
   ========================================================================== */

/* ---------- reveal-on-scroll (site wide) ----------
   Only hidden when the .js class is present, which partials.js sets before any
   [data-reveal] element is parsed. Without JS the content is simply visible —
   an animation must never be the reason someone cannot read the page. */
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ==========================================================================
   HERO — centred stack, calculator sits below the copy
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  background:
    linear-gradient(rgba(7,14,12,.84), rgba(7,14,12,.93)),
    url("../images/hero/homepage-hero.webp") center / cover no-repeat,
    var(--ink);
  padding: var(--sp-7) 0 var(--sp-8);
}
/* faint grid texture */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(35,174,109,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35,174,109,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
}
.hero > .container { position: relative; z-index: 1; }

/* Supplied section artwork is used as a subtle visual layer so the existing
   content, spacing and interaction model remain unchanged. */
#features { background-image: linear-gradient(rgba(9,24,19,.95), rgba(9,24,19,.96)), url("../images/sections/instant-calc.webp"); background-size: cover; background-position: center; }
#bet-types { background-image: linear-gradient(rgba(7,14,12,.94), rgba(7,14,12,.96)), url("../images/sections/bet-types.webp"); background-size: cover; background-position: center; }
#why-betmentor { background-image: linear-gradient(rgba(7,14,12,.94), rgba(7,14,12,.96)), url("../images/sections/security-feature.webp"); background-size: cover; background-position: center; }
#comparison { background-image: linear-gradient(rgba(7,14,12,.94), rgba(7,14,12,.96)), url("../images/sections/odds-converter.webp"); background-size: cover; background-position: center; }
#compatibility { background-image: linear-gradient(rgba(9,24,19,.94), rgba(9,24,19,.96)), url("../images/sections/multi-platform.webp"); background-size: cover; background-position: center; }

/* Defer painting for far-below-the-fold artwork until it approaches the
   viewport. Intrinsic sizing keeps the page stable while content is skipped. */
#features, #bet-types, #why-betmentor, #comparison, #compatibility,
#benefits, #tips, #reviews, #latest, #faqs {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.hero__intro { max-width: 880px; margin: 0 auto; text-align: center; }
.hero__title {
  font-size: var(--step-6); color: var(--emerald-l); margin: 0 0 .15em;
  letter-spacing: -.03em; line-height: 1.1;
}
.hero__title .hero__title-sub { display: block; color: var(--white); margin-top: .12em; }
.hero__lead {
  font-size: var(--step-1); color: var(--text-soft); max-width: 68ch;
  margin: 0 auto 1.5rem; line-height: 1.75;
}
/* Inline keyword links: green, never underlined. */
.hero__lead a {
  color: var(--emerald-l); font-weight: 600; text-decoration: none;
  transition: color var(--t-fast);
}
.hero__lead a:hover { color: var(--emerald-xl); text-decoration: none; }
.hero__points {
  list-style: none; padding: 0; margin: 0 auto 1.9rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; justify-content: center;
}
.hero__points li {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--text); font-weight: 600; font-size: .96rem;
}
.hero__points svg { width: 19px; height: 19px; color: var(--emerald-l); flex: none; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.hero__trust {
  margin: 1.5rem 0 0; display: inline-flex; align-items: center; gap: .55rem;
  color: var(--muted); font-size: .84rem;
}
.hero__trust svg { width: 16px; height: 16px; color: var(--gold); }

/* calculator dock below the copy */
.hero__media { margin: var(--sp-6) auto 0; max-width: 820px; }

/* ==========================================================================
   STAT STRIP
   ========================================================================== */
.stats { background: var(--ink-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
.stat { background: var(--ink-3); padding: var(--sp-5) var(--sp-3); text-align: center; transition: background var(--t-med); }
.stat:hover { background: var(--surface-2); }
.stat__num {
  font-family: var(--font-display); font-weight: 800; font-size: var(--step-4);
  color: var(--emerald-l); letter-spacing: -.02em; line-height: 1.1;
}
.stat:nth-child(odd) .stat__num { color: var(--gold); }
.stat__label { color: var(--muted); font-size: .86rem; margin-top: .25rem; }

/* ==========================================================================
   FEATURE GRID
   ========================================================================== */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }

/* Every card shares one distinctive resting surface — a cool graphite-green
   with a soft inner sheen. The warm gold treatment is a hover state only. */
.feature {
  position: relative; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(35,174,109,.10), transparent 58%),
    linear-gradient(158deg, #1B2A25 0%, #142019 100%);
  border: 1px solid var(--border-2); border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-4);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
/* Warm wash, revealed on hover */
.feature::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(255,168,0,.16), transparent 58%),
    linear-gradient(158deg, #2F3312 0%, #1E200E 100%);
  opacity: 0; transition: opacity var(--t-med);
}
.feature::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity var(--t-med);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); border-color: rgba(255,168,0,.5); }
.feature:hover::after, .feature:hover::before { opacity: 1; }

.feature__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(35,174,109,.24), rgba(35,174,109,.08));
  border: 1px solid rgba(35,174,109,.28);
  color: var(--emerald-l); margin-bottom: 1rem;
  transition: transform var(--t-med), background var(--t-med), border-color var(--t-med), color var(--t-med);
}
.feature:hover .feature__icon {
  transform: scale(1.08) rotate(-5deg);
  background: linear-gradient(140deg, rgba(255,168,0,.28), rgba(255,168,0,.08));
  border-color: rgba(255,168,0,.4); color: var(--gold-l);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature__title { font-size: var(--step-1); margin-bottom: .4rem; }
.feature__text { color: var(--text-soft); font-size: .95rem; margin: 0; }

/* ==========================================================================
   SPLIT / ABOUT
   ========================================================================== */
/* start-aligned so the media column can travel the full height of the copy */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); align-items: start; }
.split p { color: var(--text-soft); }
/* The media sticks while the text scrolls past, then releases at the end of
   the section — it never outruns its own column. */
.split__media {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-2); position: sticky; top: 100px;
}
.split__media img { width: 100%; display: block; }
.split__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 90px rgba(35,174,109,.14);
}
.mini-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .75rem; }
.mini-list li {
  display: flex; gap: .9rem; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--r-md);
  padding: .95rem 1.05rem;
  transition: transform var(--t-med), border-color var(--t-med), background var(--t-med);
}
.mini-list li:hover { transform: translateX(5px); border-color: rgba(35,174,109,.5); background: var(--surface-2); }
.mini-list .mini-list__ic {
  flex: none; width: 38px; height: 38px; border-radius: 11px;
  background: rgba(35,174,109,.16); border: 1px solid rgba(35,174,109,.28);
  color: var(--emerald-l); display: grid; place-items: center;
}
.mini-list li:nth-child(even) .mini-list__ic {
  background: rgba(255,168,0,.16); border-color: rgba(255,168,0,.28); color: var(--gold-l);
}
.mini-list .mini-list__ic svg { width: 19px; height: 19px; }
.mini-list h3 { font-size: 1.02rem; margin: 0 0 .15rem; }
.mini-list p { margin: 0; color: var(--text-soft); font-size: .91rem; line-height: 1.6; }
.split__actions { margin-top: 1.4rem; }

/* ==========================================================================
   STEPS (how it works)
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.step {
  background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--r-lg);
  padding: var(--sp-4); position: relative; overflow: hidden;
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}
.step:hover { transform: translateY(-6px); border-color: rgba(35,174,109,.5); box-shadow: var(--shadow-md); }
.step__num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--emerald), var(--emerald-d));
  color: #04140b; margin-bottom: .95rem; transition: transform var(--t-med);
}
.step:hover .step__num { transform: scale(1.1); }
.step::after {
  content: attr(data-ghost); position: absolute; right: -.15em; bottom: -.42em;
  font-family: var(--font-display); font-weight: 800; font-size: 5.4rem;
  color: rgba(35,174,109,.07); line-height: 1; pointer-events: none;
}
.step__title { font-size: 1.05rem; margin-bottom: .35rem; }
.step__text { color: var(--text-soft); font-size: .92rem; margin: 0; position: relative; }

/* ==========================================================================
   WHY CHOOSE — icon rows
   ========================================================================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.why {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--r-lg);
  padding: var(--sp-4);
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}
.why:hover { transform: translateY(-5px); border-color: rgba(35,174,109,.5); box-shadow: var(--shadow-md); }
.why__ic {
  flex: none; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(35,174,109,.16); border: 1px solid rgba(35,174,109,.3); color: var(--emerald-l);
  transition: transform var(--t-med);
}
.why:hover .why__ic { transform: rotate(-8deg) scale(1.08); }
.why__ic svg { width: 23px; height: 23px; }
.why--gold .why__ic { background: rgba(255,168,0,.16); border-color: rgba(255,168,0,.3); color: var(--gold-l); }
.why--gold:hover { border-color: rgba(255,168,0,.5); box-shadow: var(--shadow-gold); }
.why h3 { font-size: 1.04rem; margin: 0 0 .25rem; }
.why p { margin: 0; color: var(--text-soft); font-size: .92rem; line-height: 1.6; }

/* ==========================================================================
   BENEFITS — compact 3x3
   ========================================================================== */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.benefit {
  position: relative; padding: var(--sp-4); border-radius: var(--r-lg);
  background: var(--surface-2); border: 1px solid var(--border-2);
  transition: transform var(--t-med), border-color var(--t-med), background var(--t-med), box-shadow var(--t-med);
}
.benefit:hover { transform: translateY(-5px); background: var(--surface); border-color: rgba(35,174,109,.5); box-shadow: var(--shadow-md); }
.benefit__ic {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(35,174,109,.22), rgba(35,174,109,.06));
  border: 1px solid rgba(35,174,109,.26); color: var(--emerald-l); margin-bottom: .85rem;
  transition: transform var(--t-med);
}
.benefit:hover .benefit__ic { transform: translateY(-3px) scale(1.06); }
.benefit__ic svg { width: 22px; height: 22px; }
.benefit:nth-child(3n-1) .benefit__ic {
  background: linear-gradient(140deg, rgba(255,168,0,.22), rgba(255,168,0,.06));
  border-color: rgba(255,168,0,.26); color: var(--gold-l);
}
.benefit h3 { font-size: 1.02rem; margin: 0 0 .3rem; }
.benefit p { margin: 0; color: var(--text-soft); font-size: .91rem; line-height: 1.6; }

/* ==========================================================================
   EXPERT TIPS — numbered list
   ========================================================================== */
.tips { display: grid; gap: .85rem; max-width: 900px; margin-inline: auto; }
.tip {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border-2); border-left: 3px solid var(--emerald);
  border-radius: var(--r-md); padding: 1.15rem 1.3rem;
  transition: transform var(--t-med), border-color var(--t-med), background var(--t-med);
}
.tip:hover { transform: translateX(6px); background: var(--surface-2); border-left-color: var(--gold); }
.tip__num {
  flex: none; font-family: var(--font-mono); font-weight: 600; font-size: .82rem;
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(35,174,109,.14); color: var(--emerald-l); border: 1px solid rgba(35,174,109,.26);
  transition: background var(--t-med), color var(--t-med), border-color var(--t-med);
}
.tip:hover .tip__num { background: rgba(255,168,0,.16); color: var(--gold-l); border-color: rgba(255,168,0,.3); }
.tip h3 { font-size: 1.04rem; margin: 0 0 .25rem; }
.tip p { margin: 0; color: var(--text-soft); font-size: .93rem; line-height: 1.65; }

/* ==========================================================================
   COMPARISON — "VS" panel + table
   ========================================================================== */
.vs-head {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: var(--sp-4);
  align-items: center; margin-bottom: var(--sp-5);
}
.vs-card {
  border-radius: var(--r-lg); padding: var(--sp-4) var(--sp-4) var(--sp-4);
  border: 1px solid var(--border-2); background: var(--surface-2); text-align: center;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.vs-card--us {
  background: linear-gradient(160deg, rgba(35,174,109,.16), var(--surface));
  border-color: rgba(35,174,109,.45);
}
.vs-card--us:hover { transform: translateY(-5px); box-shadow: var(--shadow-glow); }
.vs-card--them:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.vs-card__tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .32rem .7rem; border-radius: var(--r-pill); margin-bottom: .7rem; font-weight: 600;
}
.vs-card--us .vs-card__tag { background: rgba(35,174,109,.2); color: var(--emerald-l); border: 1px solid rgba(35,174,109,.35); }
.vs-card--them .vs-card__tag { background: rgba(143,164,154,.14); color: var(--muted); border: 1px solid var(--border-2); }
.vs-card h3 { font-size: var(--step-2); margin: 0 0 .3rem; }
.vs-card p { margin: 0; color: var(--text-soft); font-size: .92rem; }
.vs-card--us h3 { color: var(--emerald-l); }
.vs-badge {
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--gold);
  background: var(--ink); border: 2px solid var(--gold); box-shadow: 0 0 0 8px rgba(255,168,0,.08);
  flex: none;
}

.compare-wrap {
  border: 1px solid var(--border-2); border-radius: var(--r-lg); overflow: hidden;
  background: var(--surface-2);
}
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare {
  width: 100%; border-collapse: collapse; min-width: 620px; font-size: .94rem;
}
.compare caption { text-align: left; padding: 1rem 1.2rem; color: var(--muted); font-size: .85rem; }
.compare th, .compare td { padding: .95rem 1.2rem; text-align: left; border-bottom: 1px solid var(--border); vertical-align: middle; }
.compare thead th {
  background: var(--deep); color: var(--white); font-family: var(--font-display);
  font-size: .92rem; font-weight: 700; letter-spacing: .01em; position: sticky; top: 0;
}
.compare thead th:nth-child(2) { color: var(--emerald-l); }
.compare thead th:nth-child(3) { color: var(--muted); }
.compare tbody tr { transition: background var(--t-fast); }
.compare tbody tr:hover { background: rgba(35,174,109,.07); }
.compare tbody tr:last-child td { border-bottom: none; }
.compare td:first-child { color: var(--text); font-weight: 600; }
.compare td:nth-child(2), .compare td:nth-child(3) { color: var(--text-soft); }
.compare .yes, .compare .no, .compare .partial {
  display: inline-flex; align-items: center; gap: .45rem; font-weight: 600;
}
.compare .yes { color: var(--emerald-l); }
.compare .no { color: #C98686; }
/* Neither a yes nor a flat no — these rows are "it depends" */
.compare .partial { color: var(--muted); font-weight: 500; }
.compare .yes svg, .compare .no svg, .compare .partial svg { width: 17px; height: 17px; flex: none; }

/* ==========================================================================
   COMPATIBILITY
   ========================================================================== */
.compat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.compat {
  text-align: center; padding: var(--sp-5) var(--sp-3); border-radius: var(--r-lg);
  background: var(--surface); border: 1px solid var(--border-2);
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}
.compat:hover { transform: translateY(-6px); border-color: rgba(35,174,109,.5); box-shadow: var(--shadow-md); }
.compat__ic {
  width: 58px; height: 58px; margin: 0 auto .9rem; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(35,174,109,.2), rgba(35,174,109,.05));
  border: 1px solid rgba(35,174,109,.28); color: var(--emerald-l);
  transition: transform var(--t-med), background var(--t-med);
}
.compat:hover .compat__ic { transform: scale(1.08); background: linear-gradient(150deg, rgba(35,174,109,.32), rgba(35,174,109,.1)); }
.compat__ic svg { width: 28px; height: 28px; }
.compat h3 { font-size: 1.02rem; margin: 0 0 .25rem; }
.compat p { margin: 0; color: var(--text-soft); font-size: .88rem; line-height: 1.55; }

.compat-strip {
  display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center;
  margin-top: var(--sp-5);
}
.compat-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--surface-2); border: 1px solid var(--border-2); border-radius: var(--r-pill);
  padding: .5rem .95rem; font-size: .85rem; color: var(--text-soft); font-weight: 500;
  transition: border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.compat-pill:hover { border-color: var(--emerald); color: var(--emerald-l); transform: translateY(-2px); }
.compat-pill svg { width: 15px; height: 15px; color: var(--emerald-l); flex: none; }

/* ==========================================================================
   BET TYPE CHIPS
   ========================================================================== */
/* Centred tab cloud with a true gradient border (padding-box / border-box
   double background), which a flat border colour cannot reproduce. */
.bettype-cloud {
  display: flex; flex-wrap: wrap; gap: .65rem;
  justify-content: center; max-width: 940px; margin-inline: auto;
}
.bettype {
  position: relative; display: inline-flex; align-items: center; gap: .55rem;
  padding: .7rem 1.25rem; font-weight: 600; font-size: .92rem; color: var(--text);
  border-radius: var(--r-pill); border: 1.5px solid transparent;
  background:
    linear-gradient(var(--surface-2), var(--surface-2)) padding-box,
    linear-gradient(135deg, rgba(35,174,109,.55), rgba(255,168,0,.35) 55%, rgba(35,174,109,.2)) border-box;
  transition: transform var(--t-fast), color var(--t-fast), box-shadow var(--t-med), background var(--t-med);
}
.bettype:hover {
  color: var(--white); text-decoration: none; transform: translateY(-3px);
  background:
    linear-gradient(rgba(35,174,109,.16), rgba(35,174,109,.08)) padding-box,
    linear-gradient(135deg, var(--emerald), var(--gold) 70%, var(--emerald)) border-box;
  box-shadow: var(--shadow-glow);
}
.bettype svg { width: 15px; height: 15px; color: var(--emerald-l); flex: none; transition: transform var(--t-fast), color var(--t-fast); }
.bettype:hover svg { color: var(--gold-l); transform: translateX(3px); }

/* ==========================================================================
   CARDS (blog)
   ========================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.card {
  background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(35,174,109,.5); }
.card__media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--deep); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-med); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: var(--sp-4); display: flex; flex-direction: column; flex: 1; }
.card__title { font-size: 1.14rem; margin: .55rem 0 .4rem; line-height: 1.3; }
.card__title a { color: var(--white); }
.card__title a:hover { color: var(--emerald-l); text-decoration: none; }
.card__text { color: var(--text-soft); font-size: .92rem; margin: 0 0 .9rem; flex: 1; }
.card__meta { color: var(--muted); font-size: .8rem; margin: 0; font-family: var(--font-mono); }
.chip {
  align-self: flex-start; display: inline-flex; align-items: center;
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 600; color: var(--emerald-l); background: rgba(35,174,109,.14);
  border: 1px solid rgba(35,174,109,.24);
  padding: .3rem .6rem; border-radius: var(--r-pill);
}
.chip--gold { color: var(--gold-l); background: rgba(255,168,0,.14); border-color: rgba(255,168,0,.26); }

/* ==========================================================================
   FAQ — two columns
   ========================================================================== */
.faq {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem; align-items: start;
}
.faq--single { grid-template-columns: minmax(0, 1fr); max-width: 820px; margin-inline: auto; }
.faq__item {
  background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.faq__item:hover {
  border-color: rgba(35,174,109,.45); background: #22332D;
  box-shadow: 0 6px 20px rgba(0,0,0,.28); transform: translateY(-1px);
}
.faq__item[open] { border-color: rgba(35,174,109,.55); background: var(--surface-2); transform: none; }
.faq__item[open]:hover { box-shadow: none; }

.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.05rem 1.15rem; font-family: var(--font-display); font-weight: 600; font-size: .99rem;
  color: var(--white); display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  line-height: 1.45; transition: color .25s ease;
  -webkit-tap-highlight-color: transparent; user-select: none;
}
.faq__q:hover { color: var(--emerald-l); }
.faq__item[open] .faq__q { color: var(--emerald-l); }

/* plus that rotates into a minus */
.faq__icon {
  flex: none; width: 22px; height: 22px; position: relative; margin-top: .15rem;
  transition: transform .32s cubic-bezier(.2,.7,.2,1);
}
.faq__item[open] .faq__icon { transform: rotate(180deg); }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--emerald-l); border-radius: 2px;
  transition: transform .32s cubic-bezier(.2,.7,.2,1), opacity .2s ease;
}
.faq__icon::before { top: 10px; left: 3px; right: 3px; height: 2px; }
.faq__icon::after { left: 10px; top: 3px; bottom: 3px; width: 2px; }
.faq__item[open] .faq__icon::after { transform: scaleY(0); opacity: 0; }
.faq__q:hover .faq__icon { transform: scale(1.12); }
.faq__item[open] .faq__q:hover .faq__icon { transform: rotate(180deg) scale(1.12); }

.faq__a {
  padding: 0 1.15rem 1.1rem; color: var(--text-soft); font-size: .94rem; line-height: 1.7;
  will-change: height;
}
.faq__a p:last-child { margin-bottom: 0; }
details.faq__item summary { list-style: none; }
details.faq__item summary::-webkit-details-marker { display: none; }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  background:
    radial-gradient(620px 320px at 85% -20%, rgba(35,174,109,.3), transparent 62%),
    radial-gradient(520px 280px at 12% 120%, rgba(255,168,0,.16), transparent 62%),
    linear-gradient(135deg, var(--deep), var(--ink-3));
  border: 1px solid var(--border-2);
  color: #fff; padding: var(--sp-6); text-align: center;
}
.cta__title { font-size: var(--step-4); color: #fff; margin-bottom: .5rem; }
.cta__text { color: var(--text-soft); max-width: 56ch; margin: 0 auto 1.6rem; }
.cta__actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   breadcrumbs / pagination / notice
   ========================================================================== */
.crumbs { font-size: .84rem; color: var(--muted); margin-bottom: 1.2rem; font-family: var(--font-mono); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0; }
.crumbs li::after { content: "/"; margin-left: .4rem; color: var(--border-2); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--emerald-l); }
.crumbs [aria-current="page"] { color: var(--text-soft); }

.pagination { display: flex; align-items: center; justify-content: center; gap: .4rem; margin-top: var(--sp-6); flex-wrap: wrap; }
.pagination a, .pagination span {
  min-width: 42px; height: 42px; padding: 0 .8rem; border-radius: var(--r-md);
  display: inline-flex; align-items: center; justify-content: center; gap: .35rem;
  border: 1px solid var(--border-2); background: var(--surface); color: var(--text);
  font-weight: 600; font-size: .92rem; transition: all var(--t-fast);
}
.pagination a:hover { border-color: var(--emerald); color: var(--emerald-l); text-decoration: none; transform: translateY(-2px); }
.pagination [aria-current="page"] { background: var(--emerald); color: #04140b; border-color: var(--emerald); }
.pagination .is-disabled { opacity: .35; pointer-events: none; }
.pagination svg { width: 16px; height: 16px; }

/* ---------- notice / disclaimer panel ---------- */
.notice {
  position: relative; overflow: hidden;
  display: flex; gap: 1.15rem; align-items: flex-start;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(255,168,0,.13), transparent 60%),
    linear-gradient(155deg, #1F1B0C 0%, #14140C 100%);
  border: 1px solid rgba(255,168,0,.28);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.6rem;
  color: var(--text-soft);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}
/* warm accent rail */
.notice::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--gold), rgba(255,168,0,.15));
}
.notice__ic {
  flex: none; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(255,168,0,.24), rgba(255,168,0,.07));
  border: 1px solid rgba(255,168,0,.34); color: var(--gold);
}
.notice__ic svg { width: 24px; height: 24px; }
.notice__title {
  font-family: var(--font-display); font-weight: 700; font-size: 1.06rem;
  color: var(--gold-l); margin: 0 0 .35rem; letter-spacing: -.01em;
}
.notice p { margin: 0; font-size: .95rem; color: var(--text-soft); line-height: 1.75; }
.notice strong { color: var(--gold-l); }
/* legacy shape: a bare svg straight inside .notice */
.notice > svg { flex: none; width: 22px; height: 22px; color: var(--gold); margin-top: 3px; }

/* ==========================================================================
   REVIEWS — two columns
   ========================================================================== */
/* ---- carousel shell ----
   Without JS this stays a plain 2-up grid; the script upgrades it in place. */
.quotes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-4); }

.carousel { position: relative; }
.carousel__viewport { overflow: hidden; padding: 4px; margin: -4px; }
/* The transition is set inline by the script so it can be suppressed for the
   silent reseat that makes the loop seamless — don't declare one here. */
.carousel .quotes {
  display: flex; grid-template-columns: none; gap: var(--sp-4);
  will-change: transform;
}
.carousel .quote { flex: 0 0 calc((100% - var(--sp-4)) / 2); min-width: 0; }

.carousel__controls {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-top: var(--sp-4);
}
.carousel__btn {
  width: 46px; height: 46px; flex: none; display: grid; place-items: center;
  border-radius: 50%; cursor: pointer; color: var(--text);
  border: 1.5px solid transparent;
  background:
    linear-gradient(var(--surface-2), var(--surface-2)) padding-box,
    linear-gradient(135deg, rgba(35,174,109,.55), rgba(255,168,0,.3)) border-box;
  transition: color var(--t-fast), transform var(--t-fast), box-shadow var(--t-med), background var(--t-med);
}
.carousel__btn:hover {
  color: #04140b; transform: translateY(-2px); box-shadow: var(--shadow-glow);
  background:
    linear-gradient(var(--emerald), var(--emerald-d)) padding-box,
    linear-gradient(135deg, var(--emerald), var(--gold)) border-box;
}
.carousel__btn svg { width: 21px; height: 21px; }

.carousel__dots { display: flex; align-items: center; gap: .5rem; }
.carousel__dot {
  width: 9px; height: 9px; padding: 0; border-radius: 50%; cursor: pointer;
  border: none; background: var(--border-2);
  transition: background var(--t-fast), width var(--t-med);
}
.carousel__dot:hover { background: var(--emerald-d); }
.carousel__dot[aria-current="true"] { width: 26px; border-radius: var(--r-pill); background: var(--emerald); }

.quote {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-4) 1.3rem;
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}
.quote:hover { transform: translateY(-5px); border-color: rgba(35,174,109,.5); box-shadow: var(--shadow-md); }
.quote::before {
  content: "\201C"; position: absolute; top: -1.1rem; right: .8rem;
  font-family: var(--font-display); font-size: 6rem; font-weight: 800;
  color: rgba(35,174,109,.09); line-height: 1; pointer-events: none;
}
.quote__stars { color: var(--gold); letter-spacing: .12em; font-size: 1rem; margin-bottom: .65rem; }
.quote__text { font-size: .97rem; color: var(--text); margin: 0 0 1.1rem; line-height: 1.7; position: relative; }
.quote__who { display: flex; align-items: center; gap: .75rem; }
.quote__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(140deg, var(--emerald), var(--emerald-d));
  color: #04140b; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: .85rem; flex: none;
}
.quote:nth-child(even) .quote__avatar { background: linear-gradient(140deg, var(--gold), var(--gold-d)); color: #241700; }
.quote__name { font-weight: 700; font-size: .93rem; margin: 0; color: var(--white); }
.quote__role { color: var(--muted); font-size: .81rem; margin: 0; }

/* rating summary bar */
.rating-bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .7rem 1.4rem;
  background: var(--surface-2); border: 1px solid var(--border-2); border-radius: var(--r-pill);
  padding: .85rem 1.6rem; margin: 0 auto var(--sp-5); width: fit-content; max-width: 100%;
}
.rating-bar__score { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--gold); line-height: 1; }
.rating-bar__stars { color: var(--gold); letter-spacing: .1em; }
.rating-bar__text { color: var(--text-soft); font-size: .9rem; }
