html, body { margin: 0; background: #f7eedd; }

.tkc {
  --ink: #1b140f;
  --ink-soft: #4a3f36;
  --forest: #16332c;
  --forest-2: #0e2420;
  --cream: #f7eedd;
  --cream-2: #efe3cc;
  --chalk: #fffcf5;
  --card: #fbf6ec;
  --crema: #e8994d;
  --crema-deep: #b8691f;
  --line: rgba(27, 20, 15, 0.14);
  --line-strong: rgba(27, 20, 15, 0.3);
  --line-dark: rgba(255, 252, 245, 0.18);
  --error: #b3261e;
  --error-bg: #fcebe9;
  --ok: #1f6b4f;
  --display: 'Fredoka', ui-rounded, 'SF Pro Rounded', system-ui, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
  --mono: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  color-scheme: light;
}
.tkc *, .tkc *::before, .tkc *::after { box-sizing: border-box; }
.tkc [hidden] { display: none !important; }
.tkc img, .tkc svg { display: block; max-width: 100%; }
.tkc a { color: inherit; }
.tkc h1, .tkc h2, .tkc h3, .tkc h4 { font-family: var(--display); font-weight: 700; margin: 0; text-wrap: balance; color: inherit; letter-spacing: 0; }
.tkc p { margin: 0; }
.tkc ul { margin: 0; padding: 0; }
.tkc .wrap { max-width: 1120px; margin: 0 auto; padding-left: clamp(16px, 5vw, 56px); padding-right: clamp(16px, 5vw, 56px); }
.tkc section { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(56px, 8vw, 96px); scroll-margin-top: 70px; }
.tkc .eyebrow { font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--crema-deep); }
.tkc .sec-head { max-width: 64ch; display: grid; gap: 12px; margin-bottom: clamp(28px, 4vw, 44px); }
.tkc .sec-head h2 { font-size: clamp(1.8rem, 4.2vw, 2.6rem); line-height: 1.08; }
.tkc .sec-head p { color: var(--ink-soft); }
.tkc .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 24px; border-radius: 999px; border: 2px solid transparent;
  font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: 0.01em; white-space: nowrap;
  text-decoration: none; cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  line-height: 1.2; text-align: center;
}
.tkc .btn:hover { transform: translateY(-2px); }
.tkc .btn:focus-visible { outline: 3px solid var(--crema); outline-offset: 3px; }
.tkc .btn-solid { background: var(--crema); color: var(--forest-2); }
.tkc .btn-solid:hover { box-shadow: 0 10px 24px rgba(184, 105, 31, 0.3); }
.tkc .btn-ghost-light { border-color: rgba(255, 252, 245, 0.7); color: var(--chalk); background: transparent; }
.tkc .btn-ghost-light:hover { background: rgba(255, 252, 245, 0.08); }
.tkc .btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }

/* ---------- sub-nav ---------- */
.tkc .subnav { position: sticky; top: 0; z-index: 30; background: rgba(247, 238, 221, 0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.tkc .subnav-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 14px; padding-bottom: 14px; }
.tkc .subnav-brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; text-decoration: none; font-size: 1.05rem; letter-spacing: 0.01em; white-space: nowrap; }
.tkc .subnav-brand svg { width: 30px; height: 30px; }
.tkc .subnav-links { display: flex; gap: clamp(14px, 2.5vw, 28px); font-size: 15px; font-weight: 600; line-height: 1.3; }
.tkc .subnav-links a { white-space: nowrap; }
.tkc .subnav-links a { text-decoration: none; opacity: 0.78; }
.tkc .subnav-links a:hover, .tkc .subnav-links a[aria-current="page"] { opacity: 1; }
.tkc .subnav-links a[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--crema); text-decoration-thickness: 2px; text-underline-offset: 6px; }
.tkc .subnav .btn { min-height: 42px; padding: 9px 20px; font-size: 14px; }
@media (max-width: 900px) {
  .tkc .subnav-row { flex-wrap: wrap; row-gap: 10px; padding-bottom: 10px; }
  .tkc .subnav-links { order: 3; width: 100%; justify-content: space-between; gap: 10px; font-size: 13px; }
}
@media (max-width: 400px) { .tkc .subnav-links { font-size: 12px; gap: 6px; } }
@media (max-width: 370px) { .tkc .subnav-links { flex-wrap: wrap; justify-content: center; column-gap: 12px; } }

/* ---------- hero ---------- */
.tkc .hero { background: radial-gradient(120% 140% at 12% 0%, #1c3d35 0%, var(--forest) 45%, var(--forest-2) 100%); color: var(--chalk); padding-top: clamp(52px, 8vw, 92px); padding-bottom: clamp(56px, 8vw, 96px); }
.tkc .hero-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
@media (max-width: 880px) { .tkc .hero-grid { grid-template-columns: 1fr; } }
.tkc .hero .eyebrow { color: var(--crema); }
.tkc .hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.04; margin-top: 16px; }
.tkc .hero h1 .accent { color: var(--crema); }
.tkc .hero-lede { margin-top: 20px; max-width: 50ch; font-size: 1.1rem; color: rgba(255, 252, 245, 0.86); }
.tkc .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.tkc .trust { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-top: 22px; font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255, 252, 245, 0.78); }
.tkc .trust span { display: inline-flex; align-items: center; gap: 8px; }
.tkc .trust span + span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--crema); }
.tkc .hero-card { background: rgba(255, 252, 245, 0.06); border: 1px solid var(--line-dark); border-radius: 24px; padding: clamp(22px, 3vw, 30px); }
.tkc .hero-card h2 { font-size: 1.15rem; }
.tkc .hero-card ul { list-style: none; display: grid; gap: 12px; margin-top: 16px; }
.tkc .hero-card li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; font-size: 0.96rem; color: rgba(255, 252, 245, 0.88); }
.tkc .hero-card li svg { width: 20px; height: 20px; margin-top: 3px; color: var(--crema); }
.tkc .hero-card .card-foot { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-dark); font-size: 0.88rem; color: rgba(255, 252, 245, 0.7); }

/* ---------- lead form ---------- */
.tkc .lead { background: var(--chalk); }
.tkc .lead.lead-bottom { background: var(--cream-2); }
.tkc .lead-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
@media (max-width: 920px) { .tkc .lead-grid { grid-template-columns: 1fr; } }
.tkc .lead-intro { display: grid; gap: 14px; position: sticky; top: 90px; }
@media (max-width: 920px) { .tkc .lead-intro { position: static; } }
.tkc .lead-intro h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); line-height: 1.08; }
.tkc .lead-intro .sub { font-size: 1.08rem; color: var(--ink-soft); }
.tkc .trust-dark { display: flex; flex-wrap: wrap; gap: 6px 14px; font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--forest); font-weight: 600; }
.tkc .trust-dark span { display: inline-flex; align-items: center; gap: 8px; }
.tkc .trust-dark span + span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--crema-deep); }
.tkc .reassure { margin-top: 8px; background: var(--forest); color: var(--chalk); border-radius: 20px; padding: 20px 22px; display: grid; gap: 8px; }
.tkc .reassure strong { font-family: var(--display); font-size: 1.12rem; }
.tkc .reassure p { font-size: 0.95rem; color: rgba(255, 252, 245, 0.86); }

.tkc .form-card { background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: clamp(20px, 3.4vw, 36px); box-shadow: 0 18px 50px rgba(27, 20, 15, 0.06); }
.tkc .form-card form { display: grid; gap: 30px; }
.tkc legend { padding: 0; }
.tkc fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.tkc .fs { display: grid; gap: 16px; }
.tkc .fs + .fs { padding-top: 28px; border-top: 1px solid var(--line); }
.tkc .fs-head { display: flex; align-items: center; gap: 12px; }
.tkc .fs-step { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--forest); color: var(--chalk); font-family: var(--display); font-weight: 700; font-size: 0.92rem; display: inline-flex; align-items: center; justify-content: center; font-variant-numeric: tabular-nums; }
.tkc .fs-title { font-family: var(--display); font-weight: 700; font-size: 1.2rem; line-height: 1.2; padding: 0; }
.tkc .fs-note { font-size: 0.9rem; color: var(--ink-soft); margin-top: -6px; }
.tkc .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tkc .row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .tkc .row-2, .tkc .row-3 { grid-template-columns: 1fr; } }
.tkc .field { display: grid; gap: 6px; align-content: start; min-width: 0; }
.tkc .label { font-weight: 650; font-size: 0.95rem; line-height: 1.35; }
.tkc .req { color: var(--crema-deep); font-weight: 700; }
.tkc .opt { font-weight: 500; color: var(--ink-soft); font-size: 0.85rem; }
.tkc .help { font-size: 0.85rem; color: var(--ink-soft); }
.tkc .input, .tkc .select, .tkc .textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--card); border: 1.5px solid var(--line-strong); border-radius: 12px;
  padding: 12px 14px; min-height: 48px; transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  appearance: none; -webkit-appearance: none; margin: 0;
}
.tkc .select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%231b140f' stroke-width='1.8'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.tkc .textarea { min-height: 150px; resize: vertical; line-height: 1.5; }
.tkc .input::placeholder, .tkc .textarea::placeholder { color: #8d8074; }
.tkc .input:hover, .tkc .select:hover, .tkc .textarea:hover { border-color: rgba(27, 20, 15, 0.5); }
.tkc .input:focus, .tkc .select:focus, .tkc .textarea:focus { outline: none; border-color: var(--forest); background: #fff; box-shadow: 0 0 0 3px rgba(22, 51, 44, 0.16); }
.tkc [aria-invalid="true"] { border-color: var(--error) !important; background: var(--error-bg); }
.tkc .err { display: none; align-items: center; gap: 6px; font-size: 0.86rem; font-weight: 600; color: var(--error); }
.tkc .err.show { display: flex; }
.tkc .err::before { content: "!"; flex: none; width: 16px; height: 16px; border-radius: 50%; background: var(--error); color: #fff; font-size: 0.7rem; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; }

.tkc .chips { display: flex; flex-wrap: wrap; gap: 10px; }
.tkc .chip { position: relative; display: flex; max-width: 100%; min-width: 0; }
.tkc .chip input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.tkc .chip > span { display: flex; align-items: center; gap: 10px; width: 100%; min-width: 0; min-height: 46px; padding: 11px 18px; border-radius: 999px; border: 1.5px solid var(--line-strong); background: var(--card); font-size: 15px; font-weight: 600; line-height: 1.3; text-align: left; white-space: normal; overflow-wrap: break-word; transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease; user-select: none; }
.tkc .chip.box > span { border-radius: 12px; }
.tkc .chip > span::before { content: ""; flex: none; width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid var(--line-strong); background: #fff; transition: all 0.15s ease; }
.tkc .chip.box > span::before { border-radius: 4px; }
.tkc .chip:hover > span { border-color: rgba(27, 20, 15, 0.5); }
.tkc .chip input:checked + span { background: var(--forest); border-color: var(--forest); color: var(--chalk); }
.tkc .chip input:checked + span::before { border-color: var(--crema); background: var(--crema); box-shadow: inset 0 0 0 3px var(--forest); }
.tkc .chip.box input:checked + span::before { box-shadow: none; background: var(--crema) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' fill='none' stroke='%230e2420' stroke-width='2'/%3E%3C/svg%3E") center/10px no-repeat; }
.tkc .chip input:focus-visible + span { outline: 3px solid var(--crema); outline-offset: 2px; }
.tkc .chip.unsure > span { border-style: dashed; border-color: var(--crema-deep); background: #fdf1e3; border-radius: 16px; }
.tkc .chip.unsure input:checked + span { border-style: solid; background: var(--forest); }
.tkc .chip .opt-text { display: flex; flex-wrap: wrap; align-items: baseline; column-gap: 8px; row-gap: 2px; min-width: 0; }
.tkc .chip.unsure small { font-weight: 500; font-size: 13px; opacity: 0.85; }

/* Group heads: "Not sure yet" leads as a full-width option, then 1 / 2 / 3 group in equal columns. */
.tkc .gh-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.tkc .gh-grid .unsure { grid-column: 1 / -1; order: -1; }
.tkc .gh-grid .chip > span { justify-content: center; }
.tkc .gh-grid .unsure span { justify-content: flex-start; }
@media (max-width: 420px) {
  .tkc .chips, .tkc .gh-grid { gap: 8px; }
  .tkc .chip > span { font-size: 14px; padding: 10px 14px; gap: 8px; }
  .tkc .gh-grid .chip > span { padding-left: 8px; padding-right: 8px; gap: 6px; }
}

.tkc .reveal { display: grid; gap: 6px; padding: 14px 16px; border-left: 3px solid var(--crema); background: var(--card); border-radius: 0 12px 12px 0; }
.tkc .hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.tkc .submit-row { display: grid; gap: 12px; padding-top: 6px; }
.tkc .submit-row .btn { width: 100%; min-height: 56px; font-size: 16px; padding: 14px 20px; white-space: normal; }
.tkc .lead-grid > * { min-width: 0; }
.tkc .submit-row .btn[disabled] { opacity: 0.7; cursor: progress; transform: none; }
.tkc .fine { font-size: 0.82rem; color: var(--ink-soft); text-align: center; }
.tkc .fine a { color: var(--forest); font-weight: 600; }
.tkc .form-alert { display: none; padding: 14px 16px; border-radius: 12px; background: var(--error-bg); color: var(--error); font-weight: 600; font-size: 0.92rem; }
.tkc .form-alert.show { display: block; }
.tkc .preview-note { font-size: 0.8rem; text-align: center; font-family: var(--mono); color: var(--crema-deep); }

.tkc .success { display: grid; gap: 14px; justify-items: start; padding: clamp(10px, 3vw, 24px) 0; }
.tkc .success .check { width: 58px; height: 58px; border-radius: 50%; background: var(--forest); color: var(--crema); display: flex; align-items: center; justify-content: center; }
.tkc .success .check svg { width: 28px; height: 28px; }
.tkc .success h3 { font-size: clamp(1.7rem, 4vw, 2.2rem); }
.tkc .success p { font-size: 1.05rem; max-width: 52ch; }
.tkc .success .muted { color: var(--ink-soft); }
.tkc .success .tag { font-family: var(--mono); font-size: 0.78rem; padding: 6px 10px; border-radius: 8px; background: #fdf1e3; color: var(--crema-deep); }
.tkc .success-summary { width: 100%; margin-top: 6px; border-top: 1px solid var(--line); padding-top: 14px; font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- content sections ---------- */
.tkc .what { background: var(--cream); }
.tkc .what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 64px); align-items: start; }
@media (max-width: 860px) { .tkc .what-grid { grid-template-columns: 1fr; } }
.tkc .what-copy { display: grid; gap: 16px; font-size: 1.05rem; max-width: 60ch; }
.tkc .what-side { background: var(--chalk); border: 1px solid var(--line); border-radius: 22px; padding: 24px; display: grid; gap: 14px; }
.tkc .what-side h3 { font-size: 1.1rem; }
.tkc .compare { display: grid; gap: 10px; }
.tkc .compare div { display: grid; grid-template-columns: 110px 1fr; gap: 12px; font-size: 0.95rem; padding-bottom: 10px; border-bottom: 1px dashed var(--line); }
.tkc .compare div:last-child { border-bottom: 0; padding-bottom: 0; }
.tkc .compare b { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--crema-deep); padding-top: 3px; }

.tkc .help-sec { background: var(--chalk); }
.tkc .svc-grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) { .tkc .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .tkc .svc-grid { grid-template-columns: 1fr; } }
.tkc .svc { background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 22px 20px; display: grid; gap: 10px; align-content: start; }
.tkc .svc svg { width: 30px; height: 30px; color: var(--forest); }
.tkc .svc h3 { font-size: 1.08rem; line-height: 1.2; }
.tkc .svc p { font-size: 0.93rem; color: var(--ink-soft); }

.tkc .why { background: var(--forest); color: var(--chalk); }
.tkc .why .sec-head p { color: rgba(255, 252, 245, 0.8); }
.tkc .why .eyebrow { color: var(--crema); }
.tkc .why-grid { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 1000px) { .tkc .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .tkc .why-grid { grid-template-columns: 1fr; } }
.tkc .why-card { border: 1px solid var(--line-dark); border-radius: 20px; padding: 22px 20px; display: grid; gap: 8px; align-content: start; background: rgba(255, 252, 245, 0.04); }
.tkc .why-card .big { font-family: var(--display); font-weight: 700; font-size: 2rem; line-height: 1; color: var(--crema); font-variant-numeric: tabular-nums; }
.tkc .why-card h3 { font-size: 1.05rem; }
.tkc .why-card .big-ico { width: 32px; height: 32px; color: var(--crema); }
.tkc .why-card p { font-size: 0.92rem; color: rgba(255, 252, 245, 0.8); }
.tkc .why-card.free { background: var(--crema); color: var(--forest-2); border-color: var(--crema); }
.tkc .why-card.free p { color: var(--forest-2); opacity: 0.85; }
.tkc .why-card.free .big { color: var(--forest-2); }

.tkc .how { background: var(--cream); }
.tkc .steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; position: relative; }
@media (max-width: 900px) { .tkc .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .tkc .steps { grid-template-columns: 1fr; } }
.tkc .step { counter-increment: step; background: var(--chalk); border: 1px solid var(--line); border-radius: 20px; padding: 22px 20px; display: grid; gap: 8px; align-content: start; }
.tkc .step::before { content: counter(step); width: 36px; height: 36px; border-radius: 50%; background: var(--forest); color: var(--chalk); font-family: var(--display); font-weight: 700; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 6px; }
.tkc .step h3 { font-size: 1.1rem; }
.tkc .step p { font-size: 0.93rem; color: var(--ink-soft); }
.tkc .how-cta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.tkc .how-cta p { color: var(--ink-soft); font-size: 0.95rem; }

.tkc .brands { background: var(--chalk); }
.tkc .brand-cats { display: grid; gap: 12px; }
.tkc details.bcat { border: 1px solid var(--line); border-radius: 18px; background: var(--card); overflow: hidden; }
.tkc details.bcat summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 12px; padding: 16px 20px; font-family: var(--display); font-weight: 700; font-size: 1.05rem; }
.tkc details.bcat summary::-webkit-details-marker { display: none; }
.tkc details.bcat summary:focus-visible { outline: 3px solid var(--crema); outline-offset: -3px; border-radius: 18px; }
.tkc .bcat-count { font-family: var(--mono); font-size: 0.78rem; font-weight: 600; color: var(--ink-soft); margin-left: auto; font-variant-numeric: tabular-nums; }
.tkc .bcat-chev { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: inline-flex; align-items: center; justify-content: center; transition: transform 0.2s ease; }
.tkc .bcat-chev svg { width: 12px; height: 12px; }
.tkc details[open] .bcat-chev { transform: rotate(180deg); }
.tkc .logo-grid { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; padding: 4px 20px 20px; }
@media (max-width: 640px) { .tkc .logo-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); padding: 4px 14px 16px; } }
.tkc .logo-card { aspect-ratio: 9 / 4; max-width: 100%; display: flex; align-items: center; justify-content: center; padding: 8px 12px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.tkc .logo-card img { height: auto; max-height: 90%; object-fit: contain; opacity: 0.8; }
.tkc .logo-card .logo-name { font-weight: 700; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; text-align: center; opacity: 0.72; line-height: 1.25; }
.tkc .brands-fine { margin-top: 16px; font-size: 0.8rem; color: var(--ink-soft); max-width: 80ch; }

.tkc .faq { background: var(--cream); }
.tkc .faq-list { display: grid; gap: 10px; max-width: 820px; }
.tkc details.q { background: var(--chalk); border: 1px solid var(--line); border-radius: 16px; }
.tkc details.q summary { list-style: none; cursor: pointer; padding: 18px 20px; display: flex; gap: 14px; align-items: center; justify-content: space-between; font-weight: 700; font-size: 1.02rem; }
.tkc details.q summary::-webkit-details-marker { display: none; }
.tkc details.q summary::after { content: "+"; flex: none; font-family: var(--display); font-size: 1.4rem; line-height: 1; color: var(--crema-deep); transition: transform 0.2s ease; }
.tkc details.q[open] summary::after { transform: rotate(45deg); }
.tkc details.q summary:focus-visible { outline: 3px solid var(--crema); outline-offset: -3px; border-radius: 16px; }
.tkc details.q .a { padding: 0 20px 18px; color: var(--ink-soft); max-width: 70ch; display: grid; gap: 10px; }

.tkc .final { background: radial-gradient(120% 140% at 85% 100%, #1c3d35 0%, var(--forest) 45%, var(--forest-2) 100%); color: var(--chalk); text-align: center; }
.tkc .final h2 { font-size: clamp(2rem, 5.4vw, 3.3rem); line-height: 1.06; }
.tkc .final h2 .accent { color: var(--crema); }
.tkc .final p { margin: 18px auto 0; max-width: 56ch; color: rgba(255, 252, 245, 0.84); font-size: 1.05rem; }
.tkc .final .hero-ctas { justify-content: center; }
.tkc .final .trust { justify-content: center; }
.tkc .final-foot { margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--line-dark); font-size: 0.85rem; color: rgba(255, 252, 245, 0.66); display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center; }
.tkc .final-foot a { color: rgba(255, 252, 245, 0.85); }

/* ---------- legal pages ---------- */
.tkc .legal { background: var(--chalk); }
.tkc .legal-doc { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.tkc .legal-doc h1 { font-size: clamp(2rem, 5vw, 2.8rem); line-height: 1.08; }
.tkc .legal-doc h2 { font-size: 1.35rem; line-height: 1.2; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.tkc .legal-doc h3 { font-size: 1.05rem; margin-top: 8px; }
.tkc .legal-doc p, .tkc .legal-doc li { color: var(--ink-soft); }
.tkc .legal-doc strong { color: var(--ink); }
.tkc .legal-doc ul { display: grid; gap: 6px; padding-left: 22px; }
.tkc .legal-doc code { font-family: var(--mono); font-size: 0.88em; background: var(--cream); padding: 1px 5px; border-radius: 5px; }
.tkc .legal-doc a { color: var(--forest); font-weight: 600; }
.tkc .legal-meta { font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.04em; color: var(--crema-deep); }
.tkc .legal-foot { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 0.9rem; }

/* ---------- sticky cta ---------- */
.tkc .sticky-cta { position: fixed; z-index: 40; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 999px; background: var(--forest); color: var(--chalk); text-decoration: none; font-family: var(--display); font-weight: 700; font-size: 15px; box-shadow: 0 10px 30px rgba(14, 36, 32, 0.35); transition: opacity 0.2s ease, transform 0.2s ease; }
.tkc .sticky-cta::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--crema); }
.tkc .sticky-cta:focus-visible { outline: 3px solid var(--crema); outline-offset: 3px; }
.tkc .sticky-cta.is-hidden { opacity: 0; transform: translateY(12px); pointer-events: none; }
@media (max-width: 640px) { .tkc .sticky-cta { left: 16px; right: 16px; justify-content: center; } }

@media (prefers-reduced-motion: reduce) {
  .tkc *, .tkc *::before, .tkc *::after { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}
