/* Trusted Kazakhstan — shared design system for content pages
   (company-registration, astana-hub-residency, digital-nomad-residency)
   Tokens and base component classes (.tk-header, .tk-btn, .tk-footer, etc.)
   are ported 1:1 from the homepage (index.html / ru.html) so new pages
   stay visually identical to the rest of the site. */

*, ::before, ::after { box-sizing: border-box; }
* { margin: 0; padding: 0; border: 0; outline: 0; }
ol, ul { list-style: none; }
img, svg, video { display: block; max-width: 100%; }
input, button, select, textarea { font: inherit; }
p, h1, h2, h3, h4, h5, h6, span { overflow-wrap: break-word; }
button { background: none; cursor: pointer; appearance: none; -webkit-appearance: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }

:root {
  --dark:        #091830;
  --dark-mid:    #0E2244;
  --dark-card:   #122955;
  --blue:        #1B6EF3;
  --blue-hover:  #155EDB;
  --blue-light:  #E8F0FE;
  --white:       #FFFFFF;
  --bg-light:    #F4F7FB;
  --bg-section:  #F9FAFC;
  --text-dark:   #091830;
  --text-mid:    #374151;
  --text-muted:  #6B7280;
  --text-light:  rgba(255,255,255,0.7);
  --border:      #E5E9F0;
  --border-dark: rgba(255,255,255,0.12);
  --radius-s:    8px;
  --radius-m:    12px;
  --radius-l:    16px;
  --radius-xl:   24px;
  --shadow:      0 4px 24px rgba(9,24,48,0.08);
  --shadow-md:   0 8px 40px rgba(9,24,48,0.12);
  --header-h:    72px;
  --section-py:  96px;
}

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: #F4F9FE;
  overflow-x: hidden;
}

.tk-container { max-width: 1240px; margin: 0 auto; width: 100%; padding: 0 24px; }
.tk-container--narrow { max-width: 860px; }

.tk-section-label {
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
}
.tk-section-label--light { color: rgba(255,255,255,0.5); }

.tk-section-title {
  font-size: clamp(28px, 4vw, 40px); font-weight: 700; line-height: 1.2;
  color: var(--text-dark); margin-bottom: 48px;
}
.tk-section-title--light { color: var(--white); }

.tk-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 16px; border-radius: var(--radius-m); font-size: 15px; font-weight: 600; line-height: 1;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s; cursor: pointer; white-space: nowrap;
}
.tk-btn--primary {
  background: #6FE5E8; color: #080D3C;
  box-shadow: 0 0 2px 0 rgba(255,255,255,0.50) inset, 0 2px 8px 0 rgba(255,255,255,0.25) inset, 0 8px 16px 0 rgba(111,229,232,0.16);
}
.tk-btn--outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.tk-btn--outline:hover { border-color: var(--white); }
.tk-btn--outline-light {
  border-radius: 16px; background: rgba(255,255,255,0.01);
  box-shadow: 0 0 2px 0 rgba(255,255,255,0.15) inset, 0 0 16px 0 rgba(255,255,255,0.05) inset;
  backdrop-filter: blur(12px); padding: 16px 24px; color: #FFF; font-size: 14px; font-weight: 700;
  line-height: 20px; letter-spacing: 0.42px; text-transform: uppercase;
}
.tk-btn--outline-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.tk-btn--full { width: 100%; }
.tk-btn--medium { padding: 16px 24px; font-size: 14px; }
.tk-btn--outline-blue { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.tk-btn--outline-blue:hover { background: var(--blue); color: var(--white); }

/* ---------- Header ---------- */
.tk-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--header-h);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(244,249,254,0.90); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.2s;
}
.tk-header__inner { display: flex; align-items: center; height: var(--header-h); justify-content: space-between; gap: 16px; }
.tk-header__logo img { height: 36px; width: auto; }
.tk-header__nav { display: flex; align-items: center; justify-content: center; gap: 20px; flex: 1; flex-wrap: wrap; }
.tk-header__nav-link { font-size: 12px; font-weight: 700; color: #080D3C; white-space: nowrap; line-height: 16px; letter-spacing: 0.36px; }
.tk-header__nav-link.is-active { color: var(--blue); }
.tk-header__right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.tk-header__lang { display: flex; align-items: center; gap: 4px; }

.tk-lang-dropdown { position: relative; }
.tk-lang-trigger {
  display: flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 12px;
  border: 1.5px solid var(--border); background: var(--white); font-size: 12px; font-weight: 700;
  color: var(--text-dark); cursor: pointer; transition: border-color 0.2s; white-space: nowrap;
}
.tk-lang-trigger:hover { border-color: #c0cad8; }
.tk-lang-trigger svg { color: var(--text-dark); transition: transform 0.2s; }
.tk-lang-dropdown.is-open .tk-lang-trigger svg { transform: rotate(180deg); }
.tk-lang-options {
  position: absolute; top: calc(100% + 8px); right: 0; background: var(--white); border: 1.5px solid var(--border);
  border-radius: 12px; box-shadow: var(--shadow); overflow: hidden; min-width: 100%;
  opacity: 0; pointer-events: none; transform: translateY(-6px); transition: opacity 0.2s, transform 0.2s; z-index: 10;
}
.tk-lang-dropdown.is-open .tk-lang-options { opacity: 1; pointer-events: auto; transform: translateY(0); }
.tk-lang-option {
  display: block; width: 100%; padding: 12px 20px; text-align: center; font-size: 12px; font-weight: 700;
  color: #080D3C; background: none; border: none; cursor: pointer; transition: background 0.15s, color 0.15s;
}
.tk-lang-option:hover { background: var(--bg-light); color: var(--text-dark); }
.tk-lang-option.is-active { color: var(--blue); }

.tk-header__burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px;
  padding: 8px; border-radius: var(--radius-s); border: 1.5px solid var(--border); cursor: pointer; background: var(--white);
}
.tk-header__burger span { display: block; width: 100%; height: 2px; background: var(--text-dark); border-radius: 2px; transition: 0.2s; }

.tk-mobile-overlay {
  position: fixed; inset: 0; background: rgba(9,24,48,0.45); z-index: 1000;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.tk-mobile-overlay.is-open { opacity: 1; pointer-events: auto; }
.tk-mobile-menu {
  position: fixed; top: 0; right: 0; height: 100%; width: 300px; background: var(--white); z-index: 1001;
  display: flex; flex-direction: column; padding: 24px; box-shadow: -4px 0 32px rgba(9,24,48,0.12);
  transform: translateX(100%); transition: transform 0.3s ease; overflow-y: auto;
}
.tk-mobile-menu.is-open { transform: translateX(0); }
.tk-mobile-menu__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.tk-mobile-menu__close {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-s);
  color: var(--text-muted); transition: background 0.2s, color 0.2s; cursor: pointer; background: none; border: none;
}
.tk-mobile-menu__close:hover { background: var(--bg-light); color: var(--text-dark); }
.tk-mobile-menu__nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.tk-mobile-menu__link {
  padding: 12px 16px; font-size: 14px; font-weight: 700; color: var(--text-dark); border-radius: var(--radius-s);
  letter-spacing: 0.04em; text-transform: uppercase; transition: background 0.2s;
}
.tk-mobile-menu__link:hover { background: var(--bg-light); }
.tk-mobile-menu__footer { padding-top: 24px; }
.tk-mobile-menu__langs { display: flex; gap: 8px; border-top: 1px solid var(--border); padding-top: 16px; margin-top: 12px; }
.tk-mobile-menu__lang-btn {
  flex: 1; padding: 10px; border-radius: var(--radius-s); border: 1.5px solid var(--border); font-size: 13px;
  font-weight: 700; color: var(--text-muted); background: none; cursor: pointer; transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-align: center;
}
.tk-mobile-menu__lang-btn.is-active { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.tk-mobile-menu__lang-btn:hover:not(.is-active) { background: var(--bg-light); color: var(--text-dark); }

/* ---------- Breadcrumb ---------- */
.tk-breadcrumb {
  padding: calc(var(--header-h) + 20px) 0 0;
  font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.tk-breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.tk-breadcrumb a:hover { color: var(--blue); }
.tk-breadcrumb span[aria-current] { color: var(--text-dark); font-weight: 500; }

/* ---------- Page hero (secondary hero for content pages) ---------- */
.tk-page-hero {
  background: radial-gradient(100% 100% at 50% 100%, rgba(2,127,244,0.40) 0%, rgba(2,127,244,0.00) 100%), #080D3C;
  padding-top: 40px; padding-bottom: 56px; overflow: hidden; border-radius: 24px;
  margin-top: 16px; margin-right: 24px; margin-left: 24px;
}
.tk-page-hero .tk-breadcrumb { padding-top: 0; margin-bottom: 24px; }
.tk-page-hero .tk-breadcrumb, .tk-page-hero .tk-breadcrumb a { color: rgba(255,255,255,0.55); }
.tk-page-hero .tk-breadcrumb span[aria-current] { color: rgba(255,255,255,0.9); }
.tk-page-hero__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.tk-page-hero__label {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); border: 1px solid rgba(2,127,244,0.05); background: rgba(2,127,244,0.20);
  border-radius: 100px; padding: 5px 14px; margin-bottom: 24px;
}
.tk-page-hero__title { font-size: clamp(30px, 4vw, 44px); font-weight: 600; line-height: 1.15; color: var(--white); margin-bottom: 20px; }
.tk-page-hero__subtitle { font-size: 17px; line-height: 1.7; color: var(--text-light); margin-bottom: 24px; }
.tk-page-hero__bullets { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.tk-page-hero__bullets li { display: flex; align-items: flex-start; gap: 8px; font-size: 16px; color: #fff; line-height: 1.5; }
.tk-page-hero__bullets li::before { content: ''; flex-shrink: 0; width: 8px; height: 8px; margin-top: 6px; border-radius: 2px; background: #027FF4; }
.tk-page-hero__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.tk-page-hero__image {
  position: relative; border-radius: var(--radius-l); overflow: hidden; aspect-ratio: 5 / 4;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10);
}
.tk-page-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.tk-page-hero__updated { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 16px; }

/* Stat row — reused for hero stats and section stats */
.tk-stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 40px; }
.tk-stat-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.10); border-radius: 20px;
  padding: 20px; display: flex; flex-direction: column; gap: 6px; justify-content: center; text-align: center;
}
.tk-stat-card__value { font-size: 28px; font-weight: 600; color: var(--white); line-height: 1; }
.tk-stat-card__label { font-size: 14px; color: rgba(255,255,255,0.80); line-height: 1.4; font-weight: 400; }

.tk-stat-row--light { background: none; }
.tk-stat-row--light .tk-stat-card {
  background: #FFF; border: 1px solid var(--border); box-shadow: 0 0 6px 0 rgba(0,0,0,0.02), 0 2px 4px 0 rgba(0,0,0,0.08);
}
.tk-stat-row--light .tk-stat-card__value { color: var(--blue); }
.tk-stat-row--light .tk-stat-card__label { color: rgba(8,13,60,0.80); }

/* ---------- Generic section ---------- */
.tk-section { padding: var(--section-py) 0; border-top: 1px solid rgba(0,0,0,0.10); }
.tk-section:first-of-type { border-top: none; }
.tk-section--dark {
  border-top: none; border-radius: 24px; background: radial-gradient(100% 100% at 50% 100%, rgba(2,127,244,0.40) 0%, rgba(2,127,244,0.00) 100%), #080D3C;
  margin: 0 24px; padding: 64px 0;
}
.tk-section__header { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; max-width: 760px; }
.tk-section__label {
  width: fit-content; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); padding: 5px 14px; border-radius: 100px; border: 1px solid rgba(2,127,244,0.15); background: rgba(2,127,244,0.08);
}
.tk-section__title { font-size: clamp(26px, 3.6vw, 36px); font-weight: 600; color: #080D3C; line-height: 1.25; letter-spacing: -0.8px; }
.tk-section__title--light { color: #fff; }
.tk-section__subtitle { font-size: 16px; color: rgba(8,13,60,0.80); line-height: 1.7; }
.tk-section__subtitle--light { color: rgba(255,255,255,0.80); }

/* ---------- Definition / feature cards ---------- */
.tk-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tk-card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.tk-card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.tk-card {
  border: 1px solid var(--border); border-radius: 20px; padding: 24px; background: #FFF;
  box-shadow: 0 0 6px 0 rgba(0,0,0,0.02), 0 2px 4px 0 rgba(0,0,0,0.08); display: flex; flex-direction: column; gap: 8px;
  transition: box-shadow 0.2s;
}
.tk-card:hover { box-shadow: var(--shadow); }
.tk-card__title { font-size: 17px; font-weight: 600; color: #080D3C; line-height: 1.3; }
.tk-card__text { font-size: 15px; color: rgba(8,13,60,0.80); line-height: 1.6; }
.tk-card__icon { width: 40px; height: 40px; border-radius: 12px; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }

/* ---------- Timeline / process steps ---------- */
.tk-timeline { display: flex; flex-direction: column; gap: 0; counter-reset: tk-step; }
.tk-timeline__item {
  display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding: 28px 0; border-top: 1px solid var(--border);
}
.tk-timeline__item:first-child { border-top: none; }
.tk-timeline__num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tk-timeline__meta { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.tk-timeline__when {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue);
  background: var(--blue-light); border-radius: 100px; padding: 4px 10px;
}
.tk-timeline__title { font-size: 19px; font-weight: 600; color: #080D3C; }
.tk-timeline__text { font-size: 15px; color: rgba(8,13,60,0.80); line-height: 1.65; }
.tk-timeline__note {
  margin-top: 16px; padding: 14px 16px; border-radius: 12px; background: #FFF7ED; border: 1px solid #FDE7C7;
  font-size: 14px; color: #92400E; line-height: 1.6;
}

/* Compact 3-step variant (for short flows) */
.tk-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tk-steps-grid__item { display: flex; flex-direction: column; gap: 8px; }
.tk-steps-grid__num {
  width: 32px; height: 32px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-bottom: 8px;
}

/* ---------- Tables (comparison / data) ---------- */
.tk-table-wrap { border-radius: var(--radius-l); overflow-x: auto; border: 1px solid var(--border); background: #FFF; }
.tk-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 560px; }
.tk-table thead tr { background: #0f1f40; color: #fff; }
.tk-table th { padding: 14px 16px; text-align: left; font-weight: 600; font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.6); white-space: nowrap; }
.tk-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); color: var(--text-mid); font-size: 14px; vertical-align: top; }
.tk-table tbody tr:nth-child(even) { background: var(--bg-section); }
.tk-table tbody tr:last-child td { border-bottom: none; }
.tk-table td:first-child, .tk-table th:first-child { font-weight: 600; color: var(--text-dark); }
.tk-table--dark { border-color: rgba(255,255,255,0.08); background: #0E1F3D; }
.tk-table--dark td { color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.06); }
.tk-table--dark tbody tr:nth-child(even) { background: #0f1f40; }
.tk-table--dark td:first-child { color: #fff; }

/* ---------- Document / checklist grid ---------- */
.tk-doc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tk-doc-card {
  border: 1px solid var(--border); border-radius: var(--radius-l); background: #FFF; padding: 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.tk-doc-card__title { font-size: 15px; font-weight: 600; color: #080D3C; line-height: 1.4; display: flex; align-items: flex-start; gap: 8px; }
.tk-doc-card__title svg { flex-shrink: 0; margin-top: 2px; }
.tk-doc-card__text { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* ---------- Checklist with check icons ---------- */
.tk-check-list { display: flex; flex-direction: column; gap: 10px; }
.tk-check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-mid); line-height: 1.55; }
.tk-check-list li svg { flex-shrink: 0; margin-top: 2px; }
.tk-check-list--light li { color: #fff; }

.tk-cross-list { display: flex; flex-direction: column; gap: 10px; }
.tk-cross-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-mid); line-height: 1.55; }
.tk-cross-list li .tk-cross { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: #FEE2E2; color: #DC2626; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 1px; }

/* ---------- FAQ (native details/summary accordion) ---------- */
.tk-faq-list { display: flex; flex-direction: column; gap: 12px; }
.tk-faq-item { border: 1px solid var(--border); border-radius: var(--radius-l); background: #FFF; overflow: hidden; }
.tk-faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 24px; font-size: 16px; font-weight: 600; color: #080D3C;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.tk-faq-item summary::-webkit-details-marker { display: none; }
.tk-faq-item summary::after {
  content: '+'; font-size: 22px; font-weight: 400; color: var(--blue); flex-shrink: 0; transition: transform 0.2s; line-height: 1;
}
.tk-faq-item[open] summary::after { transform: rotate(45deg); }
.tk-faq-item__body { padding: 0 24px 20px; font-size: 15px; color: rgba(8,13,60,0.80); line-height: 1.65; }

/* ---------- Comparison / decision cards ---------- */
.tk-pick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tk-pick-card { border: 1px solid var(--border); border-radius: var(--radius-l); background: #FFF; padding: 20px; }
.tk-pick-card__title { font-size: 15px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.tk-pick-card__text { font-size: 14px; color: var(--text-mid); line-height: 1.55; }

/* ---------- Callout / important note ---------- */
.tk-callout { border-radius: var(--radius-l); border: 1px solid rgba(2,127,244,0.15); background: rgba(2,127,244,0.05); padding: 20px 24px; font-size: 15px; color: rgba(8,13,60,0.85); line-height: 1.6; }
.tk-callout strong { color: var(--text-dark); }
.tk-callout--warn { border-color: #FDE7C7; background: #FFF7ED; color: #92400E; }

/* ---------- Related / next-step cards ---------- */
.tk-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tk-related-card {
  border: 1px solid var(--border); border-radius: var(--radius-l); background: #FFF; padding: 20px;
  display: flex; flex-direction: column; gap: 6px; transition: box-shadow 0.2s, border-color 0.2s;
}
a.tk-related-card:hover { box-shadow: var(--shadow); border-color: rgba(27,110,243,0.25); }
.tk-related-card--muted { opacity: 0.85; }
.tk-related-card__title { font-size: 16px; font-weight: 600; color: #080D3C; }
.tk-related-card__text { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* ---------- Two-column definition block (ИИН / ЭЦП style) ---------- */
.tk-definition-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.tk-definition-card { border: 1px solid var(--border); border-radius: var(--radius-l); background: #FFF; padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.tk-definition-card__tag {
  width: fit-content; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue);
  background: var(--blue-light); border-radius: 100px; padding: 4px 12px;
}
.tk-definition-card__title { font-size: 20px; font-weight: 600; color: #080D3C; }
.tk-definition-card__text { font-size: 15px; color: rgba(8,13,60,0.80); line-height: 1.65; }
.tk-definition-card__how { border-top: 1px solid var(--border); margin-top: 4px; padding-top: 12px; }
.tk-definition-card__how-label { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.tk-definition-card__how-text { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ---------- CTA banner ---------- */
.tk-cta-banner {
  padding: 64px 0; border-radius: 24px; margin: 0 24px;
  background: radial-gradient(100% 100% at 50% 100%, rgba(2,127,244,0.40) 0%, rgba(2,127,244,0.00) 100%), #080D3C;
}
.tk-cta-banner__inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.tk-cta-banner__label {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue);
  padding: 5px 14px; border-radius: 100px; border: 1px solid rgba(2,127,244,0.15); background: rgba(2,127,244,0.08); margin-bottom: 20px;
}
.tk-cta-banner__title { font-size: clamp(24px, 3vw, 32px); font-weight: 600; color: #fff; line-height: 1.25; margin-bottom: 12px; }
.tk-cta-banner__text { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 24px; }
.tk-cta-banner__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; }
.tk-cta-banner__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: #fff; line-height: 1.5; }
.tk-cta-banner__actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }

/* ---------- Footer ---------- */
.tk-footer { padding: 64px 0 40px; }
.tk-footer__layout { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.tk-footer__logos { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.tk-footer__logo-link img { height: 32px; width: auto; }
.tk-footer__about { font-size: 14px; color: var(--text-mid); line-height: 1.6; max-width: 320px; }
.tk-footer__nav-col-title { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.tk-footer__nav-list { display: flex; flex-direction: column; gap: 8px; }
.tk-footer__nav-list li { display: flex; align-items: center; gap: 8px; }
.tk-footer__nav-list a { font-size: 14px; color: var(--text-mid); transition: color 0.2s; }
.tk-footer__nav-list a:hover { color: var(--blue); }
.tk-footer__contact-list { display: flex; flex-direction: column; gap: 12px; list-style: none; padding: 0; margin: 0; }
.tk-footer__contact-list li { display: flex; align-items: flex-start; gap: 10px; flex-shrink: 0; }
.tk-footer__contact-list li svg { margin-top: 1px; flex-shrink: 0; }
.tk-footer__contact-list a, .tk-footer__contact-list span { font-size: 14px; color: var(--text-mid); line-height: 1.5; transition: color 0.2s; }
.tk-footer__contact-list a:hover { color: var(--blue); }
.tk-footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 24px; }
.tk-footer__copyright { font-size: 13px; color: var(--text-muted); }
.tk-footer__updated { font-size: 13px; color: var(--text-muted); }

/* ---------- Utility ---------- */
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-10 { margin-top: 40px; }
.d-flex { display: flex; align-items: center; gap: 8px; }
.tk-more-link { display: inline-flex; gap: 4px; align-items: center; color: #13CFD4; font-size: 14px; font-weight: 700; line-height: 20px; letter-spacing: 0.42px; text-transform: uppercase; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .tk-header__nav, .tk-header__cta { display: none; }
  .tk-header__burger { display: flex; }

  .tk-page-hero__inner { grid-template-columns: 1fr; }
  .tk-page-hero__image { max-width: 480px; margin: 0 auto; }
  .tk-stat-row { grid-template-columns: repeat(2, 1fr); }

  .tk-card-grid, .tk-card-grid--3, .tk-card-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .tk-doc-grid { grid-template-columns: repeat(2, 1fr); }
  .tk-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .tk-pick-grid { grid-template-columns: repeat(2, 1fr); }
  .tk-related-grid { grid-template-columns: repeat(2, 1fr); }
  .tk-definition-grid { grid-template-columns: 1fr; }

  .tk-cta-banner__inner { grid-template-columns: 1fr; gap: 32px; }

  .tk-footer__layout { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .tk-footer__logos, .tk-footer__about { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .tk-page-hero { margin-left: 12px; margin-right: 12px; padding-top: 32px; padding-bottom: 40px; }
  .tk-page-hero__title { font-size: 30px; }
  .tk-page-hero__image { display: none; }
  .tk-stat-row { grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 32px; }
  .tk-stat-card { padding: 14px 10px; }
  .tk-stat-card__value { font-size: 22px; }

  .tk-card-grid, .tk-card-grid--3, .tk-card-grid--2 { grid-template-columns: 1fr; }
  .tk-doc-grid { grid-template-columns: 1fr; }
  .tk-steps-grid { grid-template-columns: 1fr; }
  .tk-pick-grid { grid-template-columns: 1fr; }
  .tk-related-grid { grid-template-columns: 1fr; }

  .tk-timeline__item { grid-template-columns: 40px 1fr; gap: 16px; padding: 20px 0; }
  .tk-timeline__title { font-size: 17px; }

  .tk-section--dark, .tk-cta-banner { margin-left: 12px; margin-right: 12px; }
  .tk-footer__layout { grid-template-columns: 1fr; gap: 32px; }
  .tk-footer { padding: 48px 0 32px; }
}

@media (max-width: 480px) {
  :root { --section-py: 48px; }
  .tk-page-hero { margin-left: 0; margin-right: 0; border-radius: 0 0 20px 20px; }
  .tk-section--dark, .tk-cta-banner { margin-left: 0; margin-right: 0; border-radius: 20px; }
  .tk-stat-row { grid-template-columns: 1fr 1fr; }
}
