:root {
  --cnk-red: #6e1313;
  --cnk-blue: #2c6485;
  --cnk-gray: #58595b;
  --ink: #202124;
  --ink-soft: var(--cnk-gray);
  --paper: #f6f5f2;
  --surface: #ffffff;
  --line: #d9d9d7;
  --brand: var(--cnk-red);
  --brand-deep: #4c0d0d;
  --accent: var(--cnk-blue);
  --success: var(--cnk-blue);
  --white: #ffffff;
  --radius-sm: 4px;
  --radius-md: 14px;
  --shadow: 0 22px 70px rgba(32, 33, 36, .14);
  --wrap: min(1180px, calc(100% - 40px));
  --z-sticky: 100;
  --z-overlay: 200;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { touch-action: manipulation; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Manrope", "Be Vietnam Pro", sans-serif; line-height: 1.12; text-wrap: balance; }
p { text-wrap: pretty; }
.wrap { width: var(--wrap); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; padding: 10px 14px; background: var(--white); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.demo-bar { background: var(--brand-deep); color: #f6eaea; font-size: 13px; }
.demo-bar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.demo-bar__actions { display: flex; align-items: center; gap: 8px; }
.save-state { margin-right: 4px; color: #e8caca; font-size: 11px; white-space: nowrap; }
.demo-bar__button { min-height: 32px; display: inline-flex; align-items: center; justify-content: center; padding: 4px 12px; border: 1px solid rgba(255,255,255,.4); border-radius: var(--radius-sm); color: inherit; background: transparent; cursor: pointer; }
.demo-bar__button:hover, .demo-bar__button[aria-pressed="true"] { color: var(--ink); background: var(--white); }

.site-header { position: sticky; top: 0; z-index: var(--z-sticky); background: rgba(246,245,242,.94); border-bottom: 1px solid rgba(32,33,36,.12); backdrop-filter: blur(14px); }
.site-header__inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: block; width: 132px; height: 58px; overflow: hidden; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.primary-nav { display: flex; align-items: center; gap: 18px; font-size: 13px; font-weight: 600; }
.primary-nav a:not(.nav-cta):not(.nav-cv) { position: relative; }
.primary-nav a:not(.nav-cta):not(.nav-cv)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--brand); transition: right 220ms cubic-bezier(.2,.8,.2,1); }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { right: 0; }
.nav-cta { min-height: 46px; display: inline-flex; align-items: center; padding: 0 20px; color: var(--white); background: var(--brand); border-radius: var(--radius-sm); }
.nav-cta:hover { background: var(--brand-deep); }
.nav-cv { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 0 16px; color: var(--brand-deep); background: transparent; border: 1px solid var(--brand-deep); border-radius: var(--radius-sm); font-weight: 700; }
.nav-cv:hover, .nav-cv:focus-visible { color: var(--white); background: var(--brand-deep); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-group { position: relative; }
.nav-group__toggle { min-height: 44px; display: inline-flex; align-items: center; gap: 6px; padding: 0; color: var(--ink); background: transparent; border: 0; font-size: inherit; font-weight: inherit; cursor: pointer; }
.nav-group__toggle span { color: var(--brand); transition: transform 180ms ease; }
.nav-group.is-open .nav-group__toggle span { transform: rotate(180deg); }
.nav-submenu { position: absolute; top: calc(100% + 12px); left: -18px; width: 250px; padding: 10px; visibility: hidden; opacity: 0; transform: translateY(-8px); background: var(--surface); border: 1px solid var(--line); box-shadow: 0 18px 48px rgba(32,33,36,.16); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms; }
.nav-submenu::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.nav-submenu a { display: block; padding: 11px 12px; line-height: 1.45; }
.nav-submenu a:hover { color: var(--brand); background: #f8efef; }
.nav-group:hover .nav-submenu, .nav-group:focus-within .nav-submenu, .nav-group.is-open .nav-submenu { visibility: visible; opacity: 1; transform: translateY(0); }
.menu-button { display: none; width: 48px; height: 48px; border: 0; background: transparent; cursor: pointer; }
.cnk-site-header .menu-button:hover, .cnk-site-header .menu-button:focus { color: var(--ink); background: #f8efef; }
.menu-button span { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--ink); }

.hero { padding: clamp(54px, 7vw, 104px) 0 72px; overflow: clip; }
.hero__grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.hero__copy, .hero__visual, .section-head > *, .expertise__copy, .insights__grid > *, .contact__grid > * { min-width: 0; }
.eyebrow { margin-bottom: 18px; color: var(--brand); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow--light { color: #e8caca; }
.hero h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(42px, 5.1vw, 74px); letter-spacing: -.045em; }
.hero__lead { max-width: 640px; margin-bottom: 32px; color: var(--ink-soft); font-size: clamp(17px, 1.4vw, 20px); }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; margin-bottom: 46px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border: 1px solid transparent; border-radius: var(--radius-sm); font-weight: 700; cursor: pointer; transition: transform 180ms cubic-bezier(.2,.8,.2,1), background-color 180ms; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--white); background: var(--brand); box-shadow: 0 12px 28px rgba(110,19,19,.22); }
.button--primary:hover { background: var(--brand-deep); }
.button--light { width: 100%; color: var(--brand-deep); background: var(--white); }
.button--ghost { color: var(--brand-deep); background: transparent; border-color: #b9b9b7; }
.button--ghost:hover { background: #f6eded; }
.text-link { display: inline-flex; align-items: center; gap: 10px; border-bottom: 1px solid currentColor; font-weight: 600; }
.text-link span { transition: transform 180ms cubic-bezier(.2,.8,.2,1); }
.text-link:hover span { transform: translateX(4px); }
.proof-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding-top: 24px; border-top: 1px solid var(--line); }
.proof-strip div { padding-right: 18px; }
.proof-strip div + div { padding-left: 18px; border-left: 1px solid var(--line); }
.proof-strip dt { font-family: "Manrope", sans-serif; font-size: 22px; font-weight: 700; }
.proof-strip dd { margin: 2px 0 0; color: var(--ink-soft); font-size: 12px; line-height: 1.4; }
.hero__visual { position: relative; min-height: 590px; }
.hero__visual::before { content: ""; position: absolute; width: 42%; aspect-ratio: 1; top: -8%; right: -8%; border: 1px solid rgba(44,100,133,.34); border-radius: 50%; }
.hero__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 2px 80px 2px 2px; filter: saturate(.72) contrast(1.05); box-shadow: var(--shadow); }
.hero__note { position: absolute; left: -34px; bottom: 34px; display: flex; align-items: center; gap: 12px; max-width: 250px; padding: 15px 18px; background: var(--surface); border: 1px solid var(--line); box-shadow: 0 14px 40px rgba(17,37,40,.16); }
.hero__note p { margin: 0; font-size: 13px; line-height: 1.45; }
.pulse { width: 10px; height: 10px; flex: 0 0 10px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 7px rgba(44,100,133,.13); }

.sector-band { color: var(--white); background: var(--ink); }
.sector-band__inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 28px; overflow-x: auto; scrollbar-width: none; }
.sector-band__inner span { flex: 0 0 auto; color: #d7d8da; font-size: 13px; font-weight: 600; }
.sector-band__inner span::before { content: "/"; margin-right: 28px; color: var(--accent); }

.section { padding: clamp(82px, 10vw, 144px) 0; }
.section-head { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; margin-bottom: 68px; }
.section-head h2, .process__intro h2, .insights h2 { margin-bottom: 0; font-size: clamp(34px, 4vw, 56px); letter-spacing: -.035em; }
.section-head > p { max-width: 480px; margin-bottom: 4px; color: var(--ink-soft); }
.audience { padding-bottom: 0; }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.audience-card { min-height: 390px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: clamp(30px, 5vw, 58px); border: 1px solid var(--line); overflow: hidden; }
.audience-card--employer { color: var(--white); background: var(--brand); }
.audience-card--candidate { color: var(--white); background: var(--accent); }
.audience-card__label { margin-bottom: auto; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .78; }
.audience-card h3 { max-width: 560px; margin-bottom: 18px; font-size: clamp(28px, 3vw, 42px); }
.audience-card > p:not(.audience-card__label) { max-width: 570px; color: rgba(255,255,255,.82); }
.audience-card .text-link { margin-top: 12px; }
.service-list { border-top: 1px solid var(--line); }
.service-item { display: grid; grid-template-columns: 80px 1fr auto; gap: 34px; align-items: start; padding: 34px 0; border-bottom: 1px solid var(--line); }
.service-item__index { color: var(--accent); font-family: "Manrope", sans-serif; font-weight: 700; }
.service-item h3 { margin-bottom: 10px; font-size: clamp(23px, 2.3vw, 32px); }
.service-item p { max-width: 670px; margin-bottom: 0; color: var(--ink-soft); }
.service-item > a { min-width: 110px; padding-top: 6px; color: var(--brand); font-weight: 700; }

.expertise { padding: 0; color: var(--white); background: var(--brand-deep); }
.expertise__grid { width: 100%; max-width: none; display: grid; grid-template-columns: 1fr 1fr; }
.expertise__image { min-height: 760px; }
.expertise__image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.25) saturate(.6); }
.expertise__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 8vw, 128px); }
.expertise h2 { max-width: 750px; margin-bottom: 52px; font-size: clamp(34px, 3.8vw, 56px); letter-spacing: -.035em; }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: minmax(170px, .8fr) 1.2fr; gap: 28px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.2); }
.check-list strong { color: #fff; }
.check-list span { color: #dedfe0; }

.process__intro { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-bottom: 70px; }
.timeline { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.timeline li { display: grid; grid-template-columns: 90px 1fr; gap: 30px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.timeline > li > span { width: 48px; height: 48px; display: grid; place-items: center; color: var(--brand); border: 1px solid var(--brand); border-radius: 50%; font-family: "Manrope", sans-serif; font-size: 13px; font-weight: 700; }
.timeline h3 { margin: 0 0 8px; font-size: 26px; }
.timeline p { max-width: 760px; margin: 0; color: var(--ink-soft); }

.insights { background: var(--surface); }
.insights__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 130px); }
.insights__lead { position: sticky; top: 140px; align-self: start; }
.insights__lead > p:not(.eyebrow) { margin: 26px 0; color: var(--ink-soft); }
.insight-item { padding: 34px 0; border-top: 1px solid var(--line); }
.insight-item:last-child { border-bottom: 1px solid var(--line); }
.insight-item__meta { margin-bottom: 18px; color: var(--brand); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.insight-item h3 { max-width: 700px; margin-bottom: 14px; font-size: clamp(24px, 2.5vw, 34px); }
.insight-item > p:last-child { max-width: 680px; margin: 0; color: var(--ink-soft); }

.contact { color: var(--white); background: var(--brand); }
.contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 130px); }
.contact h2 { margin-bottom: 24px; font-size: clamp(40px, 5vw, 68px); letter-spacing: -.045em; }
.contact__copy > p:not(.eyebrow) { max-width: 540px; color: #f0dede; }
.contact__details { display: flex; flex-direction: column; gap: 6px; margin-top: 44px; font-weight: 600; }
.contact-form { padding: clamp(26px, 4vw, 50px); color: var(--ink); background: var(--surface); border-radius: var(--radius-sm); box-shadow: 0 24px 70px rgba(76,13,13,.22); }
.field, .field-row { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-row .field { margin-bottom: 0; }
.field label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 700; }
.field input, .field textarea { width: 100%; min-height: 50px; padding: 12px 14px; color: var(--ink); background: #fff; border: 1px solid #b9b9b7; border-radius: var(--radius-sm); font-size: 16px; }
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { outline: 3px solid rgba(110,19,19,.16); border-color: var(--brand); }
.field [aria-invalid="true"] { border-color: #b42318; }
.form-note, .form-status { margin: 12px 0 0; color: var(--ink-soft); font-size: 12px; }
.form-status { color: var(--success); font-weight: 700; }

.site-footer { padding: 74px 0 22px; color: #dedfe0; background: var(--ink); }
.site-footer__grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr .9fr; gap: clamp(30px, 4vw, 58px); padding-bottom: 62px; }
.footer-brand img { width: 150px; height: 82px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-brand p { color: #bfc0c2; }
.site-footer h2 { margin-bottom: 18px; color: var(--white); font-size: 14px; }
.site-footer__grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.site-footer .footer-links nav { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.site-footer .footer-links nav a, .site-footer .footer-links nav span { line-height: 1.55; }
.site-footer .footer-contact nav span { color: #bfc0c2; }
.site-footer__grid a:hover { color: var(--white); }
.site-footer__bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); color: #aeb0b3; font-size: 12px; }

.reveal,
.reveal.is-visible { opacity: 1; transform: none; }
.edit-toast { position: fixed; right: 20px; bottom: 20px; z-index: var(--z-overlay); max-width: 340px; padding: 14px 18px; color: var(--white); background: var(--brand-deep); box-shadow: var(--shadow); opacity: 0; transform: translateY(14px); pointer-events: none; transition: opacity 220ms, transform 220ms; }
.edit-toast.is-visible { opacity: 1; transform: translateY(0); }
body.editing [data-editable] { outline: 1px dashed rgba(217,148,67,.9); outline-offset: 4px; cursor: text; }
body.editing [data-editable]:focus { outline: 3px solid rgba(217,148,67,.55); background: rgba(255,255,255,.08); }
.review-panel { position: fixed; top: 0; right: 0; bottom: 0; z-index: 300; width: min(460px, 100%); padding: 28px; color: var(--ink); background: var(--surface); box-shadow: -24px 0 80px rgba(17,37,40,.22); overflow-y: auto; transform: translateX(105%); transition: transform 260ms cubic-bezier(.2,.8,.2,1); }
.review-panel.is-open { transform: translateX(0); }
.review-panel__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.review-panel__head p { margin-bottom: 3px; color: var(--brand); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.review-panel__head h2 { margin: 0; font-size: 28px; }
.review-panel__close { width: 44px; height: 44px; flex: 0 0 44px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: transparent; font-size: 25px; cursor: pointer; }
.review-panel__intro { margin: 22px 0; color: var(--ink-soft); }
.review-panel label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 700; }
.review-panel textarea { width: 100%; min-height: 220px; padding: 14px; border: 1px solid #aebcba; border-radius: var(--radius-sm); color: var(--ink); background: #fff; font-size: 16px; resize: vertical; }
.review-panel textarea:focus { outline: 3px solid rgba(110,19,19,.16); border-color: var(--brand); }
.review-panel__meta { display: flex; justify-content: space-between; gap: 12px; margin: 12px 0 22px; color: var(--ink-soft); font-size: 11px; }
.review-panel__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.review-panel__hint { margin: 18px 0 0; color: var(--ink-soft); font-size: 11px; }
.review-scrim { position: fixed; inset: 0; z-index: var(--z-overlay); background: rgba(17,37,40,.55); }
.review-scrim:not([hidden]) { display: block; }

.api-page { min-height: 100dvh; background: #edf1ec; }
.api-header { background: var(--surface); border-bottom: 1px solid var(--line); }
.api-header__inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.api-main { padding: clamp(58px, 8vw, 104px) 0; }
.api-intro { max-width: 850px; margin-bottom: 46px; }
.api-intro h1 { margin-bottom: 18px; font-size: clamp(44px, 6vw, 76px); letter-spacing: -.05em; }
.api-intro > p:last-child { max-width: 760px; color: var(--ink-soft); font-size: 18px; }
.api-console { color: var(--ink); background: var(--surface); border: 1px solid var(--line); box-shadow: 0 18px 54px rgba(17,37,40,.08); }
.api-console__form { padding: clamp(24px, 4vw, 44px); }
.api-console__form h2 { margin-bottom: 20px; font-size: 24px; }
.api-console label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 700; }
.api-input-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.api-input-row input { width: 100%; min-width: 0; min-height: 54px; padding: 11px 15px; border: 1px solid #aebcba; border-radius: var(--radius-sm); color: var(--ink); background: #fff; font-size: 16px; }
.api-input-row input:focus { outline: 3px solid rgba(110,19,19,.16); border-color: var(--brand); }
.api-input-row input[aria-invalid="true"] { border-color: #b42318; }
.api-console form > p { margin: 8px 0 0; color: var(--ink-soft); font-size: 12px; }
.api-console code, .api-guide code { padding: 2px 5px; color: var(--brand-deep); background: #e7eeea; border-radius: 3px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.api-presets { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.api-presets button, .api-raw__tools button { min-height: 40px; padding: 7px 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--brand-deep); background: #f5f7f3; cursor: pointer; }
.api-presets button:hover, .api-raw__tools button:hover { border-color: var(--brand); background: #e9f1ed; }
.api-status { min-height: 48px; display: flex; align-items: center; gap: 10px; padding: 10px clamp(24px, 4vw, 44px); color: var(--ink-soft); background: #eef2ed; border-top: 1px solid var(--line); font-size: 13px; }
.api-status__dot { width: 9px; height: 9px; border-radius: 50%; background: #7d8a87; }
.api-status[data-state="loading"] .api-status__dot { background: var(--accent); }
.api-status[data-state="success"] .api-status__dot { background: var(--success); box-shadow: 0 0 0 5px rgba(38,117,92,.12); }
.api-status[data-state="error"] { color: #8f2018; background: #fff0ed; }
.api-status[data-state="error"] .api-status__dot { background: #b42318; }
.api-result { margin-top: 54px; scroll-margin-top: 28px; }
.api-result__head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 24px; }
.api-result__head h2 { margin: 0; font-size: 34px; }
.api-metrics { display: flex; margin: 0; border: 1px solid var(--line); background: var(--surface); }
.api-metrics div { min-width: 120px; padding: 12px 16px; }
.api-metrics div + div { border-left: 1px solid var(--line); }
.api-metrics dt { color: var(--ink-soft); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.api-metrics dd { margin: 2px 0 0; font-family: "Manrope", sans-serif; font-size: 14px; font-weight: 700; }
.api-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(260px, .7fr); gap: 18px; }
.api-preview, .api-details, .api-raw, .api-guide { padding: clamp(24px, 4vw, 42px); background: var(--surface); border: 1px solid var(--line); }
.api-label { margin-bottom: 14px; color: var(--brand); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.api-preview > h2 { margin-bottom: 8px; font-size: clamp(28px, 3.4vw, 44px); }
.api-meta { margin-bottom: 28px; color: var(--ink-soft); font-size: 12px; }
.api-content { max-height: 560px; overflow: auto; color: #2b4346; white-space: pre-line; }
.api-content ol { margin: 0; padding-left: 22px; }
.api-content li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.api-content li strong, .api-content li span { display: block; }
.api-content li span { margin-top: 3px; color: var(--ink-soft); font-size: 11px; }
.api-details h2 { margin-bottom: 22px; font-size: 20px; }
.api-details dl { margin: 0; }
.api-details dl div { padding: 12px 0; border-top: 1px solid var(--line); }
.api-details dt { color: var(--ink-soft); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.api-details dd { margin: 4px 0 0; overflow-wrap: anywhere; font-size: 13px; }
.api-raw { margin-top: 18px; padding: 0; }
.api-raw summary { padding: 18px 24px; font-weight: 700; cursor: pointer; }
.api-raw__tools { display: flex; justify-content: flex-end; padding: 0 24px 10px; }
.api-raw pre { max-height: 560px; margin: 0; padding: 24px; overflow: auto; color: #d9efec; background: #102b2e; font: 12px/1.65 ui-monospace, SFMono-Regular, Menlo, monospace; white-space: pre-wrap; overflow-wrap: anywhere; }
.api-guide { margin-top: 18px; }
.api-guide h2 { font-size: 24px; }
.api-guide p { color: var(--ink-soft); }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
@media (max-width: 920px) {
  :root { --wrap: min(calc(100% - 32px), 740px); }
  .menu-button { display: block; }
  .primary-nav { position: fixed; top: 116px; left: 16px; right: 16px; z-index: var(--z-overlay); display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 16px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { min-height: 48px; display: flex; align-items: center; padding: 0 12px; }
  .primary-nav a::after { display: none; }
  .nav-group { width: 100%; }
  .nav-group__toggle { width: 100%; min-height: 48px; justify-content: space-between; padding: 0 12px; }
  .nav-submenu { position: static; width: 100%; max-height: 0; padding: 0 0 0 12px; visibility: visible; opacity: 1; overflow: hidden; transform: none; background: #f8f6f3; border: 0; box-shadow: none; transition: max-height 220ms ease, padding 220ms ease; }
  .nav-group.is-open .nav-submenu { max-height: 380px; padding-top: 6px; padding-bottom: 6px; }
  .nav-group:hover:not(.is-open) .nav-submenu { max-height: 0; padding-top: 0; padding-bottom: 0; }
  .nav-cta { margin-top: 8px; justify-content: center; }
  .primary-nav .nav-actions { width: 100%; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr); gap: 8px; margin-top: 8px; }
  .primary-nav .nav-actions .nav-cta, .primary-nav .nav-actions .nav-cv { min-width: 0; margin-top: 0; padding-inline: 8px; text-align: center; }
  .hero__grid, .section-head, .audience-grid, .expertise__grid, .process__intro, .insights__grid, .contact__grid { grid-template-columns: 1fr; }
  .api-grid { grid-template-columns: 1fr; }
  .api-result__head { align-items: flex-start; flex-direction: column; }
  .hero__visual { min-height: 460px; }
  .hero__note { left: 18px; }
  .section-head { gap: 20px; }
  .expertise__image { min-height: 480px; }
  .expertise__copy { padding: 76px 32px; }
  .process__intro { gap: 12px; }
  .insights__lead { position: static; }
}
@media (max-width: 620px) {
  .demo-bar__inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; padding: 7px 0; }
  .demo-bar__inner > span { max-width: 140px; line-height: 1.35; }
  .demo-bar__actions { gap: 5px; }
  .save-state { display: none; }
  .demo-bar__actions > a.demo-bar__button { display: none; }
  .demo-bar__button { flex: 0 0 auto; max-width: 96px; padding-inline: 7px; font-size: 10px; }
  .api-header__inner { min-height: 70px; }
  .api-header__inner .text-link { font-size: 12px; }
  .api-input-row { grid-template-columns: 1fr; }
  .api-input-row .button { width: 100%; }
  .api-metrics { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); }
  .api-metrics div { min-width: 0; padding: 10px; }
  .api-metrics dd { font-size: 11px; }
  .site-header__inner { min-height: 68px; }
  .brand { width: 108px; height: 50px; }
  .primary-nav { top: 110px; }
  .hero { padding-top: 54px; }
  .hero h1 { font-size: clamp(38px, 11.4vw, 55px); }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero__actions .text-link { max-width: 100%; white-space: normal; }
  .hero__visual { min-height: 380px; }
  .hero__visual img { border-radius: 2px 48px 2px 2px; }
  .proof-strip { grid-template-columns: 1fr; gap: 16px; }
  .proof-strip div + div { padding: 16px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .service-item { grid-template-columns: 48px 1fr; gap: 18px; }
  .service-item > a { grid-column: 2; }
  .expertise__image { min-height: 330px; }
  .expertise__copy { padding: 64px 20px; }
  .check-list li { grid-template-columns: 1fr; gap: 8px; }
  .timeline li { grid-template-columns: 58px 1fr; gap: 16px; }
  .field-row, .site-footer__grid { grid-template-columns: 1fr; }
  .review-panel { padding: 22px 18px; }
  .review-panel__actions { grid-template-columns: 1fr; }
  .site-footer__grid { gap: 34px; }
  .site-footer__bottom { flex-direction: column; gap: 6px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.cnk-production-contact-card {
  align-content: center;
}

.cnk-production-contact-card > p {
  color: var(--ink-soft);
}

.cnk-production-contact-card__actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

/* CNK homepage concept — screenshot-led local review */
.home-redesign {
  color: #202124;
  background: #fff;
  font-size: 16px;
}
.home-redesign main {
  overflow: clip;
}
.home-redesign .wrap {
  width: min(1180px, calc(100% - 40px));
}
.home-redesign .site-header {
  display: block !important;
  position: sticky;
  opacity: 1 !important;
  visibility: visible;
  background: rgba(255, 255, 255, .97);
  border-color: #e3e3e1;
}
.home-redesign .site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand) 0 38%, var(--accent) 38% 72%, var(--ink-soft) 72%);
  opacity: .72;
}
.home-redesign .site-header__inner {
  min-height: 82px;
}
.home-redesign .site-header .wrap {
  width: min(1280px, calc(100% - 40px));
}
.home-redesign .demo-bar .wrap {
  width: min(1280px, calc(100% - 40px));
}
.home-redesign .brand {
  width: 102px;
  height: 64px;
  flex: 0 0 auto;
}
.home-redesign .primary-nav {
  gap: 18px;
  color: #242529;
  font-size: 13px;
}
.home-redesign .primary-nav .is-current {
  color: var(--brand);
}
.home-redesign .primary-nav .is-current::after {
  right: 0;
}
.home-redesign .nav-cta {
  min-height: 44px;
  padding-inline: 18px;
  color: #fff;
  box-shadow: 0 10px 24px rgba(110, 19, 19, .16);
}
.home-redesign .nav-cv {
  color: var(--cnk-blue);
  border-color: var(--cnk-blue);
  font-weight: 700;
}
.home-redesign .nav-cv:hover,
.home-redesign .nav-cv:focus-visible {
  color: #fff;
  background: var(--cnk-blue);
}
.home-redesign .nav-cta::after {
  display: none;
}
.home-redesign .nav-submenu {
  width: 260px;
}
.home-redesign svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cnk-kicker {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.cnk-kicker--light {
  color: #f2caca;
}
.cnk-rule {
  width: 62px;
  height: 3px;
  display: block;
  margin: 24px 0;
  background: var(--cnk-red);
}
.cnk-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}
.cnk-button:hover {
  transform: translateY(-2px);
}
.cnk-button:active {
  transform: translateY(0) scale(.985);
}
.cnk-button svg {
  width: 18px;
  height: 18px;
}
.cnk-button--primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 14px 30px rgba(110, 19, 19, .2);
}
.cnk-button--primary:hover {
  background: var(--brand-deep);
}
.cnk-button--outline {
  color: var(--brand);
  background: transparent;
  border-color: var(--brand);
}
.cnk-button--outline:hover {
  color: #fff;
  background: var(--brand);
}
.cnk-button--outline-light {
  color: #fff;
  background: rgba(7, 21, 36, .2);
  border-color: rgba(255, 255, 255, .72);
}
.cnk-button--outline-light:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}
.cnk-button--white {
  min-width: 250px;
  color: var(--brand);
  background: #fff;
}
.cnk-button--full {
  width: 100%;
}

.cnk-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #fff;
  background: #07192c;
}
.cnk-hero__media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 38%, rgba(110, 19, 19, .48), transparent 48%),
    linear-gradient(90deg, rgba(4, 19, 36, .95) 0%, rgba(44, 100, 133, .48) 65%, rgba(5, 24, 44, .36) 100%),
    linear-gradient(0deg, rgba(4, 18, 34, .48), rgba(4, 18, 34, .05)),
    url("../images/home/banner-home.png") center / cover no-repeat;
  transform: scale(1.01);
}
.cnk-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 100% 80px;
  mix-blend-mode: soft-light;
}
.cnk-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 78px;
}
.cnk-hero__copy {
  width: min(760px, 66%);
  min-width: 0;
}
.cnk-hero__copy > * {
  max-width: 100%;
}
.cnk-hero h1 {
  margin-bottom: 10px;
  color: #fff;
}
.cnk-hero__brand {
  display: block;
  color: #fff;
  font-size: clamp(48px, 5vw, 70px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.045em;
}
.cnk-hero__headline {
  max-width: 760px;
  margin-bottom: 18px;
  color: #f4d9d9;
  font-family: "Manrope", "Be Vietnam Pro", sans-serif;
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.03em;
}
.cnk-hero__statement {
  max-width: 610px;
  margin-bottom: 0;
  font-family: "Manrope", "Be Vietnam Pro", sans-serif;
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.025em;
}
.cnk-hero__lead {
  max-width: 590px;
  margin-bottom: 30px;
  color: #e0e7ed;
  font-size: 16px;
  line-height: 1.75;
}
.cnk-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cnk-hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  color: #f1f4f6;
  font-size: 13px;
}
.cnk-hero__trust svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.cnk-capabilities {
  color: var(--accent);
  background: #fff;
  border-top: 4px solid var(--accent);
  border-bottom: 1px solid #e8e8e6;
  box-shadow: 0 14px 34px rgba(12, 41, 73, .05);
}
.cnk-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.cnk-capabilities article {
  min-height: 156px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  align-items: center;
  padding: 30px 28px;
}
.cnk-capabilities article + article {
  border-left: 1px solid #dedfdf;
}
.cnk-capabilities article > svg {
  width: 44px;
  height: 44px;
}
.cnk-capabilities h2 {
  margin: 0 0 6px;
  color: #242529;
  font-size: 15px;
}
.cnk-capabilities p {
  margin: 0;
  color: #58595b;
  font-size: 13px;
  line-height: 1.55;
}
.cnk-capabilities__summary {
  max-width: 920px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 22px 0;
  color: var(--cnk-gray);
  border-top: 1px solid #e6e8e9;
  text-align: center;
  font-size: 14px;
}

.cnk-about-panel {
  background: #fff;
}
.cnk-about-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: clamp(54px, 7vw, 96px);
  align-items: center;
}
.cnk-about-panel__visual {
  position: relative;
  min-width: 0;
  min-height: 510px;
  margin-bottom: 44px;
}
.cnk-about-panel__visual img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  object-position: 68% center;
  border: 1px solid #dce6eb;
}
.cnk-about-panel__badge {
  position: absolute;
  right: 23%;
  bottom: -44px;
  left: -28px;
  min-height: 174px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 38px;
  color: #fff;
  background: var(--cnk-blue);
  box-shadow: 0 18px 42px rgba(44, 100, 133, .23);
}
.cnk-about-panel__badge .cnk-rule {
  margin: 0 0 20px;
}
.cnk-about-panel__badge strong {
  max-width: 430px;
  font-family: "Manrope", "Be Vietnam Pro", sans-serif;
  font-size: clamp(22px, 2.3vw, 31px);
  line-height: 1.25;
}
.cnk-about-panel__content h2 {
  margin-bottom: 24px;
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -.04em;
}
.cnk-about-panel__content {
  min-width: 0;
}
.cnk-about-panel__content > p:not(.cnk-kicker) {
  margin-bottom: 30px;
  color: var(--ink-soft);
}
.cnk-about-panel__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 26px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
.cnk-about-panel__features li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  color: #2d3033;
  font-size: 14px;
}
.cnk-about-panel__features span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--cnk-blue);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
}

.cnk-section {
  padding: 104px 0;
  scroll-margin-top: 100px;
}
.cnk-section-head {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}
.cnk-section-head h2 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 50px);
  letter-spacing: -.035em;
}
.cnk-challenge {
  background: #fbfbfa;
}
.cnk-challenge__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
}
.cnk-challenge__copy h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 3.6vw, 52px);
  letter-spacing: -.04em;
}
.cnk-challenge__copy > p:not(.cnk-kicker) {
  margin-bottom: 30px;
  color: var(--ink-soft);
}
.cnk-challenge__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.cnk-mini-card {
  min-height: 190px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 27px 24px;
  background: #fff;
  border: 1px solid #ececea;
  box-shadow: 0 12px 32px rgba(32, 33, 36, .06);
}
.cnk-icon-disc {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
}
.cnk-mini-card:nth-child(even) .cnk-icon-disc {
  background: var(--accent);
}
.cnk-icon-disc svg {
  width: 24px;
  height: 24px;
}
.cnk-mini-card h3 {
  margin: 2px 0 8px;
  font-size: 16px;
}
.cnk-mini-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.cnk-process {
  background: #fff;
}
.cnk-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}
.cnk-process__grid li {
  position: relative;
  padding: 10px 27px 0;
  text-align: center;
}
.cnk-process__grid li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 69px;
  left: calc(50% + 62px);
  width: calc(100% - 124px);
  border-top: 1px dashed #87a1b6;
}
.cnk-process__grid li:not(:last-child)::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 65px;
  right: 54px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #5e7c94;
  border-right: 1px solid #5e7c94;
  transform: rotate(45deg);
}
.cnk-step-number {
  position: absolute;
  z-index: 2;
  top: 0;
  left: calc(50% + 24px);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 0 0 5px #fff;
}
.cnk-step-number--blue {
  background: var(--accent);
}
.cnk-step-icon {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  margin: 15px auto 22px;
  color: var(--accent);
  background: #fff;
  border: 1px solid #d6dadd;
  border-radius: 50%;
}
.cnk-step-icon svg {
  width: 42px;
  height: 42px;
}
.cnk-process__grid h3 {
  margin-bottom: 10px;
  font-size: 17px;
}
.cnk-process__grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}
.cnk-process__closing {
  max-width: 820px;
  margin: 48px auto 0;
  padding: 22px 28px;
  color: var(--cnk-blue);
  background: #f2f6f8;
  border-left: 4px solid var(--cnk-red);
  text-align: center;
  font-family: "Manrope", "Be Vietnam Pro", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.cnk-services {
  background: #f2f6f8;
}
.cnk-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.cnk-service-card {
  min-width: 0;
  background: #fff;
  border: 1px solid #dce6eb;
  box-shadow: 0 12px 34px rgba(12, 41, 73, .06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.cnk-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(12, 41, 73, .11);
}
.cnk-service-card__image {
  position: relative;
  height: 230px;
  background-position: center;
  background-size: cover;
}
.cnk-service-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 25, 44, .32), transparent 62%);
}
.cnk-service-card__image--executive {
  background-image: url("../images/home/team.jpg");
}
.cnk-service-card__image--fdi {
  background-image: url("../images/home/banner-home-alt.png");
  background-position: 60% center;
}
.cnk-service-card__image--confidential {
  background-image:
    linear-gradient(rgba(7, 25, 44, .2), rgba(7, 25, 44, .2)),
    url("../images/home/service.jpg");
}
.cnk-service-card__image--mapping {
  background-image: url("../images/home/hero.jpg");
  background-position: 66% center;
}
.cnk-service-card__icon {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: -26px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border: 4px solid #fff;
}
.cnk-service-card__icon--blue {
  background: var(--accent);
}
.cnk-service-card:nth-child(3) .cnk-service-card__icon {
  background: var(--ink-soft);
}
.cnk-service-card__icon svg {
  width: 25px;
  height: 25px;
}
.cnk-service-card__body {
  padding: 43px 25px 27px;
}
.cnk-service-card h3 {
  margin-bottom: 13px;
  font-size: 21px;
}
.cnk-service-card p {
  min-height: 72px;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 14px;
}
.cnk-service-card a {
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
}

.cnk-roles {
  background: #fff;
}
.cnk-roles__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #dce6eb;
  border-bottom: 1px solid #dce6eb;
}
.cnk-roles__grid article {
  min-width: 0;
  padding: 30px 24px;
}
.cnk-roles__grid article + article {
  border-left: 1px solid #dce6eb;
}
.cnk-roles__grid span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: #fff;
  background: var(--cnk-blue);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
}
.cnk-roles__grid article:nth-child(even) span {
  background: var(--cnk-red);
}
.cnk-roles__grid h3 {
  min-height: 48px;
  margin-bottom: 12px;
  font-size: 17px;
}
.cnk-roles__grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}
.cnk-roles__note {
  margin: 22px 0 0;
  color: var(--ink-soft);
  text-align: center;
  font-size: 12px;
}

.cnk-fdi {
  position: relative;
  padding: 94px 0;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(44, 100, 133, .98), rgba(44, 100, 133, .93) 62%, rgba(88, 89, 91, .9)),
    url("../images/home/banner-home.png") center / cover no-repeat;
}
.cnk-fdi__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
}
.cnk-fdi__copy h2 {
  max-width: 760px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(36px, 4.2vw, 56px);
  letter-spacing: -.04em;
}
.cnk-fdi__copy > p:not(.cnk-kicker) {
  max-width: 730px;
  margin-bottom: 30px;
  color: #e5eef3;
}
.cnk-fdi__points {
  display: grid;
  gap: 14px;
}
.cnk-fdi__points article {
  padding: 24px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(7px);
}
.cnk-fdi__points strong,
.cnk-fdi__points span {
  display: block;
}
.cnk-fdi__points strong {
  margin-bottom: 7px;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
}
.cnk-fdi__points span {
  color: #e2edf2;
  font-size: 13px;
}

.cnk-values {
  position: relative;
  padding: 78px 0 82px;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(44, 100, 133, .97), rgba(44, 100, 133, .91) 68%, rgba(88, 89, 91, .9)),
    url("../images/home/team.jpg") center / cover no-repeat;
  scroll-margin-top: 100px;
}
.cnk-values__head {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 50px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.cnk-values__head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 3.5vw, 48px);
}
.cnk-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.cnk-values__grid article {
  padding: 30px 26px 0;
}
.cnk-values__grid article:first-child {
  padding-left: 0;
}
.cnk-values__grid article + article {
  border-left: 1px solid rgba(255,255,255,.18);
}
.cnk-values__grid strong,
.cnk-values__grid span {
  display: block;
}
.cnk-values__grid strong {
  margin-bottom: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
}
.cnk-values__grid span {
  color: #dce5ec;
  font-size: 13px;
  line-height: 1.6;
}

.cnk-testimonials {
  padding: 96px 0;
  background: #f2f6f8;
}
.cnk-testimonials__layout {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 2.28fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: center;
}
.cnk-testimonials__intro h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 3.3vw, 46px);
  letter-spacing: -.035em;
}
.cnk-testimonials__intro > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}
.cnk-testimonials__panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border: 1px solid #dce6eb;
  box-shadow: 0 20px 54px rgba(12, 41, 73, .09);
}
.cnk-testimonials__panel article {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 34px 30px 30px;
}
.cnk-testimonials__panel article + article {
  border-left: 1px solid #dce6eb;
}
.cnk-quote-mark {
  display: block;
  height: 32px;
  color: var(--cnk-blue);
  font-family: Georgia, serif;
  font-size: 54px;
  font-weight: 700;
  line-height: .9;
}
.cnk-testimonials blockquote {
  flex: 1;
  margin: 16px 0 30px;
  color: #35383b;
  font-size: 14px;
  line-height: 1.75;
}
.cnk-testimonials__role {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
}
.cnk-testimonials__role > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--cnk-blue);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}
.cnk-testimonials__panel article:nth-child(2) .cnk-testimonials__role > span {
  background: var(--cnk-red);
}
.cnk-testimonials__panel article:nth-child(3) .cnk-testimonials__role > span {
  background: var(--cnk-gray);
}
.cnk-testimonials__role strong,
.cnk-testimonials__role small {
  display: block;
}
.cnk-testimonials__role strong {
  color: var(--cnk-blue);
  font-size: 13px;
}
.cnk-testimonials__role small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 10px;
}

.cnk-insight-strip {
  padding: 70px 0;
  background: #fff;
  scroll-margin-top: 100px;
}
.cnk-insight-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 50px;
  align-items: center;
}
.cnk-insight-strip h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
}
.cnk-insight-strip__topics {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  list-style: none;
  font-size: 14px;
}
.cnk-insight-strip__topics li {
  position: relative;
  padding-left: 18px;
}
.cnk-insight-strip__topics li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 8px;
  border-top: 2px solid var(--cnk-red);
}

.cnk-insights {
  background: #fff;
  scroll-margin-top: 100px;
}
.cnk-insights__head {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(42px, 7vw, 94px);
  align-items: end;
  margin-bottom: 44px;
}
.cnk-insights__head h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -.04em;
}
.cnk-insights__head > p {
  margin: 0;
  color: var(--ink-soft);
}
.cnk-insights__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dce6eb;
}
.cnk-insights__tabs button,
.cnk-insights__tabs a {
  min-height: 44px;
  padding: 9px 17px;
  color: var(--cnk-gray);
  background: #fff;
  border: 1px solid #cfdce3;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}
.cnk-insights__tabs button:hover,
.cnk-insights__tabs a:hover {
  color: var(--cnk-red);
  border-color: var(--cnk-red);
}
.cnk-insights__tabs button.is-active,
.cnk-insights__tabs a.is-active {
  color: #fff;
  background: var(--cnk-blue);
  border-color: var(--cnk-blue);
}
.cnk-insights__toolbar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}
.cnk-insights__toolbar h3 {
  margin: 0;
  font-size: 22px;
}
.cnk-insights__toolbar span {
  color: var(--cnk-blue);
  font-size: 11px;
  font-weight: 600;
}
.cnk-insights__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #dce6eb;
  border-bottom: 1px solid #dce6eb;
}
.cnk-blog-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.cnk-blog-card + .cnk-blog-card {
  border-left: 1px solid #dce6eb;
}
.cnk-blog-card[hidden] {
  display: none;
}
.cnk-blog-card__image {
  position: relative;
  aspect-ratio: 16 / 9;
  display: block;
  margin: 14px 14px 0;
  overflow: hidden;
  background: #dce6eb;
  border-radius: 12px;
  box-shadow: 0 9px 24px rgba(12, 41, 73, .12);
}
.cnk-blog-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 25, 44, .24), transparent 54%);
  pointer-events: none;
}
.cnk-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}
.cnk-blog-card:hover .cnk-blog-card__image img {
  transform: scale(1.035);
}
.cnk-blog-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 26px 30px;
}
.cnk-blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 17px;
}
.cnk-blog-card__meta span {
  display: block;
  color: var(--cnk-red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cnk-blog-card__meta time {
  color: var(--cnk-gray);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}
.cnk-blog-card h3 {
  margin-bottom: 13px;
  font-size: 21px;
}
.cnk-blog-card h3 a {
  transition: color 180ms ease;
}
.cnk-blog-card h3 a:hover {
  color: var(--cnk-red);
}
.cnk-blog-card p {
  flex: 1;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 13px;
}
.cnk-blog-card__read {
  align-self: flex-start;
  color: var(--cnk-red);
  font-size: 12px;
  font-weight: 700;
}
.cnk-insights__cta {
  width: max-content;
  display: flex;
  margin: 34px auto 0;
}

.cnk-candidate {
  padding: 66px 0;
  background: #f2f6f8;
  scroll-margin-top: 100px;
}
.cnk-candidate__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 54px;
  align-items: center;
}
.cnk-candidate h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 3.1vw, 42px);
}
.cnk-candidate p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink-soft);
}
.cnk-candidate__actions {
  display: flex;
  gap: 12px;
}

.cnk-headhunt {
  background: #f2f6f8;
}
.cnk-headhunt__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}
.cnk-headhunt__grid li {
  position: relative;
  min-width: 0;
  padding: 0 18px;
  text-align: center;
}
.cnk-headhunt__grid li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  border-top: 1px dashed #7f9aae;
}
.cnk-headhunt__grid span {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  color: #fff;
  background: var(--cnk-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 8px #f2f6f8;
  font-size: 10px;
  font-weight: 700;
}
.cnk-headhunt__grid li:nth-child(even) span {
  background: var(--cnk-red);
}
.cnk-headhunt__grid h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.cnk-trust {
  padding: 86px 0;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(44, 100, 133, .98), rgba(44, 100, 133, .92) 68%, rgba(88, 89, 91, .91)),
    url("../images/home/team.jpg") center / cover no-repeat;
}
.cnk-trust__head {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.cnk-trust__head h2 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
}
.cnk-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.cnk-trust__grid article {
  padding: 30px 26px 0;
}
.cnk-trust__grid article:first-child {
  padding-left: 0;
}
.cnk-trust__grid article + article {
  border-left: 1px solid rgba(255,255,255,.2);
}
.cnk-trust__grid strong,
.cnk-trust__grid span {
  display: block;
}
.cnk-trust__grid strong {
  margin-bottom: 9px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}
.cnk-trust__grid span {
  color: #e0ebf0;
  font-size: 13px;
}

.cnk-cta {
  padding: 30px 0;
  color: #fff;
  background: var(--cnk-red);
}
.cnk-cta__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.cnk-cta__icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
}
.cnk-cta__icon svg {
  width: 34px;
  height: 34px;
}
.cnk-cta h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 24px;
}
.cnk-cta p {
  margin: 0;
  color: #f4dddd;
  font-size: 14px;
}

.cnk-contact {
  padding: 96px 0;
  color: #202124;
  background: #f4f6f7;
  scroll-margin-top: 100px;
}
.cnk-contact__grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border: 1px solid #dce3e7;
  box-shadow: 0 22px 64px rgba(12, 41, 73, .1);
}
.cnk-contact__copy {
  padding: clamp(38px, 5vw, 64px);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(44, 100, 133, .96), rgba(44, 100, 133, .88)),
    url("../images/home/banner-home.png") center / cover no-repeat;
}
.cnk-contact__copy h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(34px, 3.6vw, 48px);
}
.cnk-contact__copy > p:not(.cnk-kicker) {
  max-width: 530px;
  color: #e7f0f5;
}
.cnk-contact__copy ul {
  display: grid;
  gap: 16px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
.cnk-contact__copy li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  color: #f3f5f6;
  font-size: 14px;
}
.cnk-contact__copy li svg {
  width: 21px;
  height: 21px;
  color: #fff;
}
.cnk-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
  margin: 30px 0 34px;
}
.cnk-contact__actions > a:not(.cnk-button) {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.home-redesign .contact-form {
  padding: clamp(34px, 5vw, 58px);
  color: #202124;
  background: #fff;
  box-shadow: none;
}
.cnk-contact-form__head {
  margin-bottom: 28px;
}
.cnk-contact-form__head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
}
.home-redesign .contact-form .cnk-button {
  border: 0;
}
.cnk-production-contact-card .wpcf7 {
  margin-top: 26px;
}
.cnk-production-contact-card .wpcf7 form {
  display: grid;
  gap: 16px;
  margin: 0;
}
.cnk-production-contact-card .wpcf7 form > p {
  margin: 0;
}
.cnk-production-contact-card .wpcf7 label {
  display: grid;
  gap: 8px;
  color: #202124;
  font-size: 13px;
  font-weight: 700;
}
.cnk-production-contact-card .wpcf7-form-control-wrap {
  display: block;
}
.cnk-production-contact-card .wpcf7 input:not([type="submit"]),
.cnk-production-contact-card .wpcf7 textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: #202124;
  background: #fff;
  border: 1px solid #b8c1c7;
  border-radius: 6px;
  font: inherit;
}
.cnk-production-contact-card .wpcf7 textarea {
  min-height: 132px;
  resize: vertical;
}
.cnk-production-contact-card .wpcf7 input:not([type="submit"]):focus,
.cnk-production-contact-card .wpcf7 textarea:focus {
  outline: 3px solid rgba(110, 19, 19, .15);
  border-color: #6e1313;
}
.cnk-production-contact-card .wpcf7-submit {
  width: 100%;
  min-height: 50px;
  padding: 12px 20px;
  color: #fff;
  background: #6e1313;
  border: 0;
  border-radius: 4px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.cnk-production-contact-card .wpcf7-submit:hover,
.cnk-production-contact-card .wpcf7-submit:focus-visible {
  background: #541010;
}
.cnk-production-contact-card .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 12px;
}
.cnk-production-contact-card .wpcf7-response-output {
  margin: 0 !important;
  padding: 10px 12px !important;
  font-size: 13px;
}
.cnk-production-contact-card .wpcf7-spinner {
  margin: 8px auto 0;
}
.cnk-home-cf7__fallback {
  margin: 24px 0 0;
}

.home-redesign .site-footer {
  padding-top: 62px;
  background: #24282c;
}
.home-redesign .site-footer__grid {
  grid-template-columns: 1.25fr 1fr 1fr .9fr;
  gap: clamp(30px, 4vw, 58px);
}
.home-redesign .footer-brand p {
  max-width: 310px;
  font-size: 13px;
}
.home-redesign .site-footer__grid > div:not(.footer-brand) {
  gap: 10px;
  font-size: 13px;
}

@media (max-width: 1080px) {
  .home-redesign .primary-nav {
    gap: 13px;
    font-size: 12px;
  }
  .home-redesign .nav-cta {
    display: none;
  }
  .home-redesign .nav-cv {
    display: none;
  }
  .home-redesign .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1180px) and (min-width: 921px) {
  .cnk-site-header .nav-cta,
  .cnk-site-header .nav-cv {
    display: none;
  }
}

@media (max-width: 920px) {
  .cnk-site-header .nav-group__toggle {
    color: var(--ink);
    background: transparent;
    border: 0;
  }
  .cnk-site-header .nav-group.is-open > .nav-group__toggle {
    color: var(--brand);
    background: #f8efef;
  }
  .cnk-nav-open .cnk-contact-dock {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
  .home-redesign .site-header {
    position: sticky;
  }
  .home-redesign .site-header__inner {
    position: relative;
    min-height: 72px;
  }
  .home-redesign .brand {
    width: 92px;
    height: 56px;
  }
  .home-redesign .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    max-height: calc(100dvh - 116px);
    overflow-y: auto;
    font-size: 14px;
  }
  .home-redesign .menu-button {
    flex: 0 0 48px;
  }
  .home-redesign .nav-cta {
    display: flex;
  }
  .home-redesign .nav-cv {
    display: flex;
  }
  .cnk-hero {
    min-height: 620px;
  }
  .cnk-hero__copy {
    width: min(650px, 82%);
  }
  .cnk-capabilities__grid {
    grid-template-columns: 1fr 1fr;
  }
  .cnk-capabilities article:nth-child(3) {
    border-left: 0;
  }
  .cnk-capabilities article:nth-child(n+3) {
    border-top: 1px solid #dedfdf;
  }
  .cnk-about-panel__grid,
  .cnk-challenge__grid,
  .cnk-fdi__grid,
  .cnk-testimonials__layout,
  .cnk-contact__grid {
    grid-template-columns: 1fr;
  }
  .cnk-about-panel__visual {
    width: calc(100% - 28px);
    margin-left: 28px;
  }
  .cnk-about-panel__content {
    max-width: 720px;
  }
  .cnk-challenge__copy {
    max-width: 700px;
  }
  .cnk-process__grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 54px;
  }
  .cnk-process__grid li::before,
  .cnk-process__grid li::after {
    display: none;
  }
  .cnk-services__grid {
    grid-template-columns: 1fr 1fr;
  }
  .cnk-service-card p {
    min-height: 0;
  }
  .cnk-roles__grid {
    grid-template-columns: 1fr 1fr;
  }
  .cnk-roles__grid article:nth-child(odd) {
    border-left: 0;
  }
  .cnk-roles__grid article:nth-child(n+3) {
    border-top: 1px solid #dce6eb;
  }
  .cnk-roles__grid article:last-child {
    grid-column: 1 / -1;
  }
  .cnk-values__head,
  .cnk-insights__head,
  .cnk-insight-strip__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cnk-values__grid {
    grid-template-columns: 1fr 1fr;
  }
  .cnk-values__grid article:nth-child(3) {
    border-left: 0;
  }
  .cnk-values__grid article:nth-child(n+3) {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.18);
  }
  .cnk-testimonials__panel {
    grid-template-columns: 1fr;
  }
  .cnk-testimonials__panel article + article {
    border-top: 1px solid #dce6eb;
    border-left: 0;
  }
  .cnk-candidate__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cnk-headhunt__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 0;
  }
  .cnk-headhunt__grid li::after {
    display: none;
  }
  .cnk-trust__head {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .cnk-trust__grid {
    grid-template-columns: 1fr 1fr;
  }
  .cnk-trust__grid article:nth-child(3) {
    border-left: 0;
  }
  .cnk-trust__grid article:nth-child(n+3) {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.2);
  }
  .cnk-candidate__actions {
    justify-content: flex-start;
  }
  .cnk-cta__inner {
    grid-template-columns: auto 1fr;
  }
  .cnk-cta .cnk-button {
    grid-column: 2;
    justify-self: start;
  }
  .home-redesign .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .home-redesign .wrap {
    width: min(calc(100% - 32px), 560px);
  }
  .home-redesign .site-header .wrap,
  .home-redesign .demo-bar .wrap {
    width: min(calc(100% - 32px), 560px);
  }
  .cnk-hero {
    min-height: 680px;
  }
  .cnk-hero__media {
    background:
      radial-gradient(circle at 0 30%, rgba(110, 19, 19, .48), transparent 58%),
      linear-gradient(90deg, rgba(4, 19, 36, .95), rgba(44, 100, 133, .42)),
      url("../images/home/banner-home.png") 58% center / cover no-repeat;
  }
  .cnk-hero__inner {
    padding-block: 62px;
  }
  .cnk-hero__copy {
    width: 100%;
  }
  .cnk-hero h1 {
    margin-bottom: 9px;
  }
  .cnk-hero__brand {
    font-size: clamp(40px, 12vw, 52px);
  }
  .cnk-hero__headline {
    font-size: clamp(25px, 7.6vw, 32px);
    line-height: 1.16;
    overflow-wrap: break-word;
    text-wrap: balance;
  }
  .cnk-hero__statement {
    font-size: 25px;
  }
  .cnk-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .cnk-hero__actions .cnk-button {
    width: 100%;
  }
  .cnk-capabilities__grid {
    grid-template-columns: 1fr;
  }
  .cnk-capabilities article {
    min-height: 132px;
    padding: 24px 10px;
  }
  .cnk-capabilities article + article,
  .cnk-capabilities article:nth-child(3) {
    border-top: 1px solid #dedfdf;
    border-left: 0;
  }
  .cnk-section {
    padding: 74px 0;
  }
  .cnk-about-panel__visual {
    width: 100%;
    min-height: 410px;
    margin: 0 0 30px;
  }
  .cnk-about-panel__visual img {
    height: 320px;
  }
  .cnk-about-panel__badge {
    right: 16px;
    bottom: 0;
    left: 16px;
    min-height: 154px;
    padding: 24px;
  }
  .cnk-about-panel__features {
    grid-template-columns: 1fr;
  }
  .cnk-about-panel__content h2 {
    font-size: 32px;
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }
  .cnk-about-panel__content > p:not(.cnk-kicker),
  .cnk-about-panel__badge strong {
    overflow-wrap: anywhere;
  }
  .cnk-about-panel__badge strong {
    font-size: 23px;
    text-wrap: wrap;
  }
  .cnk-section-head {
    margin-bottom: 40px;
    text-align: left;
  }
  .cnk-challenge__grid {
    gap: 40px;
  }
  .cnk-challenge__cards {
    grid-template-columns: 1fr;
  }
  .cnk-mini-card {
    min-height: 0;
  }
  .cnk-process__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .cnk-process__grid li {
    display: grid;
    grid-template-columns: 92px 1fr;
    column-gap: 18px;
    padding: 0;
    text-align: left;
  }
  .cnk-step-icon {
    grid-row: 1 / span 3;
    width: 88px;
    height: 88px;
    margin: 0;
  }
  .cnk-step-number {
    top: -10px;
    left: 64px;
  }
  .cnk-process__grid h3 {
    align-self: end;
    margin-top: 4px;
  }
  .cnk-services__grid {
    grid-template-columns: 1fr;
  }
  .cnk-service-card:first-child {
    grid-column: auto;
  }
  .cnk-roles__grid {
    grid-template-columns: 1fr;
  }
  .cnk-roles__grid article,
  .cnk-roles__grid article:nth-child(odd) {
    border-left: 0;
  }
  .cnk-roles__grid article + article,
  .cnk-roles__grid article:nth-child(n+3) {
    border-top: 1px solid #dce6eb;
  }
  .cnk-roles__grid article:last-child {
    grid-column: auto;
  }
  .cnk-roles__grid h3 {
    min-height: 0;
  }
  .cnk-insights__grid {
    grid-template-columns: 1fr;
  }
  .cnk-blog-card + .cnk-blog-card {
    border-top: 1px solid #dce6eb;
    border-left: 0;
  }
  .cnk-insights__tabs {
    flex-wrap: nowrap;
    margin-inline: -16px;
    padding-inline: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }
  .cnk-insights__tabs::-webkit-scrollbar {
    display: none;
  }
  .cnk-insights__tabs button,
  .cnk-insights__tabs a {
    flex: 0 0 auto;
  }
  .cnk-insights__toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .cnk-headhunt__grid {
    position: relative;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cnk-headhunt__grid::before {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 24px;
    border-left: 1px dashed #7f9aae;
  }
  .cnk-headhunt__grid li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    align-items: center;
    padding: 0 0 28px;
    text-align: left;
  }
  .cnk-headhunt__grid span {
    margin: 0;
    box-shadow: 0 0 0 6px #f2f6f8;
  }
  .cnk-trust {
    padding: 68px 0;
  }
  .cnk-trust__grid {
    grid-template-columns: 1fr;
  }
  .cnk-trust__grid article,
  .cnk-trust__grid article:first-child {
    padding: 24px 0;
    border-left: 0;
  }
  .cnk-trust__grid article + article,
  .cnk-trust__grid article:nth-child(n+3) {
    margin-top: 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.2);
    border-left: 0;
  }
  .cnk-fdi {
    padding: 70px 0;
  }
  .cnk-fdi__copy h2 {
    font-size: 32px;
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }
  .cnk-values {
    padding: 68px 0;
  }
  .cnk-values__grid {
    grid-template-columns: 1fr;
  }
  .cnk-values__grid article,
  .cnk-values__grid article:first-child {
    padding: 24px 0;
    border-left: 0;
  }
  .cnk-values__grid article + article,
  .cnk-values__grid article:nth-child(n+3) {
    margin-top: 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.18);
    border-left: 0;
  }
  .cnk-insight-strip {
    padding: 58px 0;
  }
  .cnk-candidate__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .cnk-candidate__actions .cnk-button {
    width: 100%;
  }
  .cnk-testimonials {
    padding: 68px 0;
  }
  .cnk-testimonials__panel article {
    padding: 28px 24px;
  }
  .cnk-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cnk-cta__icon {
    margin: auto;
  }
  .cnk-cta .cnk-button {
    grid-column: auto;
    justify-self: stretch;
  }
  .cnk-contact {
    padding: 74px 0;
  }
  .cnk-contact__copy {
    padding: 38px 24px;
  }
  .home-redesign .contact-form {
    padding: 25px 20px;
  }
  .home-redesign .site-footer__grid {
    grid-template-columns: 1fr;
  }
}
