:root {
  --bg: #000;
  --surface: #0a0a0a;
  --surface-2: #0b0b0b;
  --white: #fff;
  --text: #fff;
  --muted: #999;
  --muted-2: #9c9c9c;
  --muted-3: #c9ccd2;
  --border: #1a1a1a;
  --border-2: #242424;
  --accent: #402986;
  --accent-2: #5b4bff;
  --error: #ff5a67;
  --success: #13a455;
  --field-surface: #111;
  --field-border: #242424;
  --field-label: #6f6f73;
  --field-text: #f4f4f5;
  --field-placeholder: #aeaeae;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-display: "Archivo Black", impact, "Arial Black", sans-serif;
  --container: 1421px;
  --pad-x: 20px;
}

* { box-sizing: border-box; }
html, body { margin: 0; width: 100%; min-height: 100%; min-width: 320px; overflow-x: hidden; }
html, body { font-family: var(--font-sans); color: var(--white); background: #000; scroll-behavior: smooth; }
img { width: 100%; height: auto; vertical-align: middle; }
a { color: inherit; text-decoration: none; transition: .2s color; cursor: pointer; }
a:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }
button { background: transparent; padding: 0; border: none; font-family: inherit; cursor: pointer; line-height: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6, p, figure { margin: 0; padding: 0; }
ul { padding: 0; margin: 0; list-style: none; }
input, textarea, select { outline: none; font-family: inherit; font-size: 1rem; border: none; padding: 0; background-color: transparent; color: inherit; }
label { cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.h1 { font-size: clamp(40px, 8.5vw, 72px); line-height: 1; font-weight: 400; font-family: var(--font-display); }
.h2 { font-size: clamp(32px, 6.4vw, 60px); line-height: 1; font-weight: 400; font-family: var(--font-display); }
.h3 { font-size: clamp(32px, 5.4vw, 52px); line-height: 1.1; font-weight: 400; font-family: var(--font-display); }

.eyebrow {
  font-weight: 400;
  line-height: 1.4;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: 2%;
  text-transform: uppercase;
}

.section { width: 100%; display: flex; flex-direction: column; align-items: center; background-color: #000; }
.section-inner { width: 100%; max-width: var(--container); margin: auto; padding: 40px var(--pad-x) 0; display: flex; flex-direction: column; align-items: flex-start; }

.liquid-glass-filter { position: absolute; overflow: hidden; width: 0; height: 0; pointer-events: none; }

.glass {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: rgba(255, 255, 255, .03);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
}
.glass::after {
  position: absolute; inset: 0; z-index: 0; border-radius: inherit; content: ""; pointer-events: none;
  border: 1px solid rgb(255 255 255 / 8%);
  box-shadow: inset 2px 2px 1px #ffffff33, inset -1px -1px 1px #ffffff14, inset 0 -18px 42px #0000002e;
}
.glass > * { position: relative; z-index: 1; }
.glass-lite { position: relative; isolation: isolate; overflow: hidden; }
.glass-lite::before {
  position: absolute; inset: 0; z-index: 0; border-radius: inherit; content: "";
  background: linear-gradient(145deg, #ffffff0d, #ffffff05 46%, #00000012);
  pointer-events: none;
}
.glass-lite > * { position: relative; z-index: 1; }

/* ---------- buttons: two systems ---------- */
.button {
  position: relative; display: inline-flex; height: 52px; align-items: center; justify-content: center;
  gap: 14px; padding: 0 28px; border: 2px solid; border-radius: 50px;
  font-size: 16px; font-weight: 600; line-height: 1; white-space: nowrap;
  transition: background-color .2s ease-out, border-color .2s ease-out, color .1s linear 50ms;
}
.button-light { background: #fff; border-color: #000; color: #000; }
.button-light:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.button-dark { background: #1a1a1a; border: 0; color: #fefefe; }
.button-dark:hover { background: #242424; }
.button .arrow { display: inline-flex; transition: transform .3s ease; }
.button:hover .arrow { transform: translateY(3px); }

/* ---------- header ---------- */
.site-header { width: 100%; background: #000; }
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 52px; padding-top: 24px; padding-bottom: 24px;
}
.logo { display: inline-flex; align-items: center; color: #fff; font-size: 28px; font-weight: 700; line-height: 1; white-space: nowrap; font-family: var(--font-display); }
.logo span { text-decoration: underline; text-decoration-color: #fff; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.logo-svg { display: block; width: auto; height: 26px; color: #fff; }
.footer-logo { line-height: 1; }
.footer-logo .logo-svg { height: 28px; }
.header-actions { display: none; align-items: center; gap: clamp(24px, 6vw, 80px); }
.primary-nav { display: flex; align-items: center; gap: 22px; color: #999; font-size: 16px; line-height: 1; white-space: nowrap; }
.primary-nav a:hover { color: #fff; }
.burger { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 1px solid #1a1a1a; border-radius: 50%; background: #0f0f0f; color: #fff; }
.burger span { display: block; width: 18px; height: 2px; background: #fff; }
.mobile-panel { display: none; flex-direction: column; gap: 6px; padding: 8px 0 20px; }
.mobile-panel a { color: #cecece; font-size: 18px; padding: 10px 0; }
.mobile-panel.open { display: flex; }
.mobile-panel .button { margin-top: 10px; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; isolation: isolate; width: 100%; background: #000; }
.hero canvas { position: absolute; z-index: 0; top: 40%; left: 0; width: 100%; height: 620px; pointer-events: none; opacity: .72; }
.hero-inner { position: relative; z-index: 1; padding-top: 32px; padding-bottom: 20px; }
.hero h1 { max-width: 700px; margin: 0 0 20px; color: #fff; text-shadow: 0 4px 4px rgb(0 0 0 / 25%); text-transform: uppercase; }
.hero-subtitle { max-width: 560px; color: #a8abb1; font-size: 18px; line-height: 1.4; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- kpi row ---------- */
.kpi-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 15px; width: 100%; margin-top: 40px; }
.kpi-card { position: relative; isolation: isolate; display: flex; min-height: 200px; flex-direction: column; align-items: flex-start; gap: 18px; overflow: hidden; padding: 24px; border-radius: 32px; }
.kpi-label { color: #999; font-size: 12px; letter-spacing: .02em; text-transform: uppercase; }
.kpi-stat { display: flex; align-items: baseline; gap: 8px; }
.kpi-stat strong { color: #fff; font-family: var(--font-display); font-size: clamp(48px, 12vw, 72px); font-weight: 400; line-height: 1; }
.kpi-stat span { color: #999; font-size: 18px; font-weight: 600; line-height: 1; }
.kpi-description { color: #c9ccd2; font-size: 15px; line-height: 1.3; }

/* ---------- about split ---------- */
.about-inner { padding: 41px var(--pad-x) 0; }
.about-columns { display: grid; grid-template-columns: 1fr; gap: 36px; width: 100%; }
.about-copy p { color: #b8b8b8; font-size: 16px; line-height: 1.5; margin-bottom: 18px; }
.about-copy p strong { color: #fff; font-weight: 600; }
.about-title { margin-bottom: 16px; color: #fff; }
.about-card { border-radius: 32px; padding: 24px; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; width: 100%; }
.about-card .right-title { font-family: var(--font-display); font-size: 24px; line-height: 1.1; color: #fff; text-transform: uppercase; }
.about-card .right-intro { font-size: 14px; line-height: 1.3; color: #a5a5a5; }
.feature-list { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px; border-radius: 18px; width: 100%; }
.icon-tile { flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px; background: #060c10; display: flex; align-items: center; justify-content: center; color: var(--accent-2); font-size: 18px; }
.feature-text { display: flex; flex-direction: column; gap: 4px; }
.feature-title { font-size: 14px; font-weight: 600; color: #fff; line-height: 1.2; }
.feature-desc { font-size: 12px; color: #8f8f98; line-height: 1.3; }

/* ---------- section heading ---------- */
.section-heading { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 34px; width: 100%; }
.meta-row { display: flex; align-items: flex-start; gap: 36px; width: 100%; justify-content: space-between; margin-bottom: 20px; }
.meta-label { font-size: 12px; letter-spacing: .02em; color: #7a7a7a; text-transform: uppercase; }
.section-subtitle { color: #9c9c9c; font-size: 16px; line-height: 1.4; max-width: 640px; margin-top: 10px; }

/* ---------- numbered pillar grid ---------- */
.pillars-grid { display: grid; grid-template-columns: 1fr; gap: 15px; width: 100%; }
.pillar-card { position: relative; display: flex; flex-direction: column; border-radius: 28px; padding: 24px; min-height: 220px; }
.pillar-number { position: absolute; top: 24px; right: 24px; color: #363636; font-size: 16px; line-height: 1.2; font-weight: 600; }
.pillar-title { margin: 0 0 24px; max-width: calc(100% - 48px); font-family: var(--font-display); font-size: 24px; line-height: 1.1; text-transform: uppercase; }
.pillar-title span { display: block; }
.pillar-desc { margin: 0; color: #fff; font-size: 15px; line-height: 1.35; }
.pillar-tags { margin: auto 0 0; padding-top: 22px; color: #a5a5a5; font-size: 13px; line-height: 1.2; font-weight: 600; }

/* ---------- cases ---------- */
.cases-grid { display: grid; grid-template-columns: 1fr; gap: 24px; width: 100%; }
.case-card { display: flex; flex-direction: column; gap: 16px; padding: 24px; border-radius: 28px; }
.case-eyebrow { color: #cecece; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.case-image { width: 100%; border-radius: 16px; aspect-ratio: 600 / 316; object-fit: cover; background: #0b0b0b; }
.accent-bar { width: 38px; height: 2px; }
.brand-mark { font-family: var(--font-display); font-size: 30px; line-height: 1; color: #fff; text-transform: uppercase; }
.case-desc { color: #b8b8b8; font-size: 15px; line-height: 1.4; }
.case-desc a { text-decoration: underline; }
.case-meta { color: #767a81; font-size: 13px; }
.case-link { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: 14px; font-weight: 600; width: fit-content; }
.case-link span { transition: transform .3s ease; display: inline-flex; }
.case-link:hover span { transform: rotate(-45deg); }

/* ---------- tech stack chip cloud ---------- */
.stack-content { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; width: 100%; }
.stack-top { display: flex; flex-direction: column; gap: 24px; width: 100%; border-radius: 24px; padding: 18px; }
.stack-left { width: 100%; max-width: 269px; }
.stack-left p { font-size: 34px; font-weight: 400; line-height: 1.1; color: #fff; font-family: var(--font-display); }
.stack-left span { font-size: 20px; margin-top: 6px; display: flex; text-transform: uppercase; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; width: 100%; }
.chip { display: inline-flex; width: fit-content; padding: 11px 18px; gap: 8px; border-radius: 18px; color: #fff; font-size: 14px; font-weight: 600; line-height: 1.2; align-items: center; }
.stack-boxes { width: 100%; display: grid; grid-template-columns: 1fr; gap: 15px; }
.stack-box { width: 100%; display: flex; gap: 16px; padding: 20px; flex-direction: column; align-items: flex-start; border-radius: 24px; }
.box-label { color: #fff; font-size: 18px; font-weight: 600; line-height: 1.2; }
.chips-small { display: flex; flex-wrap: wrap; gap: 8px; width: 100%; }
.chip-small { display: inline-flex; width: fit-content; padding: 10px 14px; border-radius: 16px; color: #fff; font-size: 13px; font-weight: 500; line-height: 1.2; }

/* ---------- packages (commercial) ---------- */
.packages-grid { display: grid; grid-template-columns: 1fr; gap: 20px; width: 100%; }
.package-card { display: flex; flex-direction: column; gap: 18px; padding: 28px 24px; border-radius: 28px; min-height: 100%; }
.package-card.featured { outline: 1px solid var(--accent-2); }
.package-name { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; color: #fff; line-height: 1.1; }
.package-price { display: flex; align-items: baseline; gap: 6px; }
.package-price strong { font-family: var(--font-display); font-size: 40px; color: #fff; line-height: 1; font-weight: 400; }
.package-price span { color: #9c9c9c; font-size: 14px; }
.package-desc { color: #b8b8b8; font-size: 14px; line-height: 1.4; }
.package-features { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; border-top: 1px solid var(--border); padding-top: 16px; }
.package-features li { color: #c9ccd2; font-size: 14px; line-height: 1.3; padding-left: 20px; position: relative; }
.package-features li::before { content: "→"; position: absolute; left: 0; color: var(--accent-2); }
.package-card .button { margin-top: auto; width: 100%; }

/* ---------- form ---------- */
.form-section { width: 100%; display: flex; flex-direction: column; align-items: center; background-color: #000; }
.form-content { display: grid; grid-template-columns: 1fr; align-items: flex-start; gap: 24px; padding: 24px; border-radius: 30px; width: 100%; }
.form-left { display: none; position: relative; width: 100%; min-height: 320px; overflow: hidden; border-radius: 28px; }
.form-left .left-text { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 28px; -webkit-backdrop-filter: blur(50px); backdrop-filter: blur(50px); width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.form-left .big-text { font-size: 40px; font-weight: 400; line-height: 1.2; color: #fff; font-family: var(--font-display); text-transform: uppercase; }
.form-left .left-desc { font-size: 14px; line-height: 1.2; margin-top: 12px; max-width: 220px; color: #c9ccd2; }
.blob { border-radius: 50%; position: absolute; filter: blur(4px); }
.blob-cyan { width: 260px; height: 260px; background: #18d4ff; opacity: .38; right: -20px; top: 0; }
.blob-blue { width: 300px; height: 300px; background: #5b4bff; opacity: .4; right: 90px; top: 60px; }
.blob-purple { width: 200px; height: 200px; background: #b135ff; opacity: .18; right: 40px; top: 180px; }
.blob-green { width: 200px; height: 200px; background: #68f2a7; opacity: .18; right: 260px; bottom: 0; }
.form-right { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; width: 100%; }
.form-title { color: #fff; font-size: 28px; font-weight: 400; line-height: 1.1; font-family: var(--font-display); text-transform: uppercase; }
.intake-form { width: 100%; display: flex; flex-direction: column; align-items: flex-start; gap: 26px; }
.personal-fields { width: 100%; display: grid; grid-template-columns: 1fr; gap: 18px; }
.spec-fields { width: 100%; display: grid; grid-template-columns: 1fr; gap: 18px; }
.field { position: relative; width: 100%; display: flex; flex-direction: column-reverse; align-items: flex-start; gap: 8px; padding-bottom: 16px; }
.field-label { font-size: 12px; color: var(--field-label); font-weight: 400; line-height: 1.2; transition: color .2s; }
.field input, .field textarea {
  width: 100%; border: 1px solid var(--field-border); background: var(--field-surface); border-radius: 12px;
  color: var(--field-text); font-size: 16px; line-height: 1.3; padding: 12px 14px; transition: border-color .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--field-placeholder); }
.field input:focus, .field textarea:focus { border-color: var(--field-border-focus, #f4f4f5); }
.field input:focus + .field-label, .field textarea:focus + .field-label { color: #f4f4f5; }
.error-text { color: var(--error); font-size: 11px; line-height: 1.2; display: none; }
.field.has-error input, .field.has-error textarea { border-color: var(--error); }
.field.has-error .error-text { display: block; }
.field.has-error .field-label { color: var(--error); }
.checkbox-field { display: flex; align-items: flex-start; gap: 12px; width: 100%; position: relative; padding-top: 6px; cursor: pointer; }
.checkbox-field input { flex-shrink: 0; width: 18px; height: 18px; appearance: none; -webkit-appearance: none; border: 1px solid #f3f3f4; border-radius: 5px; background: #f3f3f4; cursor: pointer; position: relative; margin-top: 2px; }
.checkbox-field input:checked { background: var(--accent); border-color: var(--accent); }
.checkbox-field input:checked::after { content: ""; position: absolute; left: 5px; top: 1px; width: 5px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.checkbox-text { font-size: 13px; color: #a8abb1; line-height: 1.4; }
.checkbox-text a { text-decoration: underline; color: #fff; }
.checkbox-field.has-error .checkbox-text { color: var(--error); }
.submit-button { width: 100%; display: flex; align-items: center; justify-content: center; gap: 12px; border-radius: 18px; padding: 14px; background-color: #fff; transition: all .2s; }
.submit-button .submit-text { font-size: 16px; line-height: 1.2; font-weight: 600; color: #0b0b0b; transition: all .2s; }
.submit-button .submit-badge { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background-color: #0b0b0b; color: #fff; transition: all .2s; }
.submit-button:hover, .submit-button:focus { background-color: var(--accent); }
.submit-button:hover .submit-text, .submit-button:focus .submit-text { color: #fff; }
.submit-button.submit-button:hover .submit-badge { background-color: #fff; color: #0b0b0b; }
.form-note { font-size: 13px; color: #9c9c9c; margin-top: 4px; min-height: 1.1rem; }
.form-note.ok { color: var(--success); }
.hp { position: absolute !important; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ---------- footer ---------- */
.site-footer { width: 100%; display: flex; flex-direction: column; align-items: center; background-color: #0a0a0a; padding-top: 50px; margin-top: 40px; }
.footer-inner { width: 100%; max-width: var(--container); margin: auto; padding: 0 var(--pad-x); display: flex; flex-direction: column; align-items: flex-start; gap: 40px; }
.footer-top { display: flex; flex-direction: column; align-items: flex-start; gap: 40px; width: 100%; }
.footer-content { display: flex; flex-direction: column; align-items: flex-start; gap: 40px; width: 100%; justify-content: space-between; }
.footer-left { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; width: 100%; max-width: 280px; }
.footer-logo { font-family: var(--font-display); font-size: 26px; color: #fff; text-transform: uppercase; }
.footer-desc { line-height: 1.3; font-size: 16px; color: #d5d7db; }
.footer-extra { line-height: 1.3; font-size: 13px; color: #767a81; }
.footer-links { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 36px; width: 100%; }
.links-group { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; width: fit-content; }
.group-title { font-size: 12px; font-weight: 400; line-height: 1.2; color: #7e8187; text-transform: uppercase; }
.footer-link { display: flex; align-items: center; gap: 8px; font-size: 15px; line-height: 1.2; color: #fff; }
.footer-link:hover { text-decoration: underline; }
.location { display: flex; align-items: flex-start; max-width: 240px; gap: 10px; font-size: 15px; line-height: 1.3; color: #fff; }
.copyright { color: #8f8f98; font-size: 15px; }
.bottom-logo { width: 100%; max-width: 100%; overflow: hidden; text-align: center; font-family: var(--font-display); font-size: clamp(56px, 20vw, 240px); line-height: .9; color: #111; letter-spacing: -.02em; padding: 20px 0 30px; }

/* ---------- cookie popup ---------- */
.cookie-popup { position: fixed; left: 16px; bottom: 16px; z-index: 100; width: min(360px, calc(100vw - 32px)); background: #0a0a0a; border: 1px solid #242424; border-radius: 22px; padding: 20px; display: none; flex-direction: column; gap: 16px; }
.cookie-popup.show { display: flex; }
.cookie-popup .small-label { font-size: 12px; color: #7e8187; text-transform: uppercase; }
.cookie-popup .cookie-desc { font-size: 14px; color: #c9ccd2; line-height: 1.4; }
.cookie-popup .cookie-desc a { text-decoration: underline; }
.cookie-buttons { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.cookie-buttons button { border-radius: 12px; padding: 10px; font-size: 13px; font-weight: 600; }
.cookie-buttons .c-reject { background: #111; color: #fff; }
.cookie-buttons .c-customize { background: #1a1a1a; color: #fff; }
.cookie-buttons .c-accept { background: #fff; color: #0b0b0b; }

/* ---------- interior pages ---------- */
.page-head { width: 100%; background: #000; }
.page-head-inner { width: 100%; max-width: var(--container); margin: 0 auto; padding: 24px var(--pad-x) 20px; }
.page-title { color: #fff; text-transform: uppercase; margin: 8px 0 20px; }
.page-intro { max-width: 640px; color: #a8abb1; font-size: 18px; line-height: 1.5; }

.doc { width: 100%; max-width: 780px; }
.doc .updated { font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: #7e8187; margin-bottom: 40px; }
.doc h2 { font-family: var(--font-display); font-size: 23px; line-height: 1.1; color: #fff; text-transform: uppercase; margin: 44px 0 14px; }
.doc h2:first-of-type { margin-top: 0; }
.doc p { color: #b8b8b8; font-size: 16px; line-height: 1.6; margin-bottom: 16px; }
.doc-list { margin: 14px 0; display: flex; flex-direction: column; gap: 10px; }
.doc-list li { color: #b8b8b8; font-size: 16px; line-height: 1.5; padding-left: 20px; position: relative; }
.doc-list li::before { content: "—"; position: absolute; left: 0; color: var(--accent-2); }
.doc a { text-decoration: underline; color: #fff; }

.steps-grid { display: grid; grid-template-columns: 1fr; gap: 15px; width: 100%; }
.step-card { display: flex; flex-direction: column; gap: 12px; padding: 24px; border-radius: 24px; }
.step-num { font-family: var(--font-display); font-size: 32px; color: var(--accent-2); line-height: 1; }
.step-title { font-size: 18px; font-weight: 600; color: #fff; line-height: 1.2; }
.step-desc { color: #b8b8b8; font-size: 15px; line-height: 1.5; }

.team-grid { display: grid; grid-template-columns: 1fr; gap: 20px; width: 100%; }
.member-card { display: flex; flex-direction: column; gap: 16px; padding: 24px; border-radius: 28px; }
.member-photo { width: 100%; border-radius: 18px; aspect-ratio: 4 / 5; object-fit: cover; background: #0b0b0b; }
.member-name { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; color: #fff; line-height: 1.1; }
.member-role { font-size: 13px; color: var(--accent-2); text-transform: uppercase; letter-spacing: .04em; }
.member-bio { color: #b8b8b8; font-size: 15px; line-height: 1.5; }

.article { width: 100%; max-width: 780px; }
.article .lead { font-size: 20px; color: #fff; line-height: 1.5; margin-bottom: 24px; }
.article h2 { font-family: var(--font-display); font-size: 24px; text-transform: uppercase; color: #fff; margin: 40px 0 14px; line-height: 1.15; }
.article p { color: #c9ccd2; font-size: 17px; line-height: 1.7; margin-bottom: 18px; }
.article figure { margin: 24px 0; }
.article figure img { border-radius: 20px; }
.article figcaption { font-size: 13px; color: #767a81; margin-top: 8px; }

.service-detail { display: grid; grid-template-columns: 1fr; gap: 20px; width: 100%; }
.service-block { display: flex; flex-direction: column; gap: 14px; padding: 28px 24px; border-radius: 28px; }
.service-block h3 { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; color: #fff; line-height: 1.1; }
.service-block p { color: #b8b8b8; font-size: 15px; line-height: 1.5; }
.service-block ul { display: flex; flex-direction: column; gap: 8px; }
.service-block li { color: #c9ccd2; font-size: 14px; padding-left: 20px; position: relative; line-height: 1.4; }
.service-block li::before { content: "→"; position: absolute; left: 0; color: var(--accent-2); }

.cta-band { width: 100%; }
.cta-inner { width: 100%; border-radius: 30px; padding: 36px 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.cta-inner h2 { color: #fff; text-transform: uppercase; margin-bottom: 8px; }
.cta-inner p { color: #b8b8b8; font-size: 16px; max-width: 520px; line-height: 1.5; }

/* ---------- responsive (mobile-first up) ---------- */
@media (min-width: 600px) {
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .personal-fields { grid-template-columns: repeat(2, 1fr); }
  .spec-fields { grid-template-columns: repeat(3, 1fr); }
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
  .stack-boxes { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  :root { --pad-x: 48px; }
  .field input, .field textarea { border: none; background: transparent; border-bottom: 1px solid var(--field-border); border-radius: 0; padding: 0 0 7px; }
  .field input:focus, .field textarea:focus { border-bottom-color: #f4f4f5; }
  .pillars-grid { grid-template-columns: repeat(6, 1fr); }
  .pillar-default { grid-column: span 2; }
  .pillar-wide { grid-column: span 3; }
  .stack-top { flex-direction: row; align-items: center; gap: 60px; padding: 24px; }
  .about-columns { grid-template-columns: 1fr 1fr; gap: 40px; align-items: flex-start; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .service-detail { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; padding: 44px 40px; }
}

@media (min-width: 1024px) {
  .header-actions { display: flex; }
  .burger { display: none; }
  .hero h1 { font-size: 72px; max-width: 700px; }
  .kpi-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .kpi-card { min-height: 280px; }
  .stack-boxes { grid-template-columns: repeat(3, 1fr); }
  .footer-content { flex-direction: row; }
  .footer-links { flex-wrap: nowrap; }
  .form-left { display: flex; }
  .form-content { grid-template-columns: 1fr 1fr; padding: 30px; }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}
