:root {
  --primary: #882AFF;
  --accent: #FF2AFA;
  --ink: #1A2A49;
  --muted: #9292A6;
  --soft: #EDEEF7;
  --block: #F5F5F5;
  --chip: #E4E5F2;
  --glass: rgba(136, 42, 255, 0.12);
  --border: #C8CADF;
  --white: #ffffff;
  --dark: #1A2A49;
  --hover-slate: #505767;
  --font: 'TT Firs Neue', sans-serif;
  --radius-section: 60px;
  --radius-btn: 16px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --gutter: clamp(16px, 8vw, 144px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  font-family: var(--font);
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 100px;
}

main {
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(100% - 32px, 1400px);
  margin-inline: auto;
}

.container--wide {
  width: min(100%, 1920px);
  padding-inline: var(--gutter);
}

/* Type */
h1, .h1 {
  font-weight: 500;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

h2, .h2 {
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

h3, .h3 {
  font-weight: 500;
  font-size: clamp(24px, 2.5vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h4 {
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.lead {
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 24px);
  line-height: 1.4;
  font-weight: 500;
}

.text-muted { color: var(--muted); }

/* Buttons — lukit geometry */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}

.btn--l {
  height: 60px;
  padding: 17px 32px;
  border-radius: var(--radius-btn);
  font-size: 18px;
  line-height: 26px;
}

.btn--m {
  height: 44px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 20px;
}

.btn--xl {
  height: 84px;
  padding: 20px 44px;
  border-radius: 20px;
  font-size: 24px;
  line-height: 32px;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--accent);
}

.btn--primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px #fff, 0 0 0 8px rgba(136, 42, 255, 0.15);
}

.btn--secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--ink);
}

.btn--secondary:hover {
  color: var(--primary);
  background: transparent;
}

.btn--secondary:active {
  background: var(--soft);
  color: var(--primary);
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
}

.btn--accent:hover {
  background: var(--primary);
}

.btn--dark {
  background: var(--ink);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--primary);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Pill chips */
.chip {
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  border: 1.6px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  max-height: 44px;
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  color: var(--ink);
  background: transparent;
}

.chip--soft {
  border: 0;
  background: var(--chip);
  height: 56px;
  padding: 8px 20px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

/* Top header — lukit product menu pattern */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--soft);
  padding: 10px 24px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(100%, 1760px);
  margin-inline: auto;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px 10px 16px;
  border-radius: 20px;
  backdrop-filter: blur(25px);
  background: var(--glass);
  flex-shrink: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.logo--text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--primary);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border-radius: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.header__nav a {
  display: inline-flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.header__nav a:hover {
  background: #ddd6f5;
}

.header__nav a.is-active {
  background: var(--ink);
  color: var(--white);
}

.header__cta {
  flex-shrink: 0;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--glass);
  cursor: pointer;
  position: relative;
}

.burger span,
.burger span::before,
.burger span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: auto;
  position: relative;
  transition: 0.3s var(--ease);
}

.burger span::before,
.burger span::after {
  content: '';
  position: absolute;
  left: 0;
}

.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { top: 0; transform: rotate(45deg); }
body.nav-open .burger span::after { top: 0; transform: rotate(-45deg); }

/* Bottom fixed anchors — lukit pattern */
.anchors {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 64px;
  padding: 8px;
  border-radius: 32px;
  background: var(--ink);
  backdrop-filter: blur(25px);
  box-shadow: 0 12px 40px rgba(26, 42, 73, 0.25);
}

.anchors a {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.anchors a:hover {
  color: var(--white);
}

.anchors a.is-active {
  background: var(--white);
  color: var(--ink);
}

/* Hero — lukit composition */
.hero {
  position: relative;
  min-height: clamp(656px, 70vw, 920px);
  border-radius: 0 0 var(--radius-section) var(--radius-section);
  background: var(--soft);
  padding: clamp(40px, 5vw, 88px) var(--gutter) 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.6fr);
  gap: 24px;
  align-items: start;
}

.hero__main {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 52px;
  padding-bottom: 48px;
  max-width: 900px;
}

.hero__top {
  display: grid;
  gap: 40px;
}

.hero h1 {
  max-width: 14ch;
}

.hero__desc {
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.35;
  max-width: 28rem;
  margin-top: 16px;
}

.hero__side {
  position: relative;
  z-index: 2;
  justify-self: end;
  margin-top: clamp(40px, 6vw, 104px);
}

.glass-card {
  width: min(100%, 285px);
  padding: 28px;
  border-radius: 48px;
  backdrop-filter: blur(50px);
  background: var(--glass);
  display: grid;
  gap: 0;
}

.glass-card__panel {
  padding: 28px 24px;
  background: var(--white);
  border-radius: 20px 20px 0 20px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.glass-card .btn {
  margin-top: 11px;
  width: 100%;
}

.hero__art {
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 70% 80%, rgba(255, 42, 250, 0.18), transparent 60%),
    radial-gradient(ellipse 45% 50% at 30% 90%, rgba(136, 42, 255, 0.22), transparent 55%),
    linear-gradient(180deg, transparent 0%, rgba(136, 42, 255, 0.08) 100%);
}

.hero__art::before {
  content: '';
  position: absolute;
  width: min(48vw, 620px);
  height: min(48vw, 620px);
  right: 8%;
  bottom: -18%;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(136, 42, 255, 0.35), rgba(255, 42, 250, 0.2));
  filter: blur(2px);
}

.hero__art::after {
  content: 'YANIX';
  position: absolute;
  right: 6%;
  bottom: 8%;
  font-size: clamp(64px, 12vw, 180px);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
}

/* Page hero (inner) */
.page-hero {
  border-radius: 0 0 var(--radius-section) var(--radius-section);
  background: var(--soft);
  padding: clamp(48px, 6vw, 92px) var(--gutter) clamp(48px, 5vw, 80px);
}

.page-hero .lead {
  margin-top: 16px;
  max-width: 40rem;
}

/* Sections */
.section {
  padding: clamp(48px, 6vw, 92px) 0;
}

.section--soft {
  margin: 24px var(--gutter) 0;
  padding: clamp(48px, 6vw, 92px) clamp(20px, 5vw, 94px);
  background: var(--soft);
  border-radius: var(--radius-section);
}

.section--block {
  margin: 24px var(--gutter) 0;
  padding: clamp(48px, 6vw, 92px) clamp(20px, 5vw, 94px);
  background: var(--block);
  border-radius: var(--radius-section);
}

.section--dark {
  margin: 24px var(--gutter) 0;
  padding: clamp(48px, 6vw, 92px) clamp(20px, 5vw, 94px);
  background: var(--ink);
  border-radius: var(--radius-section);
  color: rgba(255, 255, 255, 0.8);
}

.section--dark h2,
.section--dark h3,
.section--dark .h2 {
  color: var(--white);
}

.section__head {
  margin-bottom: 40px;
  max-width: 48rem;
}

.section__head .lead {
  margin-top: 12px;
}

/* About split */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

.split__visual {
  min-height: 360px;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(136, 42, 255, 0.85), rgba(255, 42, 250, 0.55)),
    var(--primary);
  position: relative;
  overflow: hidden;
}

.split__visual::after {
  content: 'YANIX';
  position: absolute;
  right: -2%;
  bottom: -6%;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2);
}

/* Products / Projects — lukit product cards 1:1 */
.products-head {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 24px;
  align-items: start;
  margin-bottom: clamp(40px, 5vw, 80px);
  padding-left: 8px;
}

.products-head h2 {
  font-size: clamp(32px, 3.5vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.products-head__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  color: var(--ink);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  max-width: 16rem;
  justify-self: end;
}

.products-head__aside svg {
  color: var(--ink);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.product-card {
  display: grid;
  grid-auto-rows: min-content;
  border-radius: 56px;
  background: var(--white);
  padding: 8px 8px 28px;
  gap: 20px;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(136, 42, 255, 0.1);
}

.product-card__media {
  position: relative;
  border-radius: 48px;
  height: 460px;
  padding: 52px 24px 24px;
  overflow: hidden;
  background-color: var(--card-bg, #E4D4FF);
  background-image: var(--card-img);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
}

.product-card__title {
  position: relative;
  z-index: 2;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  padding: 0 12px;
  margin-bottom: 10px;
}

.product-card__desc {
  position: relative;
  z-index: 2;
  max-width: 460px;
  padding: 0 48px 0 12px;
  color: var(--ink);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.product-card__meta {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.product-card__chip {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(44px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--ink);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.product-card__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  border-radius: 0;
  background: transparent;
}

.product-card__foot {
  display: grid;
  grid-template-columns: 1fr min-content;
  align-items: center;
  padding: 0 24px;
  gap: 16px;
  min-height: 60px;
}

.product-card__foot > span:first-child {
  color: var(--ink);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-card__arrow {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}

.product-card:hover .product-card__arrow {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.icon-circle:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.slide__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--primary);
  display: grid;
  place-items: center;
}

@media (min-width: 1200px) {
  .product-card__media {
    height: 490px;
  }
  .product-card__title {
    font-size: 56px;
    line-height: 60px;
  }
  .product-card__desc {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (max-width: 900px) {
  .product-card__media {
    height: 400px;
  }
}

/* Service / feature cards */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
}

.card--soft {
  background: var(--soft);
}

.card--block {
  background: var(--block);
}

.card--dark {
  background: #24283a;
  color: rgba(255, 255, 255, 0.78);
}

.card--dark h3,
.card--dark h4 {
  color: var(--white);
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}

.card h3,
.card h4 {
  margin-bottom: 10px;
  text-transform: none;
}

.card > p {
  color: var(--muted);
  margin-bottom: 18px;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}

.feature-list svg {
  flex-shrink: 0;
  color: var(--primary);
}

/* Achievements strip */
.achieve-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 24px;
  padding: 22px;
}

.achieve-item p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.35;
  color: var(--ink);
}

/* FAQ accordion */
.faq {
  display: grid;
  gap: 8px;
}

.faq__item {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
}

.faq__q {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 22px 24px;
  color: var(--ink);
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq__q::after {
  content: '+';
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}

.faq__item.is-open .faq__q::after {
  content: '−';
  background: var(--primary);
  color: var(--white);
  transform: rotate(180deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--muted);
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}

.faq__item.is-open .faq__a {
  max-height: 480px;
  padding: 0 24px 22px;
}

/* CTA band */
.cta-band {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: center;
  padding: clamp(40px, 5vw, 72px);
  border-radius: var(--radius-section);
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: var(--white);
}

.cta-band h2 { color: var(--white); }
.cta-band .lead { color: rgba(255, 255, 255, 0.88); margin-top: 10px; }
.cta-band__contacts {
  display: grid;
  gap: 6px;
  font-weight: 700;
  margin-bottom: 20px;
}
.cta-band a { color: var(--white); }
.cta-band .btn--secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}
.cta-band .btn--secondary:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* Footer */
.site-footer {
  margin-top: 24px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 40px;
  border-radius: var(--radius-section) var(--radius-section) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
  width: min(100% - 32px, 1400px);
  margin-inline: auto;
}

.site-footer .logo { margin-bottom: 12px; display: inline-block; }
.site-footer .logo img {
  height: 32px;
  mix-blend-mode: normal;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 14px;
}
.footer__nav { display: grid; gap: 8px; }
.footer__nav a:hover,
.footer__contacts a:hover,
.footer__reqs a:hover { color: var(--accent); }
.footer__contacts { display: grid; gap: 8px; align-content: start; }
.footer__contacts a {
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}

.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer__socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--white);
  transition: background 0.3s var(--ease);
}

.footer__socials a:hover { background: var(--accent); }

.footer__reqs {
  width: min(100% - 32px, 1400px);
  margin: 0 auto 28px;
  padding: 28px 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__reqs-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 20px;
  margin-bottom: 22px;
}

.footer__reqs-head .footer__label {
  margin-bottom: 0;
}

.footer__reqs-head strong {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer__reqs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 28px;
}

.footer__reqs-item {
  display: grid;
  gap: 6px;
}

.footer__reqs-item span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.footer__reqs-item p,
.footer__reqs-item a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}

.footer__account {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  word-break: break-word;
}

.footer__copy {
  width: min(100% - 32px, 1400px);
  margin-inline: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .footer__reqs {
    padding: 22px 18px;
    border-radius: 22px;
  }
  .footer__reqs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Inner content helpers */
.content-block h2 { margin-bottom: 16px; }
.content-block > p { color: var(--muted); margin-bottom: 16px; max-width: 56rem; }

.icon-list { display: grid; gap: 12px; }
.icon-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  background: var(--white);
  border-radius: 20px;
}
.icon-list .icon-circle { width: 48px; height: 48px; margin: 0; }
.icon-list strong { display: block; color: var(--ink); margin-bottom: 4px; }
.icon-list div { color: var(--muted); font-size: 16px; line-height: 1.4; }

.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  background: var(--chip);
  color: var(--ink);
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
}
.tag strong { color: var(--primary); }

.steps { display: grid; gap: 10px; counter-reset: step; }
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px;
  background: var(--white);
  border-radius: 20px;
}
.steps li::before {
  content: counter(step);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 700;
}
.steps strong { display: block; color: var(--ink); margin-bottom: 4px; }
.steps div { color: var(--muted); font-size: 16px; }

.project-block {
  background: var(--soft);
  border-radius: 36px;
  padding: clamp(24px, 3vw, 40px);
  margin-bottom: 20px;
}
.project-block__top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.project-block h2 {
  text-transform: none;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
}
.project-block > p,
.project-block .sub p { color: var(--muted); }
.project-block .sub h3 {
  margin: 28px 0 12px;
  text-transform: none;
  font-size: 28px;
}
.project-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent);
  font-weight: 700;
}
.project-link:hover { color: var(--primary); }

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 16px;
}
.data-table th,
.data-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid #e4e5f0;
}
.data-table th {
  background: var(--chip);
  color: var(--ink);
  font-weight: 700;
}
.data-table td {
  background: var(--white);
  color: var(--muted);
}

/* Timeline */
.timeline {
  display: grid;
  gap: 28px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--primary), var(--accent));
}
.timeline__year { position: relative; padding-left: 56px; }
.timeline__year h3 {
  margin-bottom: 14px;
  color: var(--primary);
  text-transform: none;
  font-size: 28px;
}
.timeline__year::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(136, 42, 255, 0.15);
}
.timeline__items { display: grid; gap: 10px; }
.timeline__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  background: var(--white);
  padding: 16px;
  border-radius: 20px;
}
.timeline__item strong { display: block; color: var(--ink); margin-bottom: 4px; }
.timeline__item p { color: var(--muted); font-size: 16px; }

/* Contacts */
.contacts-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
}
.contact-card,
.form-card {
  background: var(--soft);
  border-radius: 36px;
  padding: 32px;
}
.contact-card h3 {
  margin-bottom: 6px;
  text-transform: none;
  font-size: 18px;
  color: var(--muted);
}
.contact-card a {
  color: var(--accent);
  font-weight: 700;
  font-size: 22px;
}
.contact-card .block + .block { margin-top: 24px; }
.form-grid { display: grid; gap: 16px; }
.form-field label {
  display: block;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 14px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  background: var(--chip);
  border-radius: 16px;
  padding: 16px 18px;
  color: var(--ink);
  outline: none;
  transition: box-shadow 0.3s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  box-shadow: 0 0 0 4px #fff, 0 0 0 8px rgba(136, 42, 255, 0.15);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-note { margin-top: 4px; font-size: 14px; color: var(--muted); }
.form-success { display: none; color: var(--primary); font-weight: 700; }
.form-success.is-visible { display: block; }
.map-wrap {
  margin-top: 16px;
  border-radius: 36px;
  overflow: hidden;
  min-height: 360px;
  background: var(--soft);
}
.map-wrap iframe { width: 100%; height: 360px; border: 0; }

.founder {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  background: var(--white);
  border-radius: 36px;
  padding: 32px;
}
.founder__photo {
  aspect-ratio: 3/4;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(136, 42, 255, 0.25), rgba(255, 42, 250, 0.18)), var(--soft);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--primary);
  font-weight: 700;
  padding: 20px;
}
.founder h3 { margin-bottom: 14px; text-transform: none; font-size: 28px; }
.founder p { color: var(--muted); }
.founder p + p { margin-top: 12px; }

.mt-20 { margin-top: 20px; }
.mt-28 { margin-top: 28px; }
.mt-36 { margin-top: 36px; }
.mt-40 { margin-top: 40px; }

/* Responsive */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 48px;
  }
  .hero__side { justify-self: start; margin-top: 0; }
  .split,
  .grid-2,
  .cta-band,
  .founder,
  .contacts-layout,
  .footer__grid,
  .products-head,
  .products-grid {
    grid-template-columns: 1fr;
  }
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .burger { display: grid; place-items: center; order: 2; margin-left: auto; }
  .header__brand { order: 1; }
  .header__inner { flex-wrap: wrap; row-gap: 10px; }
  .header__nav { display: none; }
  body.nav-open .header__nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    order: 3;
    padding: 8px;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(26, 42, 73, 0.1);
  }
  body.nav-open .header__nav a {
    padding: 12px 14px;
  }
  .anchors {
    left: 12px;
    right: 12px;
    transform: none;
    width: auto;
    max-width: none;
    height: 56px;
    padding: 6px;
    border-radius: 28px;
    overflow: hidden;
    justify-content: stretch;
    gap: 2px;
  }
  .anchors a {
    flex: 1 1 0;
    justify-content: center;
    font-size: 11px;
    padding: 0 4px;
    height: 44px;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .anchors a[href="#faq"],
  .anchors a[href="#cta"],
  .anchors a[href="contacts.html"] {
    display: none;
  }
  .section--soft,
  .section--block,
  .section--dark {
    margin-inline: 12px;
    border-radius: 32px;
    padding: 40px 16px;
  }
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
  body { padding-bottom: 96px; }
}

@media (max-width: 640px) {
  .chip { font-size: 13px; padding: 6px 12px; max-height: 36px; line-height: 1.2; }
  .glass-card { width: 100%; border-radius: 28px; padding: 18px; }
  .glass-card__panel {
    padding: 18px 16px;
    border-radius: 16px 16px 0 16px;
    font-size: 15px;
  }
  .btn--l { height: 52px; padding: 14px 22px; font-size: 15px; }
  .btn--m { height: 44px; padding: 10px 18px; font-size: 14px; }
}

/* ========== Product detail pages (lukit-style) ========== */
.product-hero {
  position: relative;
  min-height: clamp(640px, 72vw, 980px);
  border-radius: 0 0 var(--radius-section) var(--radius-section);
  background: var(--soft);
  padding: clamp(48px, 5vw, 88px) var(--gutter) clamp(220px, 28vw, 300px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.55fr);
  gap: 32px;
  align-items: start;
}

.product-hero__main {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 36px;
  max-width: 920px;
}

.product-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.product-hero h1 {
  max-width: 12ch;
}

.product-hero__desc {
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.4;
  max-width: 34rem;
}

.product-hero__side {
  position: relative;
  z-index: 2;
  justify-self: end;
  margin-top: clamp(24px, 4vw, 80px);
}

.product-hero__art {
  position: absolute;
  inset: auto 0 0 0;
  height: 58%;
  z-index: 1;
  background-image: var(--hero-art);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  pointer-events: none;
}

.product-hero__art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--soft) 0%, transparent 35%, rgba(237,238,247,0.2) 100%);
}

.product-demo {
  position: relative;
  z-index: 3;
  margin: -120px var(--gutter) 0;
}

.product-demo__frame {
  border-radius: 28px;
  overflow: hidden;
  border: 4px solid var(--soft);
  background: var(--soft);
  aspect-ratio: 16 / 8;
  box-shadow: 0 24px 60px rgba(26, 42, 73, 0.1);
}

.product-demo__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-spotlight {
  margin: 24px var(--gutter) 0;
  padding: clamp(48px, 6vw, 100px) clamp(24px, 5vw, 80px) clamp(180px, 22vw, 280px);
  border-radius: 80px;
  background: var(--ink);
  color: rgba(255,255,255,0.82);
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.product-spotlight h2 {
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 18px;
}

.product-spotlight p {
  max-width: 36rem;
  font-size: clamp(16px, 1.3vw, 22px);
  line-height: 1.4;
}

.product-spotlight__art {
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background-image: var(--spot-art);
  background-size: cover;
  background-position: center bottom;
  opacity: 0.55;
  pointer-events: none;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.feature-tile {
  background: var(--white);
  border-radius: 28px;
  padding: 28px 24px;
  min-height: 180px;
  display: grid;
  align-content: start;
  gap: 14px;
  transition: transform 0.3s var(--ease);
}

.feature-tile:hover {
  transform: translateY(-3px);
}

.feature-tile__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--soft);
  color: var(--primary);
  display: grid;
  place-items: center;
}

.feature-tile h3 {
  font-size: 22px;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: -0.02em;
}

.feature-tile p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
}

.usp-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.usp-split__visual {
  border-radius: 36px;
  min-height: 360px;
  background:
    var(--usp-art) center / cover no-repeat,
    var(--soft);
  overflow: hidden;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.related-grid .product-card__media {
  height: 340px;
}

.related-grid .product-card__title {
  font-size: 32px;
  line-height: 1.1;
}

.related-grid .product-card__desc {
  font-size: 15px;
  padding-right: 12px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  opacity: 0.5;
}

@media (max-width: 1100px) {
  .product-hero,
  .usp-split,
  .feature-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
  .product-hero__side { justify-self: start; }
  .product-demo { margin-top: -60px; }
  .related-grid .product-card__media { height: 380px; }
}

@media (max-width: 700px) {
  .feature-grid { grid-template-columns: 1fr; }
  .product-spotlight { border-radius: 40px; }
  .product-demo__frame { border-radius: 18px; border-width: 3px; }
}

/* ========== Services listing (distinct from projects) ========== */
.services-list {
  display: grid;
  gap: 16px;
}

.service-card-lg {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 40px;
  overflow: hidden;
  min-height: 320px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.service-card-lg:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(136, 42, 255, 0.12);
}

.service-card-lg__media {
  position: relative;
  background:
    linear-gradient(160deg, rgba(136,42,255,0.18), rgba(255,42,250,0.12)),
    var(--svc-bg, var(--soft));
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.service-card-lg__num {
  font-size: 64px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(26, 42, 73, 0.12);
}

.service-card-lg__icon {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  color: var(--primary);
  display: grid;
  place-items: center;
}

.service-card-lg__body {
  padding: 36px 36px 32px;
  display: grid;
  align-content: center;
  gap: 16px;
}

.service-card-lg__body h3 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  text-transform: none;
  letter-spacing: -0.03em;
}

.service-card-lg__body > p {
  color: var(--muted);
  max-width: 40rem;
  font-size: 17px;
  line-height: 1.45;
}

.service-card-lg__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.service-card-lg__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--chip);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.service-card-lg__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
}

.service-card-lg__foot strong {
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}

.service-card-lg__arrow {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--soft);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}

.service-card-lg:hover .service-card-lg__arrow {
  background: var(--primary);
  color: var(--white);
  transform: translateX(3px);
}

.service-card-lg--accent .service-card-lg__media {
  background:
    linear-gradient(160deg, rgba(255,42,250,0.16), rgba(136,42,255,0.12)),
    #F8E7FB;
}

.service-card-lg--accent .service-card-lg__icon {
  color: var(--accent);
}

.service-card-lg--accent .service-card-lg__foot strong {
  color: var(--accent);
}

.service-card-lg--accent:hover .service-card-lg__arrow {
  background: var(--accent);
}

/* Service detail tweaks */
.service-hero .product-hero__chips .chip {
  border-color: transparent;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(20px);
}

.service-steps {
  display: grid;
  gap: 10px;
  counter-reset: svc;
}

.service-steps li {
  counter-increment: svc;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 22px;
  background: var(--white);
  border-radius: 24px;
}

.service-steps li::before {
  content: counter(svc, decimal-leading-zero);
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.service-steps strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
  font-size: 20px;
}

.service-steps div {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
}

.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stack-tags span {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
}

.stack-tags span strong {
  color: var(--primary);
}

@media (max-width: 900px) {
  .service-card-lg {
    grid-template-columns: 1fr;
  }
  .service-card-lg__media {
    min-height: 180px;
  }
}

.service-card-lg {
  text-decoration: none;
  color: inherit;
}

.section--soft .services-list,
.section--block .services-list {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 8px;
}

.section--soft .stack-tags {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 8px;
}

/* ========== Home hero / about images ========== */
.hero.has-art .hero__art {
  background-image:
    linear-gradient(180deg, rgba(237,238,247,0.92) 0%, rgba(237,238,247,0.35) 28%, transparent 55%),
    var(--hero-art);
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  height: 62%;
}

.hero.has-art .hero__art::before {
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  opacity: 0.55;
  filter: blur(8px);
}

.hero.has-art .hero__art::after {
  text-shadow: 0 8px 40px rgba(26,42,73,0.12);
}

.split__visual.has-img {
  background:
    linear-gradient(145deg, rgba(136,42,255,0.35), rgba(255,42,250,0.18)),
    var(--split-art) center / cover no-repeat;
}

.split__visual.has-img::after {
  color: rgba(255,255,255,0.28);
}

/* Service card media photos */
.service-card-lg__media.has-photo {
  background:
    linear-gradient(160deg, rgba(26,42,73,0.28), rgba(136,42,255,0.35)),
    var(--svc-photo) center / cover no-repeat;
}

.service-card-lg__media.has-photo .service-card-lg__num {
  color: rgba(255,255,255,0.45);
}

.service-card-lg__media.has-photo .service-card-lg__icon {
  background: rgba(255,255,255,0.85);
}

.service-card-lg--accent .service-card-lg__media.has-photo {
  background:
    linear-gradient(160deg, rgba(26,42,73,0.22), rgba(255,42,250,0.4)),
    var(--svc-photo) center / cover no-repeat;
}

/* ========== News ========== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.news-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(136, 42, 255, 0.12);
}

.news-card__media {
  position: relative;
  height: 220px;
  background:
    linear-gradient(180deg, transparent 40%, rgba(26,42,73,0.35)),
    var(--news-img) center / cover no-repeat,
    var(--soft);
}

.news-card__date {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.news-card__body {
  padding: 22px 24px 24px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.news-card__tag {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--chip);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
}

.news-card__body h3 {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-transform: none;
}

.news-card__body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.news-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
}

.news-card:hover .news-card__more {
  gap: 12px;
}

.news-list {
  display: grid;
  gap: 16px;
}

.news-row {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 36px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  min-height: 260px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.news-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(136, 42, 255, 0.1);
}

.news-row__media {
  min-height: 100%;
  background:
    linear-gradient(160deg, rgba(136,42,255,0.2), rgba(255,42,250,0.12)),
    var(--news-img) center / cover no-repeat,
    var(--soft);
}

.news-row__body {
  padding: 32px 36px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.news-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.news-row__meta time {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.news-row__body h3 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-transform: none;
}

.news-row__body p {
  color: var(--muted);
  max-width: 40rem;
  font-size: 16px;
  line-height: 1.45;
}

.news-row__more {
  color: var(--primary);
  font-weight: 700;
}

.section--soft .news-list,
.section--soft .news-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 8px;
}

.news-article {
  max-width: 860px;
  margin: 0 auto;
}

.news-article__hero {
  border-radius: 36px;
  overflow: hidden;
  min-height: 360px;
  background:
    linear-gradient(180deg, transparent 45%, rgba(26,42,73,0.45)),
    var(--news-img) center / cover no-repeat,
    var(--soft);
  margin-bottom: 36px;
}

.news-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.news-article__meta time {
  color: var(--muted);
  font-size: 15px;
}

.news-article h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: none;
  margin-bottom: 18px;
}

.news-article .lead {
  margin-bottom: 28px;
}

.news-article__content {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.news-article__content p strong {
  color: var(--ink);
}

.news-article__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

@media (max-width: 980px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-row { grid-template-columns: 1fr; }
  .news-row__media { min-height: 200px; }
}

@media (max-width: 700px) {
  .news-card__media { height: 180px; }
  .news-article__hero { min-height: 240px; border-radius: 24px; }
}

/* ========== Mobile polish ========== */
@media (max-width: 900px) {
  :root {
    --radius-section: 40px;
    --gutter: 20px;
  }

  body {
    font-size: 16px;
    line-height: 1.45;
  }

  .site-header {
    padding: 8px 12px;
  }

  .header__brand {
    padding: 8px 10px;
    border-radius: 16px;
  }

  .logo img {
    height: 30px;
  }

  .hero {
    min-height: auto;
    padding: 28px 20px 24px;
    border-radius: 0 0 36px 36px;
    gap: 20px;
  }

  .hero__main {
    gap: 28px;
    padding-bottom: 8px;
    max-width: none;
  }

  .hero__top {
    gap: 20px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.02;
  }

  .hero__desc {
    max-width: none;
    margin-top: 12px;
    font-size: 15px;
  }

  .hero__side {
    margin-top: 0;
    justify-self: stretch;
  }

  .hero.has-art .hero__art {
    height: 42%;
    opacity: 0.55;
  }

  .hero.has-art .hero__art::after {
    font-size: 56px;
    bottom: 4%;
    right: 4%;
  }

  .btn-group {
    gap: 10px;
  }

  .btn-group .btn {
    flex: 1 1 auto;
    min-width: min(100%, 160px);
    justify-content: center;
  }

  .page-hero {
    padding: 36px 20px 32px;
    border-radius: 0 0 36px 36px;
  }

  .page-hero h1 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .section {
    padding: 40px 0;
  }

  .section__head {
    margin-bottom: 24px;
  }

  .split {
    gap: 20px;
  }

  .split__visual {
    min-height: 220px;
    border-radius: 24px;
  }

  .products-head {
    margin-bottom: 28px;
    padding-left: 0;
    gap: 12px;
  }

  .products-head h2 {
    font-size: 28px;
  }

  .products-head__aside {
    justify-self: start;
    max-width: none;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 13px;
  }

  .products-grid {
    gap: 10px;
  }

  .product-card {
    border-radius: 28px;
    padding: 6px 6px 18px;
    gap: 14px;
  }

  .product-card__media {
    height: 300px;
    border-radius: 24px;
    padding: 28px 16px 16px;
    background-size: 85% auto;
  }

  .product-card__title {
    font-size: 32px;
    line-height: 1.05;
    padding: 0 6px;
    margin-bottom: 6px;
  }

  .product-card__desc {
    font-size: 14px;
    line-height: 1.35;
    padding: 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-card__meta {
    padding: 0 6px;
  }

  .product-card__chip {
    font-size: 12px;
    min-height: 30px;
    padding: 4px 10px;
  }

  .product-card__icon {
    width: 44px;
    height: 44px;
  }

  .product-card__foot {
    padding: 0 10px;
    font-size: 14px;
  }

  .product-card__arrow {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .section--soft .services-list,
  .section--block .services-list,
  .section--soft .news-list,
  .section--soft .news-grid,
  .section--soft .stack-tags {
    padding-inline: 0;
  }

  .service-card-lg {
    border-radius: 28px;
    min-height: 0;
  }

  .service-card-lg__media {
    min-height: 150px;
    padding: 24px 20px;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .service-card-lg__num {
    font-size: 48px;
  }

  .service-card-lg__icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .service-card-lg__body {
    padding: 22px 20px 20px;
    gap: 12px;
  }

  .service-card-lg__body h3 {
    font-size: 24px;
  }

  .service-card-lg__body > p {
    font-size: 15px;
  }

  .service-card-lg__tags span {
    min-height: 30px;
    padding: 4px 10px;
    font-size: 12px;
  }

  .service-card-lg__arrow {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .news-card {
    border-radius: 24px;
  }

  .news-card__body {
    padding: 18px 18px 20px;
    gap: 10px;
  }

  .news-card__body h3 {
    font-size: 22px;
  }

  .news-row {
    border-radius: 24px;
    min-height: 0;
  }

  .news-row__body {
    padding: 22px 20px;
    gap: 10px;
  }

  .news-row__body h3 {
    font-size: 24px;
  }

  .news-row__body p {
    font-size: 15px;
  }

  .cta-band {
    padding: 32px 22px;
    border-radius: 28px;
    gap: 20px;
  }

  .cta-band h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .achieve-item {
    padding: 16px;
  }

  .faq__q {
    font-size: 16px;
    padding: 18px 16px;
  }

  .faq__a {
    padding: 0 16px 18px;
    font-size: 15px;
  }

  .product-hero {
    min-height: auto;
    padding: 28px 20px 160px;
    border-radius: 0 0 36px 36px;
    gap: 20px;
  }

  .product-hero h1 {
    max-width: none;
    font-size: clamp(30px, 9vw, 42px);
  }

  .product-hero__desc {
    font-size: 15px;
  }

  .product-hero__side {
    justify-self: stretch;
  }

  .product-demo {
    margin-top: -80px;
    padding-inline: 16px;
  }

  .product-demo__frame {
    border-radius: 16px;
    border-width: 3px;
  }

  .product-spotlight {
    margin-inline: 12px;
    padding: 40px 22px;
    border-radius: 28px;
    min-height: 280px;
  }

  .product-spotlight h2 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .usp-split__visual {
    min-height: 220px;
    border-radius: 24px;
  }

  .feature-tile {
    padding: 20px;
    border-radius: 20px;
  }

  .related-grid .product-card__media {
    height: 280px;
  }

  .service-steps li {
    grid-template-columns: 48px 1fr;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
  }

  .service-steps li::before {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 14px;
  }

  .service-steps strong {
    font-size: 17px;
  }

  .service-steps div {
    font-size: 14px;
  }

  .stack-tags span {
    padding: 10px 12px;
    font-size: 13px;
  }

  .news-article__hero {
    min-height: 200px;
    border-radius: 20px;
    margin-bottom: 24px;
  }

  .news-article h1 {
    font-size: clamp(26px, 8vw, 36px);
  }

  .news-article__content {
    font-size: 15px;
    gap: 14px;
  }

  .footer__grid {
    gap: 28px;
  }

  .site-footer {
    padding: 40px 20px 28px;
    border-radius: 32px 32px 0 0;
  }

  .form-card {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .contacts-layout {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero h1,
  .page-hero h1,
  .product-hero h1 {
    font-size: 30px;
  }

  .product-card__media {
    height: 260px;
  }

  .product-card__title {
    font-size: 28px;
  }

  .anchors a {
    font-size: 10px;
    padding: 0 2px;
  }

  .section--soft,
  .section--block,
  .section--dark {
    margin-inline: 8px;
    padding: 32px 12px;
    border-radius: 28px;
  }
}

@media (max-width: 900px) {
  .timeline__year h3 { font-size: 22px; }
  .timeline__item {
    grid-template-columns: 36px 1fr;
    padding: 14px;
    border-radius: 16px;
  }
  .timeline__item p { font-size: 14px; }
  .contact-card,
  .form-card {
    border-radius: 24px;
    padding: 22px 18px;
  }
  .contact-card a { font-size: 18px; word-break: break-word; }
  .data-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .data-table th,
  .data-table td {
    padding: 12px;
    font-size: 14px;
    white-space: nowrap;
  }
  .founder {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .icon-list li {
    align-items: flex-start;
  }
}
