/* ============================================================
   ЦГЭ — Центр генетической экспертизы
   styles.css · Production build
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Manrope:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --cream: #FAFAF7;
  --graphite: #1C1C1C;
  --ink: #121212;
  --muted: #6B6660;
  --terra: #A8331E;
  --terra-dark: #7E2212;
  --sand: #F0E8DE;
  --sand-2: #E8DFD2;
  --line: #1C1C1C14;
  --line-strong: #1C1C1C30;
  --bordeaux: #7A1F1F;
  --dark-bg: #0F0F0F;
  --dark-card: #1A1A1A;
  --ok: #3D6B3A;
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  background: var(--cream);
  color: var(--graphite);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: 'Lora', serif;
  font-weight: 500;
  letter-spacing: -.01em;
  margin: 0;
  color: #121212;
  line-height: 1.15;
}
p { margin: 0; line-height: 1.65; color: #363330; }
.mono { font-family: 'JetBrains Mono', monospace; letter-spacing: -.01em; }

/* ============ LAYOUT ============ */
.container { max-width: 1240px; margin: 0 auto; padding: 0 48px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }

/* ============ HEADER ============ */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 2px 20px #0000001a; }
.sh-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 48px;
  height: 72px;
}
.sh-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 600;
  color: #121212;
  text-decoration: none;
  white-space: nowrap;
}
.sh-logo .mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--terra);
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.sh-logo-sub {
  color: #8a857e;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-left: 4px;
}
.sh-nav {
  display: flex;
  gap: 26px;
  margin-left: 22px;
}
.sh-nav a {
  color: #2a2722;
  font-size: 13.5px;
  text-decoration: none;
  padding: 4px 0;
  position: relative;
}
.sh-nav a:hover { color: var(--terra); }
.sh-nav a.has-caret::after {
  content: "";
  display: inline-block;
  width: 0; height: 0;
  margin-left: 5px;
  border: 3px solid transparent;
  border-top-color: currentColor;
  border-bottom: 0;
  vertical-align: middle;
  transform: translateY(1px);
}
/* dropdown */
.sh-dropdown { position: relative; }
.sh-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--line-strong);
  min-width: 240px;
  padding: 8px 0;
  box-shadow: 0 8px 32px #0000001a;
  z-index: 200;
  margin-top: 12px;
}
.sh-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.sh-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13.5px;
  color: #2a2722;
  text-decoration: none;
}
.sh-dropdown-menu a:hover { background: var(--sand); color: var(--terra); }
.sh-dropdown:hover .sh-dropdown-menu { display: block; }
.sh-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.sh-phone {
  font-family: 'Lora', serif;
  font-size: 16px;
  color: #121212;
  text-decoration: none;
}
.sh-phone small {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 10.5px;
  color: #7a756d;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 2px;
}
/* mobile burger */
.sh-burger {
  display: none;
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: #121212;
}
/* mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
}
.mobile-nav.open { display: block; }
.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: #00000050;
}
.mobile-nav-drawer {
  position: absolute;
  top: 0; right: 0;
  width: 280px; height: 100%;
  background: var(--cream);
  padding: 24px 28px;
  overflow-y: auto;
}
.mobile-nav-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none;
  font-size: 24px; cursor: pointer;
  color: #121212;
}
.mobile-nav-drawer a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: #121212;
  text-decoration: none;
}
.mobile-nav-drawer .section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #8a857e;
  padding: 16px 0 6px;
}

/* dark header */
.dark-page .site-header { background: #0F0F0F; border-bottom-color: #ffffff12; }
.dark-page .sh-logo { color: #fff; }
.dark-page .sh-nav a { color: #c5c0b8; }
.dark-page .sh-phone { color: #fff; }
.dark-page .sh-burger { color: #fff; border-color: #ffffff30; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 3px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all .15s;
  font-family: 'Manrope', sans-serif;
  letter-spacing: .01em;
  white-space: nowrap;
}
.btn-primary { background: var(--terra); color: #fff; }
.btn-primary:hover { background: var(--terra-dark); color: #fff; }
.btn-ghost { background: transparent; color: #121212; border: 1px solid #1c1c1c40; }
.btn-ghost:hover { border-color: #1c1c1c; color: #121212; }
.btn-dark { background: #121212; color: #fff; }
.btn-dark:hover { background: #2a2722; }
.btn-lg { padding: 16px 28px; font-size: 14px; }
.btn-sm { padding: 9px 16px; font-size: 12.5px; }
.btn-block { width: 100%; justify-content: center; }
.btn svg { transition: transform .2s; flex-shrink: 0; }
.btn:hover svg.arr { transform: translateX(3px); }

/* ============ BREADCRUMBS ============ */
.crumbs {
  padding: 18px 0;
  font-size: 12px;
  color: #6b6660;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .04em;
}
.crumbs a { color: #6b6660; text-decoration: none; }
.crumbs a:hover { color: var(--terra); }
.crumbs .sep { margin: 0 8px; color: #bab5ad; }
.crumbs .cur { color: #121212; }
.dark-page .crumbs { color: #8a857e; }
.dark-page .crumbs a { color: #8a857e; }
.dark-page .crumbs .cur { color: #d6d1ca; }

/* ============ SECTION HEADS ============ */
.sec-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--terra);
  margin-bottom: 14px;
}
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  gap: 40px;
}
.sec-head h2 { font-size: 40px; line-height: 1.1; max-width: 620px; }
.sec-head .lede { max-width: 360px; color: #4a4641; font-size: 14.5px; line-height: 1.6; }

/* ============ HERO ============ */
.hero {
  background: var(--cream);
  padding: 60px 0 80px;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--terra);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--terra);
}
.hero h1 { font-size: 58px; line-height: 1.05; color: #111; }
.hero h1 em { font-style: italic; color: var(--terra); }
.hero-sub {
  font-size: 17px;
  line-height: 1.55;
  color: #3a3631;
  margin-top: 26px;
  max-width: 520px;
}
.hero-cta { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-meta-item .k {
  font-family: 'Lora', serif;
  font-size: 28px;
  color: #111;
  font-weight: 500;
}
.hero-meta-item .v {
  font-size: 11.5px;
  color: #6b6660;
  margin-top: 2px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* hero visual */
.hero-visual { position: relative; aspect-ratio: 4/5; max-height: 580px; }
.hero-visual img,
.hero-visual .ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-visual .chip {
  position: absolute;
  padding: 10px 14px;
  border-radius: 2px;
  background: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  box-shadow: 0 4px 24px #0000001a;
  color: #121212;
  z-index: 2;
}
.hero-visual .chip .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ok);
  margin-right: 8px;
  vertical-align: middle;
}
.hero-visual .chip.tl { top: 20px; left: -30px; }
.hero-visual .chip.br { bottom: 40px; right: -26px; background: var(--graphite); color: #f3ede4; }
.hero-visual .dna-svg { position: absolute; right: -40px; bottom: -20px; width: 260px; opacity: .85; z-index: 1; pointer-events: none; }

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; align-items: center; }
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-item .icon { color: var(--terra); flex-shrink: 0; }
.trust-item strong { font-family: 'Lora', serif; font-size: 15.5px; font-weight: 500; display: block; }
.trust-item .l { font-size: 12.5px; color: #4a4641; line-height: 1.4; margin-top: 4px; }

/* ============ SERVICE CARDS ============ */
.services-bg { background: var(--cream); }
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}
.service-card {
  background: var(--cream);
  padding: 36px 32px 32px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .2s;
  text-decoration: none;
  color: inherit;
  min-height: 300px;
}
.service-card:hover { background: #fff; }
.service-card .icn { color: var(--terra); }
.service-card h3 { font-size: 22px; line-height: 1.25; margin-top: 4px; }
.service-card p { font-size: 13.5px; color: #4a4641; line-height: 1.55; }
.service-card .foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.service-card .price { font-family: 'Lora', serif; font-size: 19px; color: #121212; }
.service-card .price em {
  font-family: 'JetBrains Mono', monospace;
  font-style: normal;
  font-size: 10.5px;
  color: #8a857e;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-right: 6px;
}
.service-card .more {
  font-size: 12.5px;
  color: var(--terra);
  text-decoration: none;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.service-card.dark {
  background: #0F0F0F;
  color: #eee;
  border-color: #0F0F0F;
}
.service-card.dark h3 { color: #fff; }
.service-card.dark p { color: #b0aaa2; }
.service-card.dark .icn { color: #c76c5c; }
.service-card.dark .foot { border-top-color: #ffffff20; }
.service-card.dark .price { color: #fff; }
.service-card.dark .more { color: #c76c5c; }
.service-card.dark:hover { background: #151515; }

/* ============ PROCESS ============ */
.process-bg { background: #F4EDE2; }
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
}
.process-step {
  padding: 28px 24px 28px 0;
  border-top: 1px solid var(--line-strong);
  position: relative;
}
.process-step .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--terra);
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.process-step h3 { font-size: 20px; font-weight: 500; line-height: 1.3; margin-bottom: 10px; }
.process-step p { font-size: 13px; color: #4a4641; line-height: 1.55; }
.process-step::before {
  content: "";
  position: absolute;
  top: -4px; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terra);
}

/* 5-step process */
.process.steps-5 { grid-template-columns: repeat(5, 1fr); }

/* ============ EEAT ============ */
.eeat-bg { background: var(--cream); }
.eeat { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
.eeat-list { display: flex; flex-direction: column; }
.eeat-item {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  align-items: start;
  border-top: 1px solid var(--line);
}
.eeat-item:last-child { border-bottom: 1px solid var(--line); }
.eeat-item .ic { color: var(--terra); }
.eeat-item h3 { font-size: 18px; margin-bottom: 4px; }
.eeat-item p { font-size: 13px; color: #4a4641; }
.eeat-visual { aspect-ratio: 3/4; background: var(--sand); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.eeat-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ============ EXPERTS ============ */
.experts-bg { background: var(--sand); }
.experts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.expert {
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
}
.expert .photo { aspect-ratio: 4/5; background: var(--sand-2); overflow: hidden; }
.expert .photo img { width: 100%; height: 100%; object-fit: cover; }
.expert-info { padding: 24px; }
.expert-info h3 { font-size: 19px; }
.expert-role { font-size: 12px; color: #6b6660; margin-top: 6px; font-family: 'JetBrains Mono', monospace; }
.expert-meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: #4a4641;
}
.expert-meta div { display: flex; flex-direction: column; gap: 2px; }
.expert-meta .k { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: #8a857e; text-transform: uppercase; letter-spacing: .1em; }

/* ============ REVIEWS ============ */
.reviews-bg { background: var(--cream); }
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}
.review {
  padding: 32px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.review .stars { color: var(--terra); font-size: 14px; letter-spacing: 2px; }
.review p { font-size: 14px; line-height: 1.55; color: #2a2722; }
.review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.review-head .who { font-weight: 600; color: #121212; }
.review-head .when { color: #8a857e; font-family: 'JetBrains Mono', monospace; font-size: 11px; }

/* ============ CTA BAND ============ */
.cta-band {
  background: #121212;
  color: #f3ede4;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-band-inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; }
.cta-band .sec-eyebrow { color: #c76c5c; }
.cta-band h2 { color: #fff; font-size: 40px; line-height: 1.1; }
.cta-band h2 em { color: #c76c5c; font-style: italic; }
.cta-band p { color: #a5a098; margin-top: 18px; font-size: 15px; }
.cta-form {
  background: #1a1a1a;
  padding: 28px;
  border: 1px solid #ffffff15;
}
.cta-form .row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.cta-form label {
  font-size: 11px;
  color: #8a857e;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.cta-form input,
.cta-form select {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ffffff25;
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  outline: none;
  width: 100%;
}
.cta-form select { cursor: pointer; }
.cta-form select option { background: #1a1a1a; }
.cta-form input::placeholder { color: #5a554f; }
.cta-form .agree {
  font-size: 11.5px;
  color: #8a857e;
  line-height: 1.5;
  margin-top: 8px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
}
.cta-form .agree input[type="checkbox"] { width: 14px; height: 14px; margin-top: 2px; accent-color: var(--terra); flex-shrink: 0; }
.cta-form .btn { width: 100%; justify-content: center; margin-top: 14px; }
.form-success { display: none; text-align: center; padding: 24px; color: #fff; }
.form-success.show { display: block; }

/* ============ FOOTER ============ */
.site-footer { background: #0a0a0a; color: #a5a098; padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.site-footer h4 {
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin: 0 0 18px;
}
.site-footer a { color: #a5a098; text-decoration: none; display: block; font-size: 13.5px; padding: 4px 0; }
.site-footer a:hover { color: #fff; }
.footer-brand-line {
  font-family: 'Lora', serif;
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand-line .mark {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--terra);
  display: grid;
  place-items: center;
}
.footer-adr { font-size: 13px; line-height: 1.6; color: #a5a098; margin-bottom: 16px; }
.cert-row { display: flex; gap: 10px; margin-top: 14px; }
.cert-row .cert {
  width: 52px; height: 52px;
  background: #1a1a1a;
  border: 1px solid #ffffff15;
  display: grid;
  place-items: center;
  color: #5a554f;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  text-align: center;
  line-height: 1.2;
}
.footer-bottom {
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid #ffffff15;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #5a554f;
}

/* ============ SERVICE PAGE HERO ============ */
.ph-service { background: var(--cream); padding: 32px 0 64px; border-bottom: 1px solid var(--line); }
.ph-service-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.ph-service h1 { font-size: 50px; line-height: 1.05; margin-bottom: 22px; }
.ph-service .lede { font-size: 17px; line-height: 1.6; color: #3a3631; margin-bottom: 32px; max-width: 540px; }
.ph-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
  position: sticky;
  top: 90px;
}
.ph-card .row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.ph-card .row:last-of-type { border-bottom: none; }
.ph-card .row .k {
  color: #6b6660;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.ph-card .row .v { font-family: 'Lora', serif; font-size: 16px; color: #121212; }
.ph-card .price-big {
  font-family: 'Lora', serif;
  font-size: 34px;
  color: #121212;
  font-weight: 500;
  margin-bottom: 4px;
}
.ph-card .price-big em {
  font-style: normal;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #8a857e;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-right: 8px;
}

/* ============ INCLUDED LIST ============ */
.incl-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.incl-item {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
}
.incl-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
.incl-item:nth-child(odd) { padding-right: 32px; }
.incl-item:nth-child(even) { padding-left: 32px; border-left: 1px solid var(--line); }
.incl-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--terra);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  margin-top: 2px;
  flex-shrink: 0;
}
.incl-item h4 { margin: 0 0 4px; font-family: 'Lora', serif; font-size: 17px; font-weight: 500; }
.incl-item p { font-size: 13px; color: #4a4641; line-height: 1.55; }

/* ============ FOR WHOM ============ */
.whom-bg { background: var(--sand); }
.whom-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.whom-card {
  background: var(--cream);
  padding: 24px;
  border: 1px solid var(--line);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.whom-card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--terra);
  letter-spacing: .08em;
}
.whom-card h3 { font-size: 17px; line-height: 1.3; }
.whom-card p { font-size: 13px; color: #4a4641; line-height: 1.55; }

/* ============ PRICE TABLE ============ */
.price-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.price-table th,
.price-table td { text-align: left; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.price-table th {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6b6660;
  font-weight: 500;
  background: var(--sand);
}
.price-table td.p { font-family: 'Lora', serif; font-size: 17px; color: #121212; white-space: nowrap; }
.price-table tr:hover td { background: #f7efe4; }
.price-table td .srv { font-family: 'Lora', serif; font-size: 16px; color: #121212; margin-bottom: 4px; }
.price-table td .desc { font-size: 12.5px; color: #6b6660; }
.badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--sand);
  color: #7a5c3a;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  border-radius: 2px;
  margin-left: 8px;
}
.badge.urg { background: #fbe7e0; color: var(--terra); }
.price-note {
  margin-top: 20px;
  padding: 18px 22px;
  background: var(--sand);
  border-left: 3px solid var(--terra);
  font-size: 14px;
  color: #363330;
}

/* ============ PRICE TABS ============ */
.price-tabs {
  display: flex;
  border-bottom: 1px solid var(--line-strong);
  margin-bottom: 40px;
  flex-wrap: wrap;
  overflow-x: auto;
}
.price-tabs button {
  all: unset;
  padding: 14px 22px;
  cursor: pointer;
  font-size: 13.5px;
  color: #6b6660;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
}
.price-tabs button:hover { color: #121212; }
.price-tabs button.active { color: #121212; border-bottom-color: var(--terra); }

/* ============ FAQ ============ */
.faq { display: flex; flex-direction: column; border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line-strong); }
.faq-q {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Lora', serif;
  font-size: 19px;
  font-weight: 500;
  color: #121212;
  gap: 32px;
  user-select: none;
}
.faq-q .plus {
  width: 28px; height: 28px;
  border: 1px solid #1c1c1c40;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all .2s;
  color: #121212;
}
.faq-item.open .plus {
  background: var(--terra);
  border-color: var(--terra);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  color: #4a4641;
  font-size: 14.5px;
  line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 22px; }
.faq-a p { max-width: 820px; }
.dark-page .faq-q { color: #fff; }
.dark-page .faq-item { border-color: #ffffff20; }

/* ============ STATS ROW ============ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}
.stat {
  padding: 28px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.stat .k { font-family: 'Lora', serif; font-size: 40px; font-weight: 500; color: #121212; line-height: 1; }
.stat .l { font-size: 12px; color: #6b6660; margin-top: 8px; font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: .08em; }

/* ============ DARK PAGE (SVO) ============ */
.dark-page { background: #0F0F0F; }
.dark-page .page-body { background: #0F0F0F; }
.dark-page h1, .dark-page h2, .dark-page h3, .dark-page h4 { color: #fff; }
.dark-page p { color: #b0aaa2; }
.dark-page .hero-sub { color: #c5c0b8; }
.dark-page .sec-eyebrow { color: #c76c5c; }
.dark-page .section { background: #0F0F0F; }
.dark-page .section:nth-child(even) { background: #151515; }
.svo-urgent {
  background: #170808;
  border: 1px solid #7A1F1F;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
}
.svo-urgent .ic { color: #c76c5c; flex-shrink: 0; }
.svo-urgent h4 { margin: 0 0 4px; font-size: 16px; color: #fff; }
.svo-urgent p { font-size: 13px; color: #b0aaa2; margin: 0; }
.svo-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #ffffff20;
  border-left: 1px solid #ffffff20;
}
.svo-step {
  padding: 28px;
  border-right: 1px solid #ffffff20;
  border-bottom: 1px solid #ffffff20;
}
.svo-step .num { font-family: 'JetBrains Mono', monospace; color: #c76c5c; font-size: 11px; letter-spacing: .1em; }
.svo-step h3 { margin: 14px 0 10px; font-size: 20px; color: #fff; }
.svo-step p { font-size: 13.5px; color: #b0aaa2; line-height: 1.6; }

/* ============ ABOUT / STORY ============ */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.story-grid p { font-size: 15.5px; line-height: 1.7; margin-bottom: 18px; }
.timeline-years { margin-top: 48px; }
.timeline-years .yr {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.timeline-years .yr:last-child { border-bottom: 1px solid var(--line); }
.timeline-years .k { font-family: 'Lora', serif; font-size: 22px; color: var(--terra); font-weight: 500; }
.timeline-years .v { font-size: 14.5px; color: #363330; line-height: 1.6; }

/* ============ SPECIALISTS ============ */
.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}
.sp-card {
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--cream);
}
.sp-card .photo { aspect-ratio: 4/5; background: var(--sand-2); overflow: hidden; }
.sp-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.sp-card .body { padding: 24px; }
.sp-card h3 { font-size: 20px; font-weight: 500; line-height: 1.25; }
.sp-card .role { font-size: 12px; color: var(--terra); font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: .08em; margin-top: 6px; }
.sp-card ul { list-style: none; padding: 0; margin: 14px 0 0; font-size: 12.5px; color: #4a4641; }
.sp-card ul li { padding: 6px 0; border-top: 1px dashed var(--line); display: flex; justify-content: space-between; gap: 12px; }
.sp-card ul li .k { color: #8a857e; font-family: 'JetBrains Mono', monospace; font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em; }

/* ============ BLOG ============ */
.articles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.art { display: flex; flex-direction: column; gap: 14px; text-decoration: none; color: inherit; }
.art .thumb { aspect-ratio: 3/2; background: var(--sand); overflow: hidden; }
.art .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.art:hover .thumb img { transform: scale(1.03); }
.art .tag { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: var(--terra); text-transform: uppercase; letter-spacing: .1em; }
.art h3 { font-family: 'Lora', serif; font-size: 19px; line-height: 1.3; }
.art .meta { font-size: 11.5px; color: #8a857e; font-family: 'JetBrains Mono', monospace; }

/* ============ MISC ============ */
.divider { height: 1px; background: var(--line); margin: 72px 0; }
.kv-chip {
  display: inline-block;
  padding: 4px 10px;
  background: var(--sand);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: #5a554f;
  border-radius: 2px;
  letter-spacing: .04em;
}
.notice {
  padding: 16px 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-size: 13px;
  color: #4a4641;
}

/* ============ MOBILE STICKY CTA ============ */
.mob-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: #121212;
  color: #fff;
  z-index: 100;
}
.mob-sticky a {
  flex: 1;
  padding: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
}
.mob-sticky a:first-child { background: #1c1c1c; }
.mob-sticky a.call { background: #1c1c1c; }
.mob-sticky a.order { background: var(--terra); }

/* ============ SVG ICONS ============ */
.icon { display: inline-block; vertical-align: middle; }

/* ============ PLACEHOLDER (design) ============ */
.ph {
  background: repeating-linear-gradient(135deg, #E8DFD2 0 8px, #EEE7DC 8px 16px);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  width: 100%; height: 100%;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .sh-inner { padding: 0 32px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .experts { grid-template-columns: repeat(2, 1fr); }
  .sp-grid { grid-template-columns: repeat(2, 1fr); }
  .articles { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process.steps-5 { grid-template-columns: repeat(2, 1fr); }
  .eeat { grid-template-columns: 1fr; }
  .eeat-visual { display: none; }
  .cta-band-inner { grid-template-columns: 1fr; gap: 32px; }
  .story-grid { grid-template-columns: 1fr; }
  .ph-service-grid { grid-template-columns: 1fr; }
  .ph-card { position: static; }
  .svo-steps { grid-template-columns: 1fr; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .sec-head h2 { font-size: 32px; }
}

@media (max-width: 767px) {
  .container { padding: 0 20px; }
  .sh-inner { padding: 0 20px; }
  .sh-nav { display: none; }
  .sh-right .sh-phone { display: none; }
  .sh-right .btn { display: none; }
  .sh-burger { display: flex; }

  .section { padding: 48px 0; }
  .section-sm { padding: 32px 0; }

  .hero { padding: 32px 0 44px; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 15px; }
  .hero-cta .btn { flex: 1; justify-content: center; }
  .hero-meta { gap: 18px; }
  .hero-meta-item { flex: 1 0 40%; }
  .hero-meta-item .k { font-size: 24px; }

  .trust-grid { grid-template-columns: 1fr; gap: 20px; }
  .services { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .review { padding: 22px; }
  .experts { grid-template-columns: 1fr; }
  .sp-grid { grid-template-columns: 1fr; }
  .articles { grid-template-columns: 1fr; }
  .whom-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }

  .process { grid-template-columns: 1fr; }
  .process.steps-5 { grid-template-columns: 1fr; }

  .incl-list { grid-template-columns: 1fr; }
  .incl-item { padding: 18px 0 !important; border-left: none !important; }
  .incl-item:nth-last-child(-n+2) { border-bottom: none; }
  .incl-item:last-child { border-bottom: 1px solid var(--line); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }

  .cta-band { padding: 44px 0; }
  .cta-band h2 { font-size: 28px; }

  .ph-service h1 { font-size: 32px; }
  .price-tabs button { padding: 12px 16px; font-size: 12.5px; }
  .faq-q { font-size: 16px; padding: 18px 0; }

  .mob-sticky { display: flex; }
  body { padding-bottom: 56px; }

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