/* ═══════════════════════════════════════════════════════════
   مسار النمو — membership screens
   Same system as the homepage: Readex Pro, monochrome, sharp
   corners, 1px borders, dark mode driven by html.dark.
   ═══════════════════════════════════════════════════════════ */

:root {
  --g-bg: var(--abk-bg);
  --g-fg: var(--abk-fg);
  --g-muted: var(--abk-muted);
  --g-border: var(--abk-border);
  --g-surface: var(--abk-surface);
}

/* Woodmart pins a desktop min-width on body; min-width beats max-width, so it
   has to be zeroed or the RTL page renders shifted off-screen. */
/* Sticky headers die the moment any ancestor becomes a scroll container, and
   three of them were: Woodmart ships `body { overflow: hidden }`, and the
   shared LiteSpeed UCSS bundle carries the homepage's `.abk-page` clamp onto
   these pages too. Both are overridden here rather than clipped, because the
   layout was measured to fit (375px inside a 390px viewport) and therefore has
   nothing left to hide. */
html:has(body.abk-growth-page),
body.abk-growth-page,
body.abk-growth-page .abk-page {
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
}
html:has(body.abk-growth-page) { min-width: 0 !important; max-width: 100% !important; }
body.abk-growth-page {
  background: var(--g-bg) !important;
  margin: 0 !important; padding: 0 !important;
  min-width: 0 !important; max-width: 100% !important; width: auto !important;
}
/* Chaty numbers its container (#chaty-widget-0, -1, …), so the exact-id
   selector used before never matched and the widget stayed on the page. */
body.abk-growth-page [id^="chaty-widget"],
body.abk-growth-page .chaty-widget,
body.abk-growth-page .wpcf7-not-valid-tip { display: none !important; }

/* ── WhatsApp float ──
   Sits well clear of the hero's buttons and rises above the footer, monochrome
   in both themes so it reads as part of the page rather than a bolted-on
   plugin badge. */
.abk-wa {
  position: fixed; z-index: 70;
  inset-inline-start: 22px; inset-block-end: 26px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: var(--abk-fg); color: var(--abk-bg) !important;
  border: 1px solid var(--abk-fg);
  font-size: 14px; font-weight: 600; line-height: 1;
  box-shadow: 0 6px 24px var(--abk-shadow);
  transition: opacity .18s ease;
}
.abk-wa:hover { opacity: .85; color: var(--abk-bg) !important; }
.abk-wa svg { width: 18px; height: 18px; flex-shrink: 0; }

@media (max-width: 860px) {
  /* Collapse to a square on small screens so it never sits over the CTA. */
  .abk-wa { inset-inline-start: 16px; inset-block-end: 18px; padding: 13px; }
  .abk-wa-label { display: none; }
}

.abk-lp {
  background: var(--g-bg);
  color: var(--g-fg);
  font-family: "Readex Pro", system-ui, sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  direction: rtl;
  width: 100%; max-width: 100%;
  box-sizing: border-box;
  /* No overflow-x here on purpose: it would make this element a scroll
     container and break `position: sticky` on the header. Horizontal overflow
     is contained on html/body instead. */
}
.abk-lp *, .abk-lp *::before, .abk-lp *::after { box-sizing: border-box; border-radius: 0; font-family: inherit; }
/* Grid and flex children default to min-width:auto and refuse to shrink below
   their content — the usual source of a stray horizontal scrollbar on phones. */
.abk-lp .abk-grid-2 > *, .abk-lp .abk-grid-3 > *,
.abk-lp .abk-phases > *, .abk-lp .abk-plans > *,
.abk-lp .abk-ba > *, .abk-lp .abk-timeline > *,
.abk-lp .abk-tl-item > *, .abk-lp .abk-field-row > * { min-width: 0; }
.abk-lp img, .abk-lp svg { max-width: 100%; }
.abk-lp h1, .abk-lp h2, .abk-lp h3, .abk-lp p, .abk-lp li { overflow-wrap: break-word; }
.abk-lp h1, .abk-lp h2, .abk-lp h3, .abk-lp p, .abk-lp ul, .abk-lp ol, .abk-lp blockquote, .abk-lp figure { margin: 0; padding: 0; }
.abk-lp ul, .abk-lp ol { list-style: none; }
.abk-lp a { color: inherit; text-decoration: none; }
.abk-lp ::selection { background: var(--g-fg); color: var(--g-bg); }
.abk-lp .abk-ic { width: 18px; height: 18px; flex-shrink: 0; }

/* ── minimal header ──
   Replaces the Woodmart header, page-title band and breadcrumb on these pages:
   a landing page should offer exactly one way forward. */
.abk-mini-head {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 20px;
  background: var(--g-bg);
  border-bottom: 1px solid var(--g-border);
}
/* The bar itself spans the viewport so the sticky background is full-bleed;
   its contents stay on the same 1120px measure as every section below. */
.abk-mini-head > * { flex-shrink: 0; }
.abk-mini-head { padding-inline: max(20px, calc((100% - 1120px) / 2)); }
.abk-mini-logo { display: inline-flex; align-items: center; }
.abk-mini-logo img {
  height: 40px; width: auto; max-width: 190px; display: block;
  /* The brand mark is navy + teal; the funnel is strictly monochrome and has to
     survive both themes, so it is flattened rather than swapped for a variant. */
  filter: grayscale(1) brightness(0);
}
html.dark .abk-mini-logo img { filter: grayscale(1) brightness(0) invert(1); }

.abk-lp-toggle {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 15px 9px 13px;
  background: transparent; border: 1px solid var(--g-border);
  color: var(--g-fg); cursor: pointer;
  font-family: inherit; font-size: 13px; font-weight: 500; line-height: 1;
  transition: border-color .2s ease, background-color .2s ease;
}
.abk-lp-toggle:hover { border-color: var(--g-fg); background: var(--g-surface); }
.abk-lp-toggle:focus-visible { outline: 2px solid var(--g-fg); outline-offset: 2px; }
.abk-lp-toggle-ic { display: inline-flex; }
.abk-lp-toggle .abk-ic { width: 16px; height: 16px; transition: transform .35s cubic-bezier(.2,.7,.3,1); }
.abk-lp-toggle:hover .abk-ic { transform: rotate(-18deg); }

/* Icon and label always name the destination mode, never the current one. */
.abk-lp-toggle .abk-ic-sun,
.abk-lp-toggle .abk-t-dark { display: none; }
html.dark .abk-lp-toggle .abk-ic-moon,
html.dark .abk-lp-toggle .abk-t-light { display: none; }
html.dark .abk-lp-toggle .abk-ic-sun { display: block; }
html.dark .abk-lp-toggle .abk-t-dark { display: inline; }

@media (max-width: 520px) {
  .abk-lp-toggle { padding: 10px; gap: 0; }
  .abk-lp-toggle-txt { display: none !important; }
}

/* ── portraits ── */
.abk-avatar {
  display: inline-block; overflow: hidden; border-radius: 50%;
  border: 1px solid var(--g-border); background: var(--g-surface);
  line-height: 0;
}
.abk-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.abk-avatar-lg { width: 104px; height: 104px; margin-bottom: 20px; }
.abk-avatar-xl { width: 168px; height: 168px; margin: 0 auto 26px; }
@media (max-width: 700px) {
  .abk-avatar-lg { width: 92px; height: 92px; }
  .abk-avatar-xl { width: 132px; height: 132px; }
}

/* ── type scale ── */
.abk-h2      { font-size: clamp(26px, 4vw, 42px); font-weight: 700; line-height: 1.35; letter-spacing: -.01em; }
.abk-h2-lg   { font-size: clamp(30px, 5.2vw, 56px); font-weight: 700; line-height: 1.3; letter-spacing: -.02em; }
.abk-h3      { font-size: clamp(17px, 2vw, 20px); font-weight: 600; line-height: 1.55; display: flex; align-items: center; gap: 10px; }
.abk-kicker,
.abk-kicker-line { font-size: 12px; letter-spacing: .14em; color: var(--g-muted); text-transform: uppercase; font-weight: 500; }
.abk-p-muted { color: var(--g-muted); font-size: 15px; line-height: 1.9; }
.abk-p-xs    { font-size: 13px; }
.abk-p-fg    { color: var(--g-fg); }
.abk-p-lg    { font-size: 18px; }
.abk-p-bold  { font-weight: 600; }
.abk-h-fg    { color: var(--g-fg); display: block; }
.abk-h-muted { color: var(--g-muted); display: block; }

/* ── layout ── */
.abk-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 110px) 20px;
  border-top: 1px solid var(--g-border);
}
.abk-sec-head { max-width: 760px; margin: 0 auto clamp(32px, 5vw, 56px); text-align: center; }
.abk-sec-head-tight { margin-bottom: 28px; }
.abk-sec-head .abk-kicker { display: block; margin-bottom: 14px; }
.abk-sec-sub { color: var(--g-muted); font-size: 16px; line-height: 1.9; margin-top: 16px !important; }
.abk-sec-foot { max-width: 720px; margin: clamp(28px, 4vw, 44px) auto 0 !important; text-align: center; color: var(--g-muted); font-size: 16px; }
.abk-sec-foot strong { color: var(--g-fg); }

/* An inverse band breaks a long page into acts without introducing colour.
   Its surface is dark in BOTH themes, so its type is hard-coded to white
   rather than following --abk-fg: the theme's monochrome layer publishes
   heading colours with !important, and in light mode that painted #111 text
   onto a #111 band — the heading vanished entirely. Redefining the local
   scale here also fixes every child (before/after lists, guarantee) at once. */
.abk-inverse {
  --g-fg: #ffffff;
  --g-muted: rgba(255, 255, 255, .72);
  --g-border: rgba(255, 255, 255, .18);
  --g-surface: rgba(255, 255, 255, .06);
  background: var(--abk-inverse-bg);
  color: #ffffff;
  max-width: none;
  border-top: 0;
}
.abk-inverse .abk-h2,
.abk-inverse .abk-h2-lg,
.abk-inverse .abk-h3,
.abk-inverse .abk-h-fg { color: #ffffff !important; }
.abk-inverse .abk-kicker,
.abk-inverse .abk-sec-sub,
.abk-inverse .abk-stat-lbl,
.abk-inverse .abk-p-muted,
.abk-inverse .abk-h-muted { color: rgba(255, 255, 255, .72) !important; }

/* ── hero ── */
.abk-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 62px) 20px clamp(44px, 6vw, 72px);
  text-align: center;
}
/* The short hero sits directly under a slim header with no page-title band
   between them, so it does not need the full-page hero's breathing room. */
.abk-hero-sm { padding-top: clamp(30px, 4.5vw, 54px); padding-bottom: clamp(30px, 4vw, 48px); }
.abk-hero-title {
  font-size: clamp(32px, 6.4vw, 68px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.025em;
  margin: 20px 0 !important;
}
.abk-hero-sub { color: var(--g-muted); font-size: clamp(15px, 1.9vw, 18px); line-height: 1.95; max-width: 660px; margin: 0 auto !important; }
.abk-hero-sub strong { color: var(--g-fg); font-weight: 600; }
.abk-hero-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 34px; }
.abk-hero-note { margin-top: 24px !important; font-size: 13px; color: var(--g-muted); }
/* The label mixes bare text with <strong>, so a flex container turns each run
   into its own anonymous item laid out in one unwrappable row — that row was
   what forced the whole document wider than a phone screen. Wrapping is
   mandatory here, not cosmetic. */
.abk-seats {
  display: inline-flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 4px 9px;
  border: 1px solid var(--g-border); padding: 9px 16px;
  max-width: 100%;
}
.abk-seats strong { color: var(--g-fg); }
.abk-dot { width: 7px; height: 7px; background: var(--abk-success); border-radius: 50%; flex-shrink: 0; animation: abk-pulse 2.4s ease-in-out infinite; }
@keyframes abk-pulse { 0%,100% { opacity: 1 } 50% { opacity: .35 } }

.abk-success-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; margin-bottom: 24px;
  border: 1px solid var(--g-fg); color: var(--g-fg);
}
.abk-success-mark .abk-ic { width: 26px; height: 26px; }

/* ── buttons ──
   Colours carry !important because the theme's monochrome layer sets
   `--wd-link-color` globally with !important, and a solid button is the one
   place on the page where the label must NOT follow the link colour — losing
   that battle renders the text in the same value as its own background. */
.abk-lp .abk-btn-solid, .abk-lp .abk-btn-outline,
.abk-btn-solid, .abk-btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px; font-size: 15px; font-weight: 600; line-height: 1;
  border: 1px solid var(--g-fg); cursor: pointer; text-decoration: none;
  transition: background .18s ease, color .18s ease, opacity .18s ease;
}
.abk-lp .abk-btn-solid,
.abk-lp a.abk-btn-solid,
.abk-lp .abk-btn-solid:visited {
  background: var(--g-fg) !important;
  color: var(--g-bg) !important;
  border-color: var(--g-fg) !important;
}
.abk-lp .abk-btn-solid:hover,
.abk-lp a.abk-btn-solid:hover {
  background: var(--g-fg) !important;
  color: var(--g-bg) !important;
  opacity: .84;
}
.abk-lp .abk-btn-solid .abk-ic { color: var(--g-bg) !important; }

.abk-lp .abk-btn-outline,
.abk-lp a.abk-btn-outline,
.abk-lp .abk-btn-outline:visited {
  background: transparent !important;
  color: var(--g-fg) !important;
  border-color: var(--g-fg) !important;
}
.abk-lp .abk-btn-outline:hover,
.abk-lp a.abk-btn-outline:hover {
  background: var(--g-fg) !important;
  color: var(--g-bg) !important;
}
.abk-lp .abk-btn-outline:hover .abk-ic { color: var(--g-bg) !important; }
.abk-btn-block { display: flex; width: 100%; }
.abk-btn-sm { padding: 10px 18px; font-size: 14px; margin-top: 14px; }
.abk-btn-solid .abk-ic, .abk-btn-outline .abk-ic { width: 16px; height: 16px; }

/* ── grids & cards ── */
.abk-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--g-border); border: 1px solid var(--g-border); }
.abk-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--g-border); border: 1px solid var(--g-border); }
.abk-card, .abk-pain { background: var(--g-bg); padding: clamp(24px, 3.2vw, 36px); }
.abk-card-ic { display: inline-flex; margin-bottom: 18px; color: var(--g-fg); }
.abk-card-ic .abk-ic { width: 22px; height: 22px; }
.abk-card .abk-h3, .abk-pain .abk-h3 { margin-bottom: 12px !important; }
.abk-pain { position: relative; }

.abk-ghost-num {
  display: block; font-size: 44px; font-weight: 700; line-height: 1;
  color: var(--g-border); margin-bottom: 14px; letter-spacing: -.03em;
}

/* ── before / after ── */
.abk-ba { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.16); max-width: 980px; margin: 0 auto; }
.abk-ba-col { background: var(--abk-inverse-bg); padding: clamp(24px, 3.4vw, 40px); }
.abk-ba-label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.72) !important; margin-bottom: 20px !important; }
.abk-ba-col ul { display: grid; gap: 14px; }
.abk-ba-col li { font-size: 15px; line-height: 1.8; padding-inline-start: 22px; position: relative; }
.abk-ba-col li::before { content: ""; position: absolute; inset-inline-start: 0; top: 12px; width: 10px; height: 1px; background: currentColor; opacity: .55; }
.abk-ba-before li { color: rgba(255,255,255,.72) !important; }
.abk-ba-after  li { color: #ffffff !important; }
.abk-ba-after  li strong { font-weight: 700; }

/* ── phases ── */
.abk-phases { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--g-border); border: 1px solid var(--g-border); }
.abk-phase { background: var(--g-bg); padding: clamp(20px, 2.4vw, 30px); }
.abk-phase-title { font-size: 16px; font-weight: 600; margin-bottom: 10px !important; }
.abk-phase-desc { font-size: 14px; line-height: 1.85; color: var(--g-muted); }

/* ── timeline ──
   `.abk-lp ol` in the reset above is MORE specific than a single class, so its
   `margin: 0` was beating `margin: 0 auto` and pinning the whole block to the
   inline-start edge instead of centring it under the heading. */
.abk-lp .abk-timeline {
  max-width: 820px;
  margin-inline: auto;
  display: grid; gap: 1px;
  background: var(--g-border); border: 1px solid var(--g-border);
}
.abk-tl-item { background: var(--g-bg); display: grid; grid-template-columns: 190px 1fr; gap: 24px; padding: clamp(22px, 3vw, 34px); }
.abk-tl-when { font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--g-muted); padding-top: 3px; }
.abk-tl-body .abk-h3 { margin-bottom: 8px !important; }
.abk-tl-out { display: flex; align-items: flex-start; gap: 9px; margin-top: 14px !important; font-size: 14px; font-weight: 600; color: var(--g-fg); }
.abk-tl-out .abk-ic { width: 16px; height: 16px; margin-top: 4px; }

/* ── bio ── */
.abk-bio { max-width: 760px; margin: 0 auto; display: grid; gap: 18px; text-align: center; }
.abk-quote {
  border-inline-start: 2px solid var(--g-fg);
  padding: 4px 20px; margin: 10px 0 !important; text-align: start;
  font-size: 17px; line-height: 1.85; font-weight: 500; color: var(--g-fg);
}

/* ── trust strip ──
   Attached to the hero rather than floating as its own section: it is a
   caption for the person above it, not a separate chapter. */
.abk-trust {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px clamp(38px, 6vw, 64px);
  text-align: center;
}
.abk-trust-label {
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--g-muted); margin-bottom: 16px !important;
}
.abk-trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--g-border); border: 1px solid var(--g-border);
}
@media (max-width: 860px) { .abk-trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── stats ── */
.abk-stats-inline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--g-border); border: 1px solid var(--g-border); margin-top: clamp(36px, 5vw, 56px); }
.abk-stat { background: var(--g-bg); padding: clamp(20px, 3vw, 32px); text-align: center; }
.abk-stat-num { font-size: clamp(22px, 3vw, 32px); font-weight: 700; line-height: 1.2; letter-spacing: -.02em; }
.abk-stat-lbl { font-size: 12.5px; color: var(--g-muted); margin-top: 8px !important; }

/* ── pricing ── */
.abk-banner {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  max-width: 760px; margin: 0 auto clamp(28px, 4vw, 40px);
  border: 1px solid var(--g-fg); padding: 16px 22px; font-size: 15px;
}
.abk-banner p { margin: 0 !important; }

.abk-plans { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--g-border); border: 1px solid var(--g-border); max-width: 980px; margin: 0 auto; }
.abk-plan { background: var(--g-bg); padding: clamp(28px, 3.6vw, 44px); display: flex; flex-direction: column; position: relative; }
.abk-plan-featured { background: var(--g-surface); }
.abk-plan-badge {
  position: absolute; inset-block-start: 0; inset-inline-end: 0;
  background: var(--g-fg); color: var(--g-bg);
  font-size: 11.5px; font-weight: 600; letter-spacing: .06em; padding: 7px 14px;
}
.abk-plan-name { font-size: 20px; font-weight: 700; }
.abk-plan-desc { font-size: 14px; color: var(--g-muted); margin: 8px 0 22px !important; }
.abk-plan-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-bottom: 6px !important; }
.abk-plan-price .abk-num { font-size: clamp(34px, 4.6vw, 48px); font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.abk-plan-price .abk-cur { font-size: 14px; color: var(--g-muted); }
.abk-plan-price .abk-was { font-size: 19px; color: var(--g-muted); text-decoration: line-through; text-decoration-thickness: 1px; }
.abk-plan-sub { font-size: 13.5px; color: var(--g-muted); margin-bottom: 22px !important; }
.abk-plan-sub strong { color: var(--g-fg); }
.abk-plan .abk-btn-block { margin-bottom: 24px; }
.abk-plan-list { display: grid; gap: 12px; margin-bottom: 20px !important; }
.abk-plan-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.7; }
.abk-plan-list .abk-ic { width: 16px; height: 16px; margin-top: 5px; }
.abk-plan-list .abk-off { color: var(--g-muted); }
.abk-plan-list .abk-hl strong { font-weight: 600; }
.abk-plan-note { font-size: 12.5px; color: var(--g-muted); margin-top: auto !important; padding-top: 10px; }
.abk-pay-note { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 26px !important; font-size: 13px; color: var(--g-muted); text-align: center; }

/* ── guarantee ── */
.abk-guarantee { max-width: 720px; margin: 0 auto; text-align: center; }
.abk-guar-ic { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border: 1px solid rgba(255,255,255,.28); margin-bottom: 22px; }
.abk-guar-ic .abk-ic { width: 24px; height: 24px; }

/* ── fit / not fit ── */
.abk-fit { background: var(--g-bg); padding: clamp(24px, 3.2vw, 38px); }
.abk-fit-label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--g-muted); margin-bottom: 20px !important; }
.abk-fit ul { display: grid; gap: 14px; }
.abk-fit li { font-size: 15px; line-height: 1.75; padding-inline-start: 26px; position: relative; }
.abk-fit-no li  { color: var(--g-muted); }
.abk-fit-no li::before  { content: "✕"; position: absolute; inset-inline-start: 0; font-size: 13px; }
.abk-fit-yes li::before { content: "✓"; position: absolute; inset-inline-start: 0; font-size: 13px; font-weight: 700; }

/* ── FAQ ── */
.abk-faq { max-width: 820px; margin: 0 auto; border: 1px solid var(--g-border); }
.abk-faq-item { border-bottom: 1px solid var(--g-border); }
.abk-faq-item:last-child { border-bottom: 0; }
.abk-faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px clamp(18px, 2.4vw, 28px); cursor: pointer; list-style: none;
  font-size: 16px; font-weight: 600; line-height: 1.6;
}
.abk-faq-item summary::-webkit-details-marker { display: none; }
.abk-faq-sign { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.abk-faq-sign::before, .abk-faq-sign::after { content: ""; position: absolute; background: var(--g-fg); transition: transform .2s ease; }
.abk-faq-sign::before { inset-inline-start: 0; top: 6.5px; width: 14px; height: 1.5px; }
.abk-faq-sign::after  { inset-inline-start: 6.5px; top: 0; width: 1.5px; height: 14px; }
.abk-faq-item[open] .abk-faq-sign::after { transform: scaleY(0); }
.abk-faq-item p { padding: 0 clamp(18px, 2.4vw, 28px) 22px; color: var(--g-muted); font-size: 15px; line-height: 1.9; }

/* ── final ── */
.abk-final { text-align: center; }
.abk-final-note { margin-top: 22px !important; font-size: 13px; color: var(--g-muted); }

/* ── forms ── */
.abk-form-wrap { max-width: 640px; margin: 0 auto; border: 1px solid var(--g-border); padding: clamp(26px, 4vw, 44px); background: var(--g-bg); }
.abk-form { display: grid; gap: 18px; }
.abk-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.abk-field { display: grid; gap: 8px; font-size: 14px; font-weight: 500; }
.abk-field span em { font-style: normal; color: var(--g-muted); font-weight: 400; }
.abk-lp .abk-field input,
.abk-lp .abk-field select {
  width: 100%; padding: 13px 14px; font-size: 15px; font-family: inherit;
  line-height: 1.6;
  /* Woodmart pins every form control to a fixed `height: var(--wd-form-height)`.
     Combined with our own vertical padding the content box collapses and the
     label is squeezed to an unreadable sliver — this is what made the revenue
     dropdown look empty. Height has to come from the padding instead. */
  height: auto !important;
  min-height: 48px;
  background: var(--g-bg) !important;
  color: var(--g-fg) !important;
  border: 1px solid var(--g-border); border-radius: 0; box-shadow: none;
  transition: border-color .18s ease;
}
/* Native and themed chrome stripped so the caret can sit on the inline-end
   side (the left, in RTL) with the label reading from the inline-start edge. */
.abk-lp .abk-field select {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  padding-inline-start: 14px;
  padding-inline-end: 42px;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
                    linear-gradient(135deg, currentColor 50%, transparent 50%) !important;
  background-position: 17px calc(50% - 2px), 22px calc(50% - 2px) !important;
  background-size: 6px 6px, 6px 6px !important;
  background-repeat: no-repeat !important;
  text-align: start;
  cursor: pointer;
}
/* Native option lists take system colours unless told otherwise — unreadable
   against the dark theme without this. */
.abk-lp .abk-field select option {
  background: var(--g-bg);
  color: var(--g-fg);
}
.abk-lp .abk-field input:focus,
.abk-lp .abk-field select:focus { outline: none; border-color: var(--g-fg); }
.abk-lp .abk-field input::placeholder { color: var(--g-muted); opacity: .75; }
.abk-form-note { display: flex; align-items: flex-start; gap: 9px; font-size: 12.5px; color: var(--g-muted); line-height: 1.7; }
.abk-form-note .abk-ic { width: 15px; height: 15px; margin-top: 3px; }
/* Honeypot — hidden from people but not via display:none, which bots check for.
   Clipped in place rather than parked at -9999px: now that the page no longer
   clips its own overflow, a far off-screen offset could grow the scroll area. */
.abk-hp {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}

.abk-alert { display: flex; gap: 12px; border: 1px solid var(--g-border); padding: 18px 20px; margin-bottom: 22px; font-size: 14.5px; line-height: 1.75; }
.abk-alert p { margin: 4px 0 0 !important; color: var(--g-muted); font-size: 14px; }
.abk-alert .abk-ic { margin-top: 4px; }
.abk-alert-ok  { border-color: var(--abk-success); }
.abk-alert-ok .abk-ic  { color: var(--abk-success); }
.abk-alert-err { border-color: var(--abk-danger); }
.abk-alert-err .abk-ic { color: var(--abk-danger); }

/* ── dashboard ── */
.abk-lp .abk-dash { max-width: 1120px; margin: 0 auto; padding: 0 20px clamp(56px, 8vw, 90px); }
.abk-dash-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 18px; padding: clamp(40px, 6vw, 70px) 0 clamp(24px, 3vw, 34px); }
.abk-dash-head .abk-kicker { display: block; margin-bottom: 10px; }
.abk-dash-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.abk-badge { font-size: 12px; font-weight: 600; padding: 7px 14px; border: 1px solid var(--g-border); color: var(--g-muted); }
.abk-badge-ok { border-color: var(--abk-success); color: var(--abk-success); }
.abk-badge-warn { border-color: var(--abk-danger); color: var(--abk-danger); }
.abk-dash-alert { margin-bottom: 24px; }

.abk-dash-card { border: 1px solid var(--g-border); padding: clamp(22px, 3vw, 32px); background: var(--g-bg); }
.abk-dash-card .abk-h3 { margin-bottom: 14px !important; }
.abk-dash-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }

.abk-progress-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.abk-progress-head .abk-kicker { display: block; margin-bottom: 8px; }
.abk-progress-pct { font-size: clamp(30px, 4vw, 44px); font-weight: 700; line-height: 1; letter-spacing: -.03em; }
.abk-progress-pct span { font-size: 16px; color: var(--g-muted); margin-inline-start: 2px; }
.abk-bar { height: 4px; background: var(--g-border); overflow: hidden; }
.abk-bar span { display: block; height: 100%; background: var(--g-fg); transition: width .6s ease; }
.abk-progress-legend { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 16px; font-size: 12.5px; color: var(--g-muted); }
.abk-progress-legend .on { color: var(--g-fg); font-weight: 600; }

.abk-session-list { display: grid; gap: 14px; }
.abk-session-list li { display: grid; gap: 3px; padding-bottom: 14px; border-bottom: 1px solid var(--g-border); font-size: 14.5px; }
.abk-session-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.abk-session-when { font-size: 12.5px; color: var(--g-muted); }
.abk-session-title { font-weight: 600; }
.abk-session-list a { font-size: 13px; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.abk-kv { display: grid; gap: 11px; margin-bottom: 6px !important; }
.abk-kv li { display: flex; justify-content: space-between; gap: 14px; font-size: 14px; padding-bottom: 11px; border-bottom: 1px solid var(--g-border); }
.abk-kv li:last-child { border-bottom: 0; }
.abk-kv span { color: var(--g-muted); }

/* ═══════════════════════════════════════════════════════════
   Checkout
   ═══════════════════════════════════════════════════════════ */
.abk-co { max-width: 1060px; margin: 0 auto; padding: clamp(32px, 5vw, 60px) 20px clamp(56px, 8vw, 90px); }
.abk-co-head { text-align: center; margin-bottom: clamp(28px, 4vw, 44px); }
.abk-co-head .abk-kicker { display: block; margin-bottom: 12px; }
.abk-co-head .abk-sec-sub { margin-top: 10px !important; }

/* Form first on desktop (it is the task); summary first on mobile (a buyer
   wants the price they just tapped confirmed before being asked for a card). */
.abk-co-grid { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.abk-co-form { order: 1; }
.abk-co-summary { order: 2; position: sticky; top: 88px; }

.abk-co-form, .abk-co-summary {
  border: 1px solid var(--g-border);
  padding: clamp(22px, 3vw, 32px);
  background: var(--g-bg);
}
.abk-co-summary { background: var(--g-surface); }
.abk-co-form .abk-h3, .abk-co-summary .abk-h3 { margin-bottom: 20px !important; }
.abk-co-pay-title { margin-top: 30px !important; }

.abk-co-plan { display: grid; gap: 11px; padding-bottom: 18px; border-bottom: 1px solid var(--g-border); }
.abk-co-plan-row { display: flex; justify-content: space-between; gap: 12px; font-size: 14.5px; }
.abk-co-plan-row span:first-child { color: var(--g-muted); }
.abk-co-plan-row .abk-was { text-decoration: line-through; text-decoration-thickness: 1px; color: var(--g-muted); }
.abk-co-save strong { font-weight: 700; }

.abk-co-total { padding: 18px 0; border-bottom: 1px solid var(--g-border); }
.abk-co-total > span { font-size: 13px; color: var(--g-muted); }
.abk-co-amount { font-size: clamp(30px, 4vw, 40px); font-weight: 700; letter-spacing: -.03em; line-height: 1.2; margin: 4px 0 6px !important; }
.abk-co-amount span { font-size: 15px; font-weight: 500; color: var(--g-muted); }

.abk-co-includes { display: grid; gap: 11px; padding: 18px 0; border-bottom: 1px solid var(--g-border); }
.abk-co-includes li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; line-height: 1.65; }
.abk-co-includes .abk-ic { width: 15px; height: 15px; margin-top: 4px; }

.abk-co-guarantee { display: flex; gap: 10px; padding-top: 18px; font-size: 13.5px; line-height: 1.75; color: var(--g-muted); }
.abk-co-guarantee .abk-ic { width: 17px; height: 17px; margin-top: 3px; color: var(--g-fg); }
.abk-co-guarantee strong { color: var(--g-fg); }

/* Stripe renders the card fields inside its own iframes; this box only has to
   reserve their space and never flash empty. */
.abk-co-element { min-height: 190px; }
.abk-co-loading { font-size: 14px; color: var(--g-muted); padding: 22px 0; text-align: center; }

.abk-co-error {
  border: 1px solid var(--abk-danger); color: var(--abk-danger);
  padding: 13px 16px; margin-top: 18px; font-size: 14px; line-height: 1.7;
}

.abk-co-submit { margin-top: 22px; gap: 11px; }
.abk-co-submit:disabled { opacity: .5; cursor: not-allowed; }
.abk-co-spinner {
  width: 15px; height: 15px; flex-shrink: 0;
  border: 2px solid currentColor; border-top-color: transparent; border-radius: 50%;
  animation: abk-spin .7s linear infinite;
}
@keyframes abk-spin { to { transform: rotate(360deg); } }

.abk-co-secure { display: flex; align-items: flex-start; gap: 9px; margin-top: 16px !important; font-size: 12.5px; line-height: 1.75; color: var(--g-muted); }
.abk-co-secure .abk-ic { width: 15px; height: 15px; margin-top: 3px; }
.abk-co-secure strong { color: var(--g-fg); }
.abk-co-terms { margin-top: 12px !important; font-size: 12px; line-height: 1.8; color: var(--g-muted); }
.abk-co-terms a { text-decoration: underline; text-underline-offset: 3px; }
.abk-co-terms a:hover { color: var(--g-fg); }

@media (max-width: 900px) {
  .abk-co-grid { grid-template-columns: 1fr; }
  .abk-co-summary { order: 1; position: static; }
  .abk-co-form { order: 2; }
}

/* ── footer ── */
.abk-foot { border-top: 1px solid var(--g-border); }
.abk-foot-in { max-width: 1120px; margin: 0 auto; padding: 34px 20px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.abk-foot-copy { font-size: 13px; color: var(--g-muted); }
.abk-foot-links { display: flex; gap: 22px; font-size: 13px; color: var(--g-muted); }
.abk-foot-links a:hover { color: var(--g-fg); }

/* ═══════════════════════════════════════════════════════════
   Motion
   Every effect below is built from what this design system already
   owns — a 1px border, a flat surface, a hairline rule — rather than
   shadows or colour, so it reads the same in both themes. All of it is
   scoped to html.abk-js: if the script never runs, the page is simply
   static and fully visible.
   ═══════════════════════════════════════════════════════════ */

/* ── reveal on scroll ── */
html.abk-js .abk-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
html.abk-js .abk-reveal.abk-in { opacity: 1; transform: none; }

/* Children rise in sequence rather than as one block — the eye follows the
   order the copy is meant to be read in. */
html.abk-js .abk-reveal .abk-card,
html.abk-js .abk-reveal .abk-pain,
html.abk-js .abk-reveal .abk-phase,
html.abk-js .abk-reveal .abk-tl-item,
html.abk-js .abk-reveal .abk-plan,
html.abk-js .abk-reveal .abk-trust-grid .abk-stat,
html.abk-js .abk-reveal .abk-faq-item {
  opacity: 0; transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease, background-color .28s ease, border-color .28s ease;
}
html.abk-js .abk-reveal.abk-in .abk-card,
html.abk-js .abk-reveal.abk-in .abk-pain,
html.abk-js .abk-reveal.abk-in .abk-phase,
html.abk-js .abk-reveal.abk-in .abk-tl-item,
html.abk-js .abk-reveal.abk-in .abk-plan,
html.abk-js .abk-reveal.abk-in .abk-trust-grid .abk-stat,
html.abk-js .abk-reveal.abk-in .abk-faq-item { opacity: 1; transform: none; }

html.abk-js .abk-reveal.abk-in > * > :nth-child(1),
html.abk-js .abk-reveal.abk-in > * > :nth-child(2) { transition-delay: .04s; }
html.abk-js .abk-reveal.abk-in > * > :nth-child(3),
html.abk-js .abk-reveal.abk-in > * > :nth-child(4) { transition-delay: .12s; }
html.abk-js .abk-reveal.abk-in > * > :nth-child(5),
html.abk-js .abk-reveal.abk-in > * > :nth-child(6) { transition-delay: .2s; }
html.abk-js .abk-reveal.abk-in > * > :nth-child(n+7) { transition-delay: .26s; }

/* ── cards: a rule that draws itself down the leading edge ── */
.abk-card, .abk-pain, .abk-fit, .abk-phase {
  position: relative;
  transition: background-color .28s ease;
}
.abk-card::after, .abk-pain::after, .abk-fit::after, .abk-phase::after {
  content: ""; position: absolute;
  inset-block: 0; inset-inline-start: 0; width: 2px;
  background: var(--g-fg);
  transform: scaleY(0); transform-origin: top;
  transition: transform .34s cubic-bezier(.2,.7,.3,1);
}
.abk-card:hover, .abk-pain:hover, .abk-fit:hover, .abk-phase:hover { background-color: var(--g-surface); }
.abk-card:hover::after, .abk-pain:hover::after, .abk-fit:hover::after, .abk-phase:hover::after { transform: scaleY(1); }

.abk-card-ic { transition: transform .3s cubic-bezier(.2,.7,.3,1); }
.abk-card:hover .abk-card-ic { transform: translateY(-3px); }

/* The ghost numeral steps forward instead of changing colour. */
.abk-ghost-num { transition: color .3s ease, transform .35s cubic-bezier(.2,.7,.3,1); }
.abk-pain:hover .abk-ghost-num,
.abk-phase:hover .abk-ghost-num { color: var(--g-muted); transform: translateY(-2px); }

/* ── timeline ── */
.abk-tl-item { transition: background-color .28s ease; }
.abk-tl-item:hover { background-color: var(--g-surface); }
.abk-tl-when { transition: transform .3s cubic-bezier(.2,.7,.3,1); }
.abk-tl-item:hover .abk-tl-when { transform: translateX(4px); }
.abk-tl-out .abk-ic { transition: transform .3s ease; }
.abk-tl-item:hover .abk-tl-out .abk-ic { transform: scale(1.18); }

/* ── pricing ── */
.abk-plan { transition: background-color .28s ease, transform .34s cubic-bezier(.2,.7,.3,1); }
.abk-plan:hover { transform: translateY(-4px); }
.abk-plan:hover:not(.abk-plan-featured) { background-color: var(--g-surface); }
.abk-plan-list li { transition: transform .25s ease; }
.abk-plan:hover .abk-plan-list li { transform: translateX(2px); }

/* ── stats ── */
.abk-stat { transition: background-color .28s ease; }
.abk-stat:hover { background-color: var(--g-surface); }
.abk-stat-num { transition: transform .3s cubic-bezier(.2,.7,.3,1); }
.abk-stat:hover .abk-stat-num { transform: scale(1.05); }

/* ── buttons: the arrow leads the way it points (inline-start, i.e. left in RTL) ── */
.abk-lp .abk-btn-solid .abk-ic,
.abk-lp .abk-btn-outline .abk-ic { transition: transform .28s cubic-bezier(.2,.7,.3,1); }
.abk-lp .abk-btn-solid:hover .abk-ic,
.abk-lp .abk-btn-outline:hover .abk-ic { transform: translateX(-4px); }

/* ── FAQ ── */
.abk-faq-item summary { transition: background-color .22s ease; }
.abk-faq-item summary:hover { background-color: var(--g-surface); }
.abk-faq-item[open] summary { background-color: var(--g-surface); }

/* ── portraits & links ── */
.abk-avatar img { transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.abk-avatar:hover img { transform: scale(1.06); }

.abk-foot-links a { position: relative; transition: color .22s ease; }
.abk-foot-links a::after {
  content: ""; position: absolute; inset-inline: 0; bottom: -3px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: inline-end;
  transition: transform .28s cubic-bezier(.2,.7,.3,1);
}
.abk-foot-links a:hover::after { transform: scaleX(1); }

.abk-mini-logo img { transition: opacity .22s ease; }
.abk-mini-logo:hover img { opacity: .7; }

/* Motion is decoration here; anyone who has asked for less gets none of it,
   while every hover state that conveys affordance (background, border) stays. */
@media (prefers-reduced-motion: reduce) {
  html.abk-js .abk-reveal,
  html.abk-js .abk-reveal .abk-card,
  html.abk-js .abk-reveal .abk-pain,
  html.abk-js .abk-reveal .abk-phase,
  html.abk-js .abk-reveal .abk-tl-item,
  html.abk-js .abk-reveal .abk-plan,
  html.abk-js .abk-reveal .abk-trust-grid .abk-stat,
  html.abk-js .abk-reveal .abk-faq-item {
    opacity: 1; transform: none; transition: none;
  }
  .abk-lp *, .abk-lp *::after, .abk-lp *::before {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
  .abk-plan:hover, .abk-avatar:hover img, .abk-stat:hover .abk-stat-num { transform: none; }
  .abk-dot { animation: none; }
}
/* ── responsive ── */
@media (max-width: 1024px) {
  .abk-phases { grid-template-columns: repeat(2, 1fr); }
  .abk-grid-3, .abk-dash-grid { grid-template-columns: repeat(2, 1fr); }
  .abk-dash-grid { gap: 16px; }
}
@media (max-width: 860px) {
  .abk-plans { grid-template-columns: 1fr; }
  .abk-plan-featured { order: -1; }
  .abk-ba { grid-template-columns: 1fr; }
  .abk-stats-inline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .abk-grid-2, .abk-grid-3, .abk-phases, .abk-dash-grid { grid-template-columns: 1fr; }
  .abk-tl-item { grid-template-columns: 1fr; gap: 10px; }
  .abk-field-row { grid-template-columns: 1fr; }
  .abk-hero-btns { flex-direction: column; }
  .abk-hero-btns .abk-btn-solid, .abk-hero-btns .abk-btn-outline { width: 100%; }
  .abk-banner { flex-direction: column; text-align: center; }
  .abk-dash-head { align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════
   Welcome page (post-payment)
   Restrained on purpose: this screen follows a four-figure
   charge, and heavy decoration here reads as cheap. Motion is
   limited to things that carry meaning — a mark being drawn,
   a clock ticking, a bar filling.
   ═══════════════════════════════════════════════════════════ */

.abk-tw { max-width: 1120px; margin: 0 auto; padding: 0 20px clamp(56px, 8vw, 96px); }

/* ── confirmation ── */
.abk-tw-hero { text-align: center; padding: clamp(40px, 6vw, 72px) 0 clamp(28px, 4vw, 44px); }
.abk-tw-check { display: inline-flex; width: 62px; height: 62px; margin-bottom: 22px; }
.abk-tw-check svg { width: 100%; height: 100%; }
.abk-tw-check-ring,
.abk-tw-check-mark { stroke: var(--g-fg); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
html.abk-js .abk-tw-check-ring { stroke-dasharray: 152; stroke-dashoffset: 152; animation: abk-draw .7s cubic-bezier(.2,.7,.3,1) forwards; }
html.abk-js .abk-tw-check-mark { stroke-dasharray: 40; stroke-dashoffset: 40; animation: abk-draw .45s cubic-bezier(.2,.7,.3,1) .55s forwards; }
@keyframes abk-draw { to { stroke-dashoffset: 0; } }

.abk-tw-title {
  font-size: clamp(28px, 4.6vw, 46px); font-weight: 700; line-height: 1.32;
  letter-spacing: -.02em; margin: 14px 0 !important;
}
.abk-tw-seat {
  display: inline-block; margin-top: 8px !important;
  border: 1px solid var(--g-border); padding: 8px 16px;
  font-size: 13px; color: var(--g-muted);
}
.abk-tw-seat strong { color: var(--g-fg); }

/* ── countdown ── */
.abk-tw-count {
  border: 1px solid var(--g-fg);
  padding: clamp(24px, 3.4vw, 38px);
  text-align: center;
  margin-bottom: 20px;
}
.abk-tw-count-head .abk-kicker { display: block; margin-bottom: 10px; }
.abk-tw-count-head .abk-h3 { justify-content: center; margin-bottom: 6px !important; }
.abk-tw-clock {
  display: flex; align-items: flex-start; justify-content: center; gap: 6px;
  margin: 22px 0 14px;
  font-variant-numeric: tabular-nums;
}
.abk-tw-unit { display: flex; flex-direction: column; align-items: center; min-width: 62px; }
.abk-tw-unit span { font-size: clamp(28px, 4.4vw, 42px); font-weight: 700; line-height: 1; letter-spacing: -.02em; }
.abk-tw-unit small { font-size: 11.5px; color: var(--g-muted); margin-top: 7px; }
.abk-tw-sep { font-size: clamp(22px, 3.4vw, 32px); font-weight: 300; color: var(--g-border); line-height: 1; padding-top: 2px; }
.abk-tw-count-note { font-size: 12.5px; color: var(--g-muted); }
.abk-tw-count[data-live="1"] { background: var(--g-fg); color: var(--g-bg); }
.abk-tw-count[data-live="1"] .abk-kicker,
.abk-tw-count[data-live="1"] .abk-p-muted,
.abk-tw-count[data-live="1"] .abk-tw-unit small,
.abk-tw-count[data-live="1"] .abk-tw-count-note { color: var(--g-bg); opacity: .82; }
.abk-tw-count[data-live="1"] .abk-tw-sep { color: var(--g-bg); opacity: .4; }

/* ── layout ── */
.abk-tw-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 20px; }

/* ── checklist ── */
.abk-tw-steps { border: 1px solid var(--g-border); padding: clamp(22px, 3vw, 32px); }
.abk-tw-steps-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 16px; }
.abk-tw-steps-head .abk-kicker { display: block; margin-bottom: 8px; }
.abk-tw-progress-pct { font-size: clamp(24px, 3.4vw, 34px); font-weight: 700; line-height: 1; letter-spacing: -.02em; }
.abk-tw-progress-pct small { font-size: 14px; color: var(--g-muted); margin-inline-start: 2px; }

.abk-tw-list { display: grid; gap: 0; margin-top: 22px !important; }
.abk-tw-step {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--g-border);
  transition: opacity .3s ease;
}
.abk-tw-step:last-child { border-bottom: 0; padding-bottom: 0; }
.abk-tw-step h3 { font-size: 16px; font-weight: 600; margin-bottom: 5px !important; }
.abk-tw-step p { font-size: 14px; line-height: 1.8; color: var(--g-muted); }

.abk-tw-tick {
  flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px;
  border: 1px solid var(--g-border); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color .22s ease, border-color .22s ease;
}
.abk-tw-tick::after {
  content: ""; width: 10px; height: 6px;
  border-inline-start: 2px solid var(--g-bg); border-bottom: 2px solid var(--g-bg);
  transform: rotate(-45deg) scale(0); transform-origin: center;
  transition: transform .26s cubic-bezier(.2,.7,.3,1);
  margin-bottom: 2px;
}
.abk-tw-step:hover .abk-tw-tick { border-color: var(--g-fg); }
.abk-tw-done .abk-tw-tick { background: var(--g-fg); border-color: var(--g-fg); }
.abk-tw-done .abk-tw-tick::after { transform: rotate(-45deg) scale(1); }
.abk-tw-done h3 { text-decoration: line-through; text-decoration-thickness: 1px; color: var(--g-muted); }

.abk-tw-link {
  display: inline-block; margin-top: 10px;
  font-size: 13.5px; font-weight: 600;
  border-bottom: 1px solid currentColor; padding-bottom: 1px;
}
.abk-tw-link:hover { opacity: .7; }

.abk-tw-complete { border-color: var(--abk-success); }

/* ── receipt ── */
.abk-tw-receipt { border: 1px solid var(--g-border); background: var(--g-surface); padding: clamp(22px, 3vw, 32px); }
.abk-tw-receipt .abk-kicker { display: block; margin-bottom: 16px; }
.abk-tw-receipt-note {
  display: flex; gap: 9px; align-items: flex-start;
  margin-top: 18px !important; padding-top: 16px; border-top: 1px solid var(--g-border);
  font-size: 12.5px; line-height: 1.7; color: var(--g-muted);
}
.abk-tw-receipt-note .abk-ic { width: 15px; height: 15px; margin-top: 3px; }

/* ── video ── */
.abk-tw-video { margin-top: 20px; border: 1px solid var(--g-border); padding: clamp(22px, 3vw, 32px); text-align: center; }
.abk-tw-video .abk-kicker { display: block; margin-bottom: 16px; }
.abk-tw-video-frame { max-width: 720px; margin: 0 auto; }
.abk-tw-video-frame iframe,
.abk-tw-video-frame video { width: 100%; aspect-ratio: 16/9; height: auto; display: block; border: 0; }

/* ── road ahead ── */
.abk-tw-road { margin-top: clamp(44px, 6vw, 72px); padding-top: clamp(36px, 5vw, 56px); border-top: 1px solid var(--g-border); }
.abk-tw-road-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--g-border); border: 1px solid var(--g-border); }
.abk-tw-road-list li { background: var(--g-bg); padding: clamp(20px, 2.6vw, 28px); transition: background-color .28s ease; }
.abk-tw-road-list li:hover { background: var(--g-surface); }
.abk-tw-road-num { display: block; font-size: 12px; letter-spacing: .1em; color: var(--g-muted); margin-bottom: 12px; }
.abk-tw-road-list h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px !important; }
.abk-tw-road-list p { font-size: 13.5px; line-height: 1.75; color: var(--g-muted); }

/* ── responsive ── */
@media (max-width: 900px) {
  .abk-tw-grid { grid-template-columns: 1fr; }
  .abk-tw-road-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .abk-tw-road-list { grid-template-columns: 1fr; }
  .abk-tw-clock { gap: 2px; }
  .abk-tw-unit { min-width: 0; flex: 1; }
  .abk-tw-sep { display: none; }
  .abk-tw-unit { border: 1px solid var(--g-border); padding: 10px 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html.abk-js .abk-tw-check-ring,
  html.abk-js .abk-tw-check-mark { animation: none; stroke-dashoffset: 0; }
}

/* ═══════════════════════════════════════════════════════════
   Resource library
   ═══════════════════════════════════════════════════════════ */
.abk-lib-group + .abk-lib-group { margin-top: 20px; }
.abk-lib-list { display: grid; gap: 0; }
.abk-lib-list li {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--g-border);
}
.abk-lib-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.abk-lib-list li:first-child { padding-top: 0; }
.abk-lib-list strong { font-size: 15px; font-weight: 600; display: block; }
.abk-lib-list p { font-size: 13px; color: var(--g-muted); margin-top: 4px !important; }
.abk-lib-list .abk-btn-sm { flex-shrink: 0; margin-top: 0; }
.abk-lib-empty { text-align: center; padding: clamp(40px, 6vw, 64px) clamp(22px, 3vw, 32px); }
.abk-lib-empty .abk-h3 { justify-content: center; margin-bottom: 12px !important; }

@media (max-width: 560px) {
  .abk-lib-list li { flex-direction: column; align-items: flex-start; }
  .abk-lib-list .abk-btn-sm { width: 100%; justify-content: center; display: flex; }
}

/* ═══════════════════════════════════════════════════════════
   Subscription management (dashboard)
   ═══════════════════════════════════════════════════════════ */
.abk-cancel-notice { margin-bottom: 14px; }
.abk-btn-armed { background: var(--abk-danger) !important; border-color: var(--abk-danger) !important; color: #fff !important; }
.abk-dash-card .abk-btn-block + .abk-btn-block,
.abk-dash-card .abk-btn-block + a.abk-btn-outline { margin-top: 10px; }
