/* ============================================
   Teksura landing — extends FlowFrame theme
   Reuses :root tokens from main styles.css
   ============================================ */

/* Global guard against horizontal overflow on the landing */
html, body { overflow-x: hidden; }
.tk { max-width: 100vw; }
.tk * { max-width: 100%; }
.tk img, .tk picture { max-width: 100%; height: auto; display: block; }
.tk h1, .tk h2, .tk h3, .tk p, .tk li, .tk td, .tk th { overflow-wrap: anywhere; word-break: break-word; }
.tk-hero__title, .tk-section__title, .tk-final__title, .tk-case__title, .tk-pain__title, .tk-feature__title { overflow-wrap: break-word; }
.tk-mock__url { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Page-scoped tokens / shorthands */
.tk {
  --ink: #0f172a;
  --mute: #6b7280;
  --line: #e5e7eb;
  --soft: #f7f7fb;
  --warn: #fa8669;
  --warn-dim: #ffe8e0;
  --ok: #16a34a;
  --ok-dim: #dcfce7;
  --bad: #dc2626;
  --bad-dim: #fee2e2;
  --accent: #ffc94a;
  --accent-dim: #fff5d6;
  --shadow: 8px 8px 0 0 #0f172a;
  --shadow-sm: 4px 4px 0 0 #0f172a;
  --radius: 18px;
  --radius-sm: 10px;
}

/* ============ HERO ============ */
.tk-hero {
  padding: 120px 0 80px;
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(255,201,74,0.25), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(250,134,105,0.18), transparent 60%),
    var(--white);
  position: relative;
  overflow: hidden;
}
.tk-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
}
@media (min-width: 1280px) {
  .tk-hero__inner { grid-template-columns: 1fr 1.2fr; gap: 64px; }
}
@media (max-width: 1280px) and (min-width: 981px) {
  .tk-hero__inner { gap: 36px; }
  .tk-hero__title { font-size: clamp(36px, 4.4vw, 56px); }
}
.tk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--accent);
  padding: 8px 14px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  margin-bottom: 24px;
}
.tk-eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--ink);
  border-radius: 50%;
}
.tk-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.tk-hero__subtitle {
  font-size: 19px;
  line-height: 1.55;
  color: var(--g-700);
  margin-bottom: 32px;
  max-width: 580px;
}
.tk-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.tk-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: var(--g-600);
}
.tk-trust-row__item {
  display: inline-flex; align-items: center; gap: 8px;
}
.tk-trust-row__item svg {
  width: 18px; height: 18px;
  color: var(--ok);
}

/* ============ SHOT (real screenshots in browser frame) ============ */
.tk-shot {
  display: block;
  width: 100%;
  filter: drop-shadow(8px 8px 0 rgba(15, 23, 42, 1));
  transition: transform 0.25s var(--ease), filter 0.25s var(--ease);
}
.tk-shot img { display: block; width: 100%; height: auto; border-radius: 14px; }
.tk-shot--hero { max-width: 100%; transform: translateY(0); }
.tk-shot:hover { transform: translate(-2px, -2px); filter: drop-shadow(10px 10px 0 rgba(15, 23, 42, 1)); }
@media (max-width: 980px) {
  .tk-shot { filter: drop-shadow(4px 4px 0 rgba(15, 23, 42, 1)); }
}

/* ============ MOCK FRAME ============ */
.tk-mock {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  font-family: var(--font-sans);
}
.tk-mock__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #f1f5f9;
  border-bottom: 2px solid var(--ink);
}
.tk-mock__dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
}
.tk-mock__dot--r { background: #ff6b6b; }
.tk-mock__dot--y { background: #ffd55a; }
.tk-mock__dot--g { background: #6ed79a; }
.tk-mock__url {
  margin-left: 14px;
  font-size: 12px;
  color: var(--g-600);
  background: #fff;
  border: 1px solid var(--g-300);
  padding: 4px 12px;
  border-radius: 6px;
  flex: 1;
  max-width: 360px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.tk-mock__url::before {
  content: "🔒 ";
  filter: grayscale(1);
  opacity: 0.6;
}
.tk-mock__body {
  padding: 22px;
  background: #fff;
}
.tk-mock--dashboard .tk-mock__body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  padding: 0;
}
.tk-mock-side {
  background: #0f172a;
  color: #fff;
  padding: 18px 14px;
  font-size: 13px;
}
.tk-mock-side__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.tk-mock-side__brand-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 3px;
}
.tk-mock-side__item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px;
  border-radius: 7px;
  margin-bottom: 2px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.tk-mock-side__item--active {
  background: rgba(255,201,74,0.16);
  color: var(--accent);
  font-weight: 700;
}
.tk-mock-side__icon {
  width: 16px; height: 16px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
}
.tk-mock-main {
  padding: 22px 24px;
  background: #fafaf7;
  min-height: 460px;
}
.tk-mock-main__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 4px;
  color: var(--ink);
}
.tk-mock-main__sub {
  color: var(--mute);
  font-size: 13px;
  margin-bottom: 20px;
}
.tk-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.tk-kpi {
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  padding: 14px 16px;
}
.tk-kpi__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 6px;
}
.tk-kpi__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--ink);
  line-height: 1;
}
.tk-kpi__delta {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
}
.tk-kpi__delta--up { color: var(--ok); }
.tk-kpi__delta--down { color: var(--bad); }

/* ============ TRUST STRIP ============ */
.tk-trust {
  background: var(--ink);
  color: #fff;
  padding: 32px 0;
}
.tk-trust__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
  align-items: center;
}
.tk-trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.tk-trust__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}
.tk-trust__label {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.35;
  flex: 1; min-width: 0;
}

/* ============ SECTION COMMON ============ */
.tk-section {
  padding: 100px 0;
}
.tk-section--soft { background: var(--soft); }
.tk-section--ink { background: var(--ink); color: #fff; }
.tk-section--ink h2, .tk-section--ink h3 { color: #fff; }

.tk-section__head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.tk-section__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.tk-section--ink .tk-section__tag { color: var(--ink); }
.tk-section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.tk-section__sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--g-600);
}
.tk-section--ink .tk-section__sub { color: rgba(255,255,255,0.78); }

/* ============ PAINS ============ */
.tk-pains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tk-pain {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease);
}
.tk-pain:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--ink);
}
.tk-pain__icon {
  width: 48px; height: 48px;
  background: var(--warn-dim);
  border: 2px solid var(--ink);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 16px;
  color: var(--ink);
}
.tk-pain__icon svg { width: 26px; height: 26px; }
.tk-feature__icon svg { width: 22px; height: 22px; }
.tk-pain__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--ink);
}
.tk-pain__text {
  font-size: 15px;
  color: var(--g-700);
  line-height: 1.55;
}

/* ============ HOW IT WORKS ============ */
.tk-how {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.tk-how__step {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.tk-how__num {
  position: absolute;
  top: -22px; left: 24px;
  width: 44px; height: 44px;
  background: var(--accent);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--ink);
}
.tk-how__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  margin: 8px 0 12px;
  color: var(--ink);
}
.tk-how__text {
  color: var(--g-700);
  line-height: 1.55;
  font-size: 15px;
}

/* ============ CASE BLOCK ============ */
.tk-case {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 60px;
}
.tk-case:last-child { margin-bottom: 0; }
.tk-case__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 28px 32px;
  background: var(--accent);
  border-bottom: 2px solid var(--ink);
}
.tk-case__badge {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: var(--ink);
  color: var(--accent);
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
}
.tk-case__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}
.tk-case__sub {
  font-size: 15px;
  color: var(--g-700);
  margin-top: 6px;
}
.tk-case__body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
}
.tk-case__text {
  padding: 36px 36px 36px 36px;
  border-right: 2px solid var(--ink);
}
.tk-case__mock {
  padding: 28px;
  background: var(--soft);
  display: block;
  min-width: 0;
}
.tk-case__mock .tk-shot { width: 100%; max-width: 100%; }
.tk-case__mock .tk-shot img { width: 100%; height: auto; }
.tk-case__problem {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warn);
  margin-bottom: 10px;
}
.tk-case__statement {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 22px;
}
.tk-case-bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--g-700);
}
.tk-case-bullet__mark {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--ink);
  color: var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 13px;
  font-weight: 900;
  margin-top: 2px;
}
.tk-case__result {
  margin-top: 22px;
  background: var(--ok-dim);
  border: 2px solid var(--ok);
  border-radius: 12px;
  padding: 16px 18px;
}
.tk-case__result-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ok);
  margin-bottom: 6px;
}
.tk-case__result-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

/* ============ FUNNEL MOCK ============ */
.tk-funnel { width: 100%; max-width: 420px; }
.tk-funnel__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  margin-bottom: 8px;
  position: relative;
}
.tk-funnel__row--alarm {
  border-color: var(--warn);
  background: var(--warn-dim);
}
.tk-funnel__stage {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.tk-funnel__bar {
  height: 6px;
  background: var(--g-200);
  border-radius: 3px;
  margin-top: 6px;
  overflow: hidden;
}
.tk-funnel__bar-fill {
  height: 100%;
  background: var(--ink);
  border-radius: 3px;
}
.tk-funnel__row--alarm .tk-funnel__bar-fill { background: var(--warn); }
.tk-funnel__count {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
}
.tk-funnel__row--alarm .tk-funnel__count { color: var(--warn); }
.tk-funnel__hint {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  background: var(--warn);
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  margin-top: 8px;
}

/* ============ SCORING TABLE MOCK ============ */
.tk-scoring {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--ink);
}
.tk-scoring th, .tk-scoring td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--g-200);
}
.tk-scoring th {
  background: #f1f5f9;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--g-700);
  border-bottom: 1.5px solid var(--ink);
}
.tk-scoring tr:last-child td { border-bottom: none; }
.tk-scoring__name {
  font-weight: 700;
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.tk-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 11px;
  color: #fff;
  flex-shrink: 0;
}
.tk-score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
}
.tk-score-pill {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  font-family: var(--font-display);
}
.tk-score-pill--good { background: var(--ok-dim); color: var(--ok); }
.tk-score-pill--mid  { background: var(--accent-dim); color: #b45309; }
.tk-score-pill--bad  { background: var(--bad-dim); color: var(--bad); }

/* ============ CALL DETAIL MOCK ============ */
.tk-call {
  width: 100%;
}
.tk-call__top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 10px 10px 0 0;
}
.tk-call__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
}
.tk-call__deal {
  font-size: 12px;
  opacity: 0.7;
}
.tk-call__player {
  background: #1e293b;
  color: #fff;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
}
.tk-call__play {
  width: 30px; height: 30px;
  background: var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
  font-weight: 900;
}
.tk-call__wave {
  flex: 1;
  display: flex; align-items: center; gap: 2px;
  height: 26px;
}
.tk-call__wave span {
  display: block;
  width: 3px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
}
.tk-call__wave span:nth-child(odd) { background: rgba(255,201,74,0.7); }
.tk-call__time {
  font-size: 11px;
  font-family: ui-monospace, monospace;
  opacity: 0.7;
}
.tk-call__transcript {
  background: #fff;
  border: 1px solid var(--g-200);
  border-top: none;
  padding: 16px;
  border-radius: 0 0 10px 10px;
}
.tk-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.45;
}
.tk-line__who {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  height: fit-content;
}
.tk-line--m .tk-line__who { background: var(--accent); color: var(--ink); }
.tk-line--c .tk-line__who { background: var(--g-100); color: var(--g-700); }
.tk-line__text { color: var(--g-700); }
.tk-line mark {
  background: var(--warn-dim);
  border-bottom: 2px solid var(--warn);
  color: var(--ink);
  padding: 1px 2px;
}
.tk-line mark.ok {
  background: var(--ok-dim);
  border-bottom-color: var(--ok);
}
.tk-comment {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--accent-dim);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
}
.tk-comment__label {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #b45309;
  margin-bottom: 4px;
  display: flex; align-items: center; gap: 6px;
}

/* ============ MANAGER CARD MOCK ============ */
.tk-mgr {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.tk-mgr__top {
  background: var(--ink);
  color: #fff;
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
}
.tk-mgr__avatar {
  width: 44px; height: 44px;
  background: var(--accent);
  color: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
}
.tk-mgr__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
}
.tk-mgr__role {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}
.tk-mgr__body {
  padding: 18px 20px;
}
.tk-mgr__criteria {
  display: grid;
  gap: 10px;
}
.tk-mgr__criterion {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}
.tk-mgr__criterion-label {
  color: var(--ink);
  font-weight: 600;
}
.tk-mgr__criterion-bar {
  position: relative;
  height: 8px;
  background: var(--g-200);
  border-radius: 4px;
  margin-top: 4px;
}
.tk-mgr__criterion-fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  background: var(--ok);
  border-radius: 4px;
}
.tk-mgr__criterion-fill--mid { background: var(--accent); }
.tk-mgr__criterion-fill--low { background: var(--warn); }
.tk-mgr__criterion-pct {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  min-width: 40px;
  text-align: right;
}
.tk-mgr__total {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1.5px dashed var(--g-300);
  display: flex; justify-content: space-between; align-items: center;
}
.tk-mgr__total-label {
  font-weight: 700;
  font-size: 13px;
}
.tk-mgr__total-val {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--ink);
}

/* ============ FEATURES ============ */
.tk-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tk-feature {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.tk-feature__icon {
  width: 42px; height: 42px;
  background: var(--accent);
  border: 2px solid var(--ink);
  border-radius: 10px;
  display: grid; place-items: center;
  margin-bottom: 14px;
  font-size: 20px;
}
.tk-feature__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--ink);
}
.tk-feature__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--g-700);
}

/* ============ COMPARE TABLE ============ */
.tk-compare-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 14px;
}
.tk-compare-wrap::after {
  content: "";
  display: block;
  height: 4px;
}
.tk-compare {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 14px;
  overflow: hidden;
  font-size: 15px;
}
.tk-compare th, .tk-compare td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--g-200);
}
.tk-compare th {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  background: var(--ink);
  color: #fff;
}
.tk-compare th:first-child { background: var(--accent); color: var(--ink); }
.tk-compare tr:last-child td { border-bottom: none; }
.tk-compare td:first-child {
  font-weight: 600;
  color: var(--ink);
}
.tk-compare .y { color: var(--ok); font-weight: 700; }
.tk-compare .n { color: var(--bad); font-weight: 700; }
.tk-compare .meh { color: var(--mute); }

/* ============ PRICING ============ */
.tk-prices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tk-price {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  position: relative;
}
.tk-price--featured {
  background: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.tk-price__tag {
  position: absolute;
  top: -12px; right: 20px;
  background: var(--ink);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.tk-price__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 10px;
}
.tk-price__sum {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--ink);
  line-height: 1;
}
.tk-price__period {
  font-size: 14px;
  color: var(--g-600);
  margin-bottom: 18px;
}
.tk-price__list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  font-size: 14px;
}
.tk-price__list li {
  padding: 7px 0 7px 22px;
  position: relative;
  color: var(--g-700);
  line-height: 1.4;
}
.tk-price__list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 7px;
  color: var(--ok);
  font-weight: 900;
}
.tk-price--featured .tk-price__list li::before { color: var(--ink); }
.tk-price--featured .tk-price__list li { color: var(--ink); }
.tk-price .btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ============ FAQ ============ */
.tk-faq {
  max-width: 820px;
  margin: 0 auto;
}
.tk-faq__item {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.tk-faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.tk-faq__q::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: var(--ink);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.tk-faq__item--open .tk-faq__q::after { transform: rotate(45deg); }
.tk-faq__a {
  display: none;
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--g-700);
}
.tk-faq__item--open .tk-faq__a { display: block; }

/* ============ FINAL CTA ============ */
.tk-final {
  padding: 100px 0;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.tk-final::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(70px); opacity: 0.35;
}
.tk-final::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -80px;
  width: 360px; height: 360px;
  background: var(--coral);
  border-radius: 50%;
  filter: blur(80px); opacity: 0.18;
}
.tk-final__inner {
  max-width: 720px;
  text-align: center;
  position: relative;
}
.tk-final__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.1;
  margin-bottom: 18px;
}
.tk-final__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  line-height: 1.55;
}
.tk-final__cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ============ MOBILE ============ */
@media (max-width: 980px) {
  .tk-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .tk-trust__inner { grid-template-columns: repeat(2, 1fr); }
  .tk-pains, .tk-how, .tk-features { grid-template-columns: 1fr; }
  .tk-prices { grid-template-columns: 1fr 1fr; }
  .tk-case__body { grid-template-columns: 1fr; }
  .tk-case__text { border-right: none; border-bottom: 2px solid var(--ink); }
  .tk-mock--dashboard .tk-mock__body { grid-template-columns: 1fr; }
  .tk-mock-side { display: none; }
  .tk-kpi-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .tk-section { padding: 70px 0; }
  .tk-hero { padding: 70px 0 50px; }
  .tk-prices { grid-template-columns: 1fr; }
  .tk-trust__inner { grid-template-columns: 1fr; gap: 22px; }
  .tk-trust__num { font-size: 26px; }
  .tk-case__head { padding: 22px 20px; grid-template-columns: 1fr; gap: 14px; }
  .tk-case__text, .tk-case__mock { padding: 22px 20px; }
  .tk-hero__title { font-size: clamp(30px, 8vw, 40px); }
  .tk-section__title { font-size: clamp(26px, 7vw, 36px); }
  .tk-final__title { font-size: clamp(26px, 7vw, 36px); }
  .tk-case__title { font-size: clamp(20px, 5.5vw, 26px); }
  .tk-hero__subtitle { font-size: 16px; }
  .tk-trust-row { gap: 14px; font-size: 13px; }
  .nav__menu { display: none; }
}
