@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #fbfaf7;
  --surface: #fff;
  --soft: #f3f0eb;
  --text: #171717;
  --muted: #686b66;
  --line: rgba(23, 23, 23, .11);
  --accent: #176b64;
  --accent-dark: #0f4b46;
  --accent-bright: #28a092;
  --coral: #c7684d;
  --radius: 8px;
  --container: 1160px;
  --shadow: 0 20px 56px rgba(25, 31, 29, .1);
}

[data-theme="dark"] {
  --bg: #0f1413;
  --surface: #171d1b;
  --soft: #111816;
  --text: #f4f1ea;
  --muted: #b7beb8;
  --line: rgba(255, 255, 255, .14);
  --accent: #2eb2a5;
  --accent-dark: #8ce2d8;
  --accent-bright: #5bd1c5;
  --coral: #e49a7f;
  --shadow: 0 20px 56px rgba(0, 0, 0, .34);
}

* { box-sizing: border-box; }
html { width: 100%; max-width: 100%; overflow-x: clip; overflow-y: auto; scroll-behavior: smooth; }
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  touch-action: pan-y pinch-zoom;
}
body.modal-open { overflow: hidden; touch-action: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  width: min(calc(100% - 32px), 1180px);
  min-height: 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}
.site-header.is-scrolled { top: 10px; background: rgba(255,255,255,.94); }
[data-theme="dark"] .site-header { border-color: rgba(255,255,255,.12); background: rgba(17,24,22,.86); }
[data-theme="dark"] .site-header.is-scrolled { background: rgba(17,24,22,.94); }
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #121716, var(--accent));
  color: #fff;
  font-size: .86rem;
  font-weight: 900;
}
.brand-mark:before { position: absolute; inset: 7px; border: 1px solid rgba(255,255,255,.24); border-radius: 6px; content: ""; }
.brand-mark:after { position: absolute; width: 70%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent); content: ""; transform: rotate(-38deg); }
.brand-mark span { position: relative; z-index: 1; }
.site-nav { display: flex; justify-content: center; gap: 4px; }
.site-nav a { display: inline-flex; align-items: center; padding: 10px; border-radius: var(--radius); color: #474b47; font-size: .9rem; font-weight: 700; }
.site-nav a:hover { background: rgba(23,107,100,.08); color: var(--accent-dark); }
.header-actions-wrap { display: flex; align-items: center; gap: 8px; }
.toggle-btn {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
  background: rgba(255,255,255,.74);
  color: var(--text);
  font-size: .78rem;
  font-weight: 900;
  cursor: pointer;
}
.toggle-btn:hover { border-color: rgba(23,107,100,.32); color: var(--accent-dark); }
.theme-toggle { width: 38px; padding: 0; border-radius: 50%; }
.theme-icon { display: grid; width: 19px; height: 19px; place-items: center; }
.theme-icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.theme-icon-moon { display: none; }
[data-theme="dark"] .theme-icon-sun { display: none; }
[data-theme="dark"] .theme-icon-moon { display: grid; }
[data-theme="dark"] .site-nav a { color: rgba(244,241,234,.78); }
[data-theme="dark"] .site-nav a:hover { background: rgba(91,209,197,.12); color: var(--accent-dark); }
[data-theme="dark"] .toggle-btn,
[data-theme="dark"] .nav-toggle,
[data-theme="dark"] .header-social { background: rgba(255,255,255,.07); color: var(--text); }
[data-theme="dark"] .theme-toggle { color: var(--coral); }
.mobile-nav-actions, .header-socials { display: none; }
.header-desktop-socials { display: flex; align-items: center; gap: 7px; }
.header-social {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
  transition: transform .2s ease, opacity .2s ease;
}
.header-social img { display: block; width: 30px; height: 30px; object-fit: contain; }
.header-social[aria-label="LinkedIn"] img { width: 35px; height: 35px; }
.header-social:hover { transform: translateY(-2px); opacity: .88; }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); cursor: pointer; }
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 5px auto; background: var(--text); transition: transform .2s; }

.btn, .header-cta, .floating-cta {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .22s, background .22s, border-color .22s;
  box-shadow: none;
}
.btn:after, .header-cta:after, .floating-cta:after { position: absolute; inset: -40% auto -40% -55%; width: 44%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent); content: ""; transform: skewX(-18deg); transition: left .55s; }
.btn:hover:after, .header-cta:hover:after, .floating-cta:hover:after { left: 112%; }
.btn-primary, .header-cta, .btn-card { background: linear-gradient(180deg, var(--accent-bright), var(--accent) 54%, var(--accent-dark)); color: #fff; }
.btn-primary:not(:disabled), .btn-card, .header-cta, .floating-cta.is-visible { animation: cta-breathe 2.7s ease-in-out infinite; }
.btn-primary:not(:disabled):after, .btn-card:after, .header-cta:after, .floating-cta.is-visible:after {
  animation: cta-shine 3.2s ease-in-out infinite;
}
.btn-secondary { border-color: var(--line); background: rgba(255,255,255,.9); color: var(--text); }
.btn:hover, .header-cta:hover, .floating-cta:hover { transform: translateY(-2px); }

.section { padding: 96px 0; }
.muted { background: var(--soft); }
.hero { position: relative; min-height: 760px; padding: 152px 0 96px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg:after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(251,250,247,.98), rgba(251,250,247,.82) 45%, rgba(251,250,247,.18)); }
[data-theme="dark"] .hero-bg:after { background: linear-gradient(90deg, rgba(15,20,19,.98), rgba(15,20,19,.84) 46%, rgba(15,20,19,.36)); }
.hero-bg picture { display: block; width: 100%; height: 100%; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center right; filter: saturate(.95); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .64fr); gap: 46px; align-items: end; }
.hero-content { max-width: 780px; padding-top: 54px; }
.eyebrow { display: inline-flex; margin-bottom: 16px; color: var(--accent); font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 690px; margin-bottom: 22px; font-size: clamp(2.6rem, 4.4vw, 4rem); line-height: 1.02; }
h2 { margin-bottom: 18px; font-size: clamp(1.75rem, 3vw, 2.85rem); line-height: 1.08; }
h3 { margin-bottom: 12px; font-size: 1.22rem; line-height: 1.22; }
.hero-title { max-width: 780px; font-size: 1.7rem; line-height: 1.08; }
.hero-title span, .about-title span, .contact-title span { display: block; }
.about-title { font-size: 1.4rem; line-height: 1.2; }
.single-line-title { max-width: none; font-size: clamp(1.65rem, 2.4vw, 2rem); white-space: nowrap; }
.one-line-heading { max-width: none; font-size: 2rem; white-space: nowrap; }
.mobile-break { display: none; }
.hero-lead { max-width: 620px; color: #494a46; font-size: clamp(1.08rem, 2vw, 1.38rem); }
.hero-actions, .hero-proof, .social-row, .contact-links, .footer-links { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-actions { margin: 34px 0 28px; }
.hero-proof span { border: 1px solid rgba(23,23,23,.12); border-radius: 999px; padding: 8px 12px; background: rgba(255,255,255,.68); color: #4e504b; font-size: .92rem; white-space: nowrap; }
.hero-card { max-width: 420px; justify-self: end; border: 1px solid rgba(255,255,255,.78); border-radius: var(--radius); padding: 28px; background: rgba(255,255,255,.82); box-shadow: var(--shadow); backdrop-filter: blur(20px); }
[data-theme="dark"] .hero-lead,
[data-theme="dark"] .process-card p,
[data-theme="dark"] .case-card p,
[data-theme="dark"] .review-card p,
[data-theme="dark"] .result-line,
[data-theme="dark"] .signal-list li,
[data-theme="dark"] .price-card li,
[data-theme="dark"] .review-slide p { color: var(--muted); }
[data-theme="dark"] .hero-proof span,
[data-theme="dark"] .social-row a,
[data-theme="dark"] .footer-links a {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: var(--text);
}
[data-theme="dark"] .hero-card { border-color: rgba(255,255,255,.12); background: rgba(23,29,27,.84); }
.card-kicker { margin-bottom: 10px; color: var(--coral); font-weight: 900; }
.hero-card h2 { font-size: 2rem; }
.social-row { justify-content: center; margin-top: 18px; }
.contact-links { justify-content: center; width: 100%; }
.social-row a, .contact-links a, .footer-links a { border: 1px solid rgba(23,107,100,.24); border-radius: 999px; padding: 8px 12px; background: rgba(255,255,255,.72); color: var(--accent-dark); font-weight: 800; }
.social-row .social-icon-link {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  transition: transform .2s ease, opacity .2s ease;
}
.social-row .social-icon-link img { width: 40px; height: 40px; object-fit: contain; }
.social-row .social-icon-link[aria-label="LinkedIn"] img { width: 46px; height: 46px; }
.social-row .social-icon-link:hover { background: transparent; opacity: .86; transform: translateY(-2px); }
.contact-links .social-icon-link {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  transition: transform .2s ease, opacity .2s ease;
}
.contact-links .social-icon-link img { width: 30px; height: 30px; object-fit: contain; }
.contact-links .social-icon-link[aria-label="LinkedIn"] img { width: 35px; height: 35px; }
.contact-links .social-icon-link:hover { background: transparent; opacity: .86; transform: translateY(-2px); }

.split, .why-grid, .contact-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1fr); gap: 56px; align-items: start; }
.faq-layout { display: grid; gap: 34px; align-items: start; }
.section-heading p { max-width: 620px; color: var(--muted); font-size: 1.08rem; }
.section-heading.narrow { max-width: 760px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.signal-list, .why-panel, .contact-form, .process-card, .price-card, .result-card, .case-card, .review-card, .portrait { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.signal-list, .contact-form { padding: 34px; }
ul { margin: 0; padding: 0; list-style: none; }
.signal-list li, .price-card li { position: relative; padding: 12px 0 12px 28px; border-top: 1px solid rgba(23,23,23,.08); color: #4c4d49; }
.signal-list li:before, .price-card li:before { position: absolute; top: 18px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); content: ""; }
.faq { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; align-items: stretch; }

.faq-card {
  display: flex;
  min-height: 128px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(23,107,100,.14);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(23,107,100,.07), rgba(255,255,255,.98) 62%);
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
[data-theme="dark"] .faq-card { background: linear-gradient(135deg, rgba(46,178,165,.12), rgba(23,29,27,.98) 62%); }

@media (hover: hover) and (pointer: fine) {
  .faq-card:hover {
    border-color: rgba(23,107,100,.42);
    background: linear-gradient(135deg, rgba(23,107,100,.14), rgba(255,255,255,1) 66%);
    box-shadow: 0 16px 38px rgba(23,107,100,.13);
  }

  [data-theme="dark"] .faq-card:hover {
    border-color: rgba(46,178,165,.45);
    background: linear-gradient(135deg, rgba(46,178,165,.2), rgba(23,29,27,1) 66%);
    box-shadow: 0 16px 38px rgba(0,0,0,.28);
  }
}
[data-theme="dark"] .faq-icon,
[data-theme="dark"] .case-trigger i,
[data-theme="dark"] .review-arrow,
[data-theme="dark"] .review-dot,
[data-theme="dark"] .format-option,
[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form textarea,
[data-theme="dark"] .format-select,
[data-theme="dark"] .modal-close {
  background: #101614;
  color: var(--text);
}

.faq-item {
  display: grid;
  width: 100%;
  min-height: 128px;
  flex: 1;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 16px;
  border: 0;
  padding: 22px 22px 22px 24px;
  background: transparent;
  color: var(--text);
  text-align: center;
  font-weight: 900;
  cursor: pointer;
}

.faq-item span:first-child {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  font-size: clamp(.92rem, 1.2vw, 1rem);
  line-height: 1.28;
}

.faq-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}

.faq-panel p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
  color: var(--muted);
}

.faq-card.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-card.is-open .faq-panel p {
  padding-bottom: 22px;
}
.process-grid, .pricing-grid, .case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 42px; }
.process-card, .case-card, .review-card, .price-card { padding: 26px; transition: transform .2s, box-shadow .2s; }
.process-card:hover, .case-card:hover, .review-card:hover, .price-card:hover { transform: translateY(-4px); }
.price-card { transition: border-color .2s, background .2s; }
.price-card:hover { transform: none; }
.process-card span { display: inline-flex; margin-bottom: 24px; color: var(--coral); font-size: 2.8rem; font-weight: 900; line-height: 1; }
.process-card p, .case-card p, .review-card p, .result-line { color: var(--muted); }
.case-card span { display: inline-flex; margin-bottom: 16px; color: var(--coral); font-size: .78rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.review-card { display: flex; min-height: 360px; flex-direction: column; }
.review-card footer { margin-top: auto; border-top: 1px solid var(--line); padding-top: 16px; }
.review-card b, .review-card span { display: block; }
.review-card span { color: var(--muted); font-size: .92rem; }

.case-accordion {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

.case-item {
  overflow: hidden;
  border: 1px solid rgba(23,107,100,.14);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.case-trigger {
  display: grid;
  width: 100%;
  grid-template-columns: 54px minmax(160px,.42fr) 1fr 34px;
  gap: 18px;
  align-items: center;
  border: 0;
  padding: 22px 24px;
  background: linear-gradient(90deg, rgba(23,107,100,.06), transparent 62%);
  color: var(--text);
  text-align: left;
  cursor: pointer;
}
[data-theme="dark"] .case-trigger { background: linear-gradient(90deg, rgba(46,178,165,.11), transparent 62%); }

.case-trigger span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-size: .8rem;
  font-weight: 900;
}

.case-trigger strong {
  color: var(--accent-dark);
  font-size: .95rem;
  text-transform: uppercase;
}

.case-trigger em {
  color: var(--text);
  font-size: 1.12rem;
  font-style: normal;
  font-weight: 900;
}

.case-trigger i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  font-style: normal;
  font-weight: 900;
}

.case-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease, padding .32s ease;
}

.case-panel p {
  margin: 0;
  padding: 0 24px;
  color: var(--muted);
}

.case-item.is-open .case-panel {
  max-height: 420px;
  padding-bottom: 24px;
}

.case-item.is-open .case-panel p:first-child {
  padding-top: 4px;
}

.review-slider {
  position: relative;
  max-width: 920px;
  margin: 42px auto 0;
}

.review-track {
  position: relative;
  min-height: 390px;
}

.review-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(23,107,100,.14);
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(23,107,100,.08), transparent 42%),
    var(--surface);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(22px) scale(.985);
  pointer-events: none;
  transition: opacity .45s ease, transform .45s ease;
}

.review-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.review-slide::before {
  content: "“";
  position: absolute;
  top: 18px;
  left: 30px;
  color: rgba(23,107,100,.16);
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
}

.review-slide p {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
  color: #3f4642;
  font-size: clamp(1.02rem, 1.8vw, 1.24rem);
}

.review-slide footer {
  max-width: 760px;
  width: 100%;
  margin: 22px auto 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.review-slide b,
.review-slide span {
  display: block;
}

.review-slide span {
  color: var(--muted);
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.review-arrow,
.review-dot {
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.review-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 900;
}

.review-dots {
  display: flex;
  gap: 8px;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  padding: 0;
  transition: width .2s ease, background .2s ease;
}

.review-dot.is-active {
  width: 28px;
  background: var(--accent);
}
.portrait {
  aspect-ratio: 4 / 5;
  max-height: 680px;
  overflow: hidden;
}
.portrait picture {
  display: block;
  width: 100%;
  height: 100%;
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 26px 0; }
.metrics div { min-height: 128px; border-radius: var(--radius); padding: 18px; background: var(--soft); }
.metrics strong { display: block; color: var(--accent-dark); font-size: 2rem; line-height: 1; }
.metrics span { color: var(--muted); font-size: .9rem; }
.price-card { position: relative; display: flex; min-height: 582px; flex-direction: column; gap: 16px; }
.badge { position: absolute; top: 18px; right: 18px; border-radius: 999px; padding: 7px 10px; background: rgba(199,104,77,.12); color: #984e38; font-size: .78rem; font-weight: 900; }
[data-theme="dark"] .badge { background: rgba(228,154,127,.14); color: var(--coral); }
.price { margin-bottom: 10px; color: var(--accent-dark); font-size: 2.32rem; font-weight: 900; line-height: 1; }
.price-detail { border-top: 1px solid var(--line); padding-top: 14px; color: var(--muted); }
.price-detail strong { display: block; color: var(--text); font-size: .98rem; line-height: 1.35; }
.price-card h3 { margin-bottom: 8px; }
.price-card p { margin-bottom: 0; }
.price-card li { padding: 8px 0 8px 24px; }
.price-card li:before { top: 15px; width: 8px; height: 8px; }
.btn-card { margin-top: auto; }
.pricing-grid .price-card .btn-card:after {
  animation: price-button-shine 6s ease-in-out infinite both;
}
.pricing-grid .price-card:nth-child(1) .btn-card:after { animation-delay: 0s; }
.pricing-grid .price-card:nth-child(2) .btn-card:after { animation-delay: 2s; }
.pricing-grid .price-card:nth-child(3) .btn-card:after { animation-delay: 4s; }

.contact { background: #101614; color: #fff; }
.contact .section-heading p, .contact .eyebrow { color: rgba(255,255,255,.68); }
.contact-links a { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.08); color: #fff; }
.contact-meta {
  display: grid;
  gap: 4px;
  margin: 22px 0 18px;
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 18px;
}

.contact-meta p {
  margin: 0;
  color: rgba(255,255,255,.78) !important;
  font-size: .95rem;
}

.contact-form { color: var(--text); }
.contact-form { scroll-margin-top: 110px; }
.contact-form label { display: block; margin-bottom: 16px; }
.contact-form span, .format-group legend { display: block; margin-bottom: 7px; font-size: .9rem; font-weight: 900; }
.contact-form input, .contact-form textarea, .format-select { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); padding: 13px 14px; background: #fff; color: var(--text); outline: none; }
.contact-rule {
  margin: -2px 0 14px;
  border: 1px solid rgba(23,107,100,.14);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: rgba(23,107,100,.06);
  color: var(--accent-dark);
  font-size: .9rem;
  font-weight: 800;
}
.format-group { margin: 0 0 16px; border: 0; padding: 0; }
.format-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.format-option { min-height: 52px; border: 1px solid var(--line); border-radius: var(--radius); padding: 10px; background: #fff; color: var(--text); font-weight: 900; cursor: pointer; }
.format-option.is-selected { border-color: var(--accent); background: rgba(23,107,100,.1); color: var(--accent-dark); }
.format-select { display: none; font-weight: 800; }
.consent-row {
  display: grid !important;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin: 2px 0 18px !important;
  color: var(--muted);
  cursor: pointer;
}
.consent-row input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--accent);
  cursor: pointer;
}
.contact-form .consent-row span {
  margin: 0;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.45;
}
.contact-form .btn:disabled {
  opacity: .48;
  animation: none;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}
.form-note { min-height: 24px; margin: 14px 0 0; color: var(--muted); font-size: .92rem; }

.site-footer { position: relative; border-top: 1px solid rgba(255,255,255,.14); padding: 38px 0 44px; background: linear-gradient(180deg, #111614 0%, #0c0f0e 100%); color: #fff; }
.site-footer p, .site-footer a, .site-footer .requisites { color: #fff !important; }
.footer-inner { display: grid; justify-items: center; gap: 8px; text-align: center; }
.footer-inner p { margin: 0; font-size: .95rem; }
.footer-logo {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}
.footer-links a { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.08); color: #fff; }
.requisites { color: rgba(255,255,255,.72) !important; }
.privacy-link { min-height: 44px; border: 1px solid rgba(255,255,255,.44); border-radius: var(--radius); padding: 10px 18px; background: transparent; color: #fff; cursor: pointer; }
.floating-cta { position: fixed; right: 18px; bottom: 18px; z-index: 35; min-height: 48px; padding: 13px 18px; background: var(--accent); color: #fff; opacity: 0; pointer-events: none; }
.floating-cta.is-visible { opacity: 1; pointer-events: auto; }
.cookie-banner { position: fixed; right: 0; bottom: 0; left: 0; z-index: 60; display: none; width: 100%; min-height: 76px; grid-template-columns: minmax(0, 1fr) auto; gap: 20px; align-items: center; border-top: 1px solid var(--line); padding: 14px max(18px, calc((100vw - var(--container)) / 2)); background: rgba(255,255,255,.94); box-shadow: 0 -18px 48px rgba(21,28,25,.11); backdrop-filter: blur(18px); }
[data-theme="dark"] .cookie-banner { background: rgba(17,24,22,.94); }
.cookie-banner.is-visible { display: grid; }
.cookie-banner p { margin-bottom: 0; color: var(--muted); }
.cookie-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.cookie-actions .btn { min-width: 180px; }
.modal { position: fixed; inset: 0; z-index: 80; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(10,12,11,.58); backdrop-filter: blur(8px); }
.modal-dialog { position: relative; width: min(820px, 100%); max-width: 100%; max-height: min(760px, calc(100vh - 40px)); overflow: auto; border-radius: var(--radius); padding: 34px; background: var(--surface); box-shadow: var(--shadow); }
.modal-close { position: absolute; top: 16px; right: 16px; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--text); font-size: 1.4rem; cursor: pointer; }
.success-dialog {
  width: min(540px, 100%);
  overflow: hidden;
  border: 1px solid rgba(23,107,100,.2);
  padding: 42px 36px 36px;
  background:
    radial-gradient(circle at 50% 0, rgba(23,107,100,.15), transparent 44%),
    var(--surface);
  text-align: center;
}
.success-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.65rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(23,107,100,.25);
}
.success-dialog .eyebrow { display: block; margin-bottom: 10px; }
.success-dialog h2 { margin: 0 auto 24px; font-size: clamp(1.7rem, 4vw, 2.35rem); }
.success-caption { margin-bottom: 7px; color: var(--muted); font-size: .92rem; font-weight: 700; }
.success-number { display: block; margin-bottom: 22px; color: var(--accent); font-size: clamp(2rem, 7vw, 3.25rem); line-height: 1.05; overflow-wrap: anywhere; }
.success-copy { max-width: 410px; margin: 0 auto 26px; color: var(--muted); }
.success-close { min-width: 220px; }
[data-theme="dark"] .success-dialog { border-color: rgba(46,178,165,.26); }
.policy-dialog h2 { font-size: clamp(1.35rem, 2.2vw, 2rem); }
.policy-content { min-width: 0; max-width: 100%; overflow-x: hidden; font-size: 1rem; line-height: 1.55; color: var(--text); }
.policy-content h3 { margin: 18px 0 8px; font-size: .98rem; }
.policy-content p { margin-bottom: 10px; color: var(--text); }
.policy-close-button { width: min(240px, 100%); margin: 26px auto 0; }
.policy-raw {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  white-space: pre-wrap;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.55;
}
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s, transform .7s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.price-card.reveal, .price-card.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: border-color .2s, background .2s;
}
.float-soft { animation: none; }
@keyframes hero-drift { from { transform: scale(1.01); } to { transform: scale(1.045) translate3d(-12px,-6px,0); } }
@keyframes float-soft { from { transform: translateY(0); } to { transform: translateY(-8px); } }
@keyframes cta-breathe { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.08) saturate(1.08); } }
@keyframes cta-shine {
  0%, 46% { left: -55%; }
  72%, 100% { left: 112%; }
}
@keyframes price-button-shine {
  0% { left: -55%; }
  18% { left: 112%; }
  19%, 100% { left: 112%; }
}

@media (max-width: 1024px) {
  .site-header { grid-template-columns: auto 1fr auto auto; justify-content: space-between; gap: 10px; }
  .site-nav, .header-cta, .header-desktop-socials { display: none; }
  .brand { grid-column: 1; }
  .header-socials { grid-column: 2; }
  .header-actions-wrap { grid-column: 3; grid-row: 1; justify-self: end; }
  .nav-toggle { grid-column: 4; grid-row: 1; justify-self: end; }
  .toggle-btn { min-height: 34px; padding: 7px 9px; font-size: .72rem; }
  .theme-toggle { width: 34px; padding: 0; }
  .header-socials {
    display: flex;
    justify-content: center;
    gap: 8px;
    justify-self: center;
  }
  .nav-toggle { display: block; }
  .site-header.menu-open .nav-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .site-header.menu-open .nav-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .site-header.menu-open .site-nav { position: fixed; top: calc(100% + 10px); right: 0; display: grid; width: min(360px, calc(100vw - 20px)); border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; background: rgba(255,255,255,.98); box-shadow: var(--shadow); }
  [data-theme="dark"] .site-header.menu-open .site-nav { background: rgba(17,24,22,.98); }
  .site-header.menu-open .site-nav a { min-height: 48px; }
  .site-header.menu-open .mobile-nav-actions {
    display: grid;
    grid-template-columns: 44px 44px 1fr;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--line);
    padding-top: 12px;
  }
  .mobile-social {
    display: grid !important;
    width: 44px;
    height: 44px;
    min-height: 44px !important;
    place-items: center;
    border: 1px solid rgba(23,107,100,.18);
    border-radius: 50% !important;
    background: rgba(23,107,100,.08);
    color: var(--accent-dark) !important;
    font-size: .86rem !important;
    font-weight: 900 !important;
    line-height: 1;
  }
  .mobile-social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }
  .mobile-menu-cta {
    justify-content: center;
    min-height: 44px !important;
    background: var(--accent) !important;
    color: #fff !important;
    font-weight: 900 !important;
  }
  .hero { min-height: auto; }
  .hero-grid, .split, .faq-layout, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .faq { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-card { justify-self: start; }
  .process-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .case-trigger { grid-template-columns: 48px 1fr 34px; gap: 14px; }
  .case-trigger strong { grid-column: 2; }
  .case-trigger em { grid-column: 2; }
  .case-trigger i { grid-column: 3; grid-row: 1 / span 2; }
  .price-card { min-height: 582px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { top: 10px; width: calc(100% - 20px); max-width: calc(100vw - 20px); min-height: 50px; padding: 8px 10px; gap: 8px; }
  .site-header .brand { width: 28px; height: 28px; flex: 0 0 28px; overflow: hidden; }
  .site-header .brand-logo { width: 28px !important; height: 28px !important; max-width: 28px !important; max-height: 28px !important; object-fit: contain; }
  .header-actions-wrap { gap: 6px; }
  .toggle-btn { min-width: 42px; min-height: 32px; padding: 6px 8px; }
  .theme-toggle { min-width: 32px; width: 32px; padding: 0; }
  .footer-brand { width: 32px; height: 32px; overflow: hidden; }
  .footer-logo { width: 32px !important; height: 32px !important; max-width: 32px !important; max-height: 32px !important; margin-bottom: 4px; object-fit: contain; }
  .section { padding: 72px 0; }
  .hero { padding: 118px 0 70px; }
  .hero-bg:after { background: linear-gradient(180deg, rgba(251,250,247,.96), rgba(251,250,247,.9) 52%, rgba(251,250,247,.62)); }
  [data-theme="dark"] .hero-bg:after { background: linear-gradient(180deg, rgba(15,20,19,.97), rgba(15,20,19,.9) 52%, rgba(15,20,19,.66)); }
  h1 { font-size: clamp(2.3rem, 10.6vw, 3.6rem); }
  h2 { font-size: clamp(1.75rem, 7vw, 2.35rem); }
  .hero-title span { display: inline; }
  .mobile-break { display: inline; }
  .specialists-title { font-size: 1.35rem; }
  .about-title { font-size: 1.55rem; }
  .single-line-title { font-size: 1.65rem; white-space: normal; }
  .one-line-heading { font-size: 1.35rem; white-space: nowrap; }
  .hero-actions, .process-grid, .pricing-grid, .metrics { display: grid; grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
  .faq-card, .faq-item { min-height: 112px; }
  .faq-item { grid-template-columns: 1fr 32px; gap: 12px; padding: 18px 18px 18px 20px; }
  .faq-item span:first-child { min-height: 48px; font-size: .94rem; }
  .faq-icon { width: 32px; height: 32px; }
  .case-trigger { grid-template-columns: 42px 1fr 32px; padding: 18px; }
  .case-trigger span { width: 36px; height: 36px; }
  .case-trigger strong { font-size: .78rem; }
  .case-trigger em { font-size: 1rem; }
  .case-panel p { padding-inline: 18px; }
  .case-item.is-open .case-panel p:last-child { padding-bottom: 18px; }
  .review-track { min-height: 520px; }
  .review-slide { padding: 28px 22px; justify-content: flex-start; }
  .review-slide::before { left: 18px; font-size: 5rem; }
  .review-controls { gap: 10px; }
  .btn, .header-cta { width: 100%; }
  .signal-list, .hero-card, .contact-form { padding: 22px; }
  .modal { align-items: flex-start; padding: 10px; }
  .modal-dialog { width: calc(100vw - 20px); max-width: calc(100vw - 20px); max-height: calc(100dvh - 20px); padding: 18px; overflow-x: hidden; }
  .success-dialog { margin: auto 0; padding: 34px 20px 24px; }
  .success-dialog h2 { max-width: calc(100% - 50px); }
  .success-number { font-size: clamp(1.8rem, 9vw, 2.7rem); }
  .success-close { width: 100%; }
  .policy-dialog h2 { max-width: calc(100% - 42px); font-size: 1.22rem; line-height: 1.18; }
  .policy-content, .policy-raw { width: 100%; max-width: 100%; min-width: 0; }
  .policy-raw { font-size: .92rem; line-height: 1.5; }
  .format-options { display: none !important; }
  .format-select { display: block !important; }
  .portrait { width: 100%; max-height: none; aspect-ratio: 4 / 5; }
  .portrait img { height: 100%; object-position: center 16%; }
  .contact-form { scroll-margin-top: 82px; }
  .floating-cta { right: 10px; bottom: max(4px, env(safe-area-inset-bottom)); left: 10px; text-align: center; opacity: 1; pointer-events: auto; }
  .floating-cta.is-in-footer {
    position: static;
    display: inline-flex;
    width: min(100%, 260px);
    margin-top: 4px;
    opacity: 1;
    pointer-events: auto;
  }
  .cookie-banner { grid-template-columns: 1fr; min-height: 116px; padding: 14px; text-align: center; }
  .cookie-actions .btn { width: auto; min-width: 142px; }
  main, section, .container, .site-footer { max-width: 100%; }
}

@media (max-width: 380px) {
  .one-line-heading { font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (hover: none) and (pointer: coarse) {
  .contact-form .format-options { display: none !important; }
  .contact-form .format-select { display: block !important; }
}
