:root {
  --bg: #f5f8fb;
  --surface: #ffffff;
  --surface-muted: #eaf2f4;
  --text: #102027;
  --muted: #5a6a70;
  --line: #d9e5e8;
  --accent: #19bf8f;
  --accent-strong: #08785d;
  --dark: #071114;
  --dark-soft: #0d1b20;
  --hero-text: #f8fffd;
  --hero-muted: #bdd2d3;
  --shadow: 0 18px 50px rgba(16, 32, 39, 0.10);
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 32px, var(--container));
  margin: 18px auto 0;
  padding: 12px 14px;
  color: var(--hero-text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(7, 17, 20, 0.66);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.20);
}

.site-header.is-scrolled {
  color: var(--text);
  border-color: rgba(16, 32, 39, 0.10);
  background: rgba(255, 255, 255, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #03100c;
  background: var(--accent);
  border-radius: 8px;
}

.brand-mark svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.2;
}

.brand-text {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 9px 11px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 750;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  outline: none;
  background: rgba(25, 191, 143, 0.16);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--hero-text);
  background:
    linear-gradient(115deg, rgba(7, 17, 20, 0.98), rgba(10, 38, 48, 0.90)),
    var(--dark);
}

.hero-canvas,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-canvas {
  width: 100%;
  height: 100%;
  opacity: 0.92;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 17, 20, 0.90), rgba(7, 17, 20, 0.58) 58%, rgba(7, 17, 20, 0.24)),
    linear-gradient(180deg, transparent 65%, rgba(7, 17, 20, 0.38));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 138px 0 76px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: 72px;
  line-height: 1.02;
}

.hero-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--hero-muted);
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.button-primary {
  color: #03100c;
  background: var(--accent);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #2bd99f;
}

.button-secondary {
  color: var(--hero-text);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.14);
}

.button-outline {
  color: var(--text);
  border-color: var(--line);
  background: var(--surface);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--accent);
  background: #f0fff9;
}

.button-outline.light {
  color: var(--hero-text);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.button-outline.light:hover,
.button-outline.light:focus-visible {
  border-color: rgba(25, 191, 143, 0.72);
  background: rgba(25, 191, 143, 0.14);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 940px;
  margin: 54px 0 0;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.hero-stats dt {
  font-size: 30px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--hero-muted);
  font-size: 14px;
}

.trust-strip {
  color: var(--hero-text);
  background: var(--dark-soft);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 18px 0;
}

.trust-inner span {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--hero-muted);
  font-size: 14px;
  font-weight: 760;
  text-align: center;
}

.section {
  padding: 92px 0;
}

.section-muted {
  background: var(--surface-muted);
}

.section-inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.section h2,
.contact-section h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

.intro-copy p {
  margin: 0 0 18px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.section-heading h2 {
  max-width: 800px;
}

.section-heading.compact {
  display: block;
  max-width: 820px;
}

.section-note {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.private-section {
  position: relative;
  overflow: hidden;
  color: var(--hero-text);
  background:
    radial-gradient(circle at 18% 16%, rgba(25, 191, 143, 0.24), transparent 34%),
    radial-gradient(circle at 86% 30%, rgba(80, 154, 255, 0.20), transparent 30%),
    linear-gradient(135deg, #071114, #102d33 58%, #071114);
}

.private-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 88%);
  pointer-events: none;
}

.private-hero,
.private-grid {
  position: relative;
  z-index: 1;
}

.private-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: center;
}

.private-copy h2 {
  max-width: 860px;
  color: var(--hero-text);
  font-size: 54px;
}

.private-copy p:not(.section-kicker) {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--hero-muted);
  font-size: 20px;
}

.private-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.telegram-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.telegram-qr-frame {
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 8px;
  background: #ffffff;
}

.telegram-qr {
  display: block;
  width: 220px;
  height: 220px;
}

.telegram-card p {
  margin: 14px 0 6px;
  color: var(--hero-muted);
  font-size: 14px;
}

.telegram-card a {
  color: var(--accent);
  font-size: 20px;
  font-weight: 900;
}

.private-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.private-card {
  min-height: 410px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.18);
}

.private-card.featured {
  background:
    linear-gradient(180deg, rgba(25, 191, 143, 0.18), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
}

.private-visual {
  display: grid;
  place-items: center;
  min-height: 180px;
  margin-bottom: 18px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
}

.private-visual svg {
  width: 100%;
  max-width: 260px;
  height: auto;
  fill: none;
  stroke: #c8fff0;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8;
}

.private-card h3 {
  margin: 0 0 10px;
  color: var(--hero-text);
  font-size: 21px;
  line-height: 1.22;
}

.private-card p {
  margin: 0;
  color: var(--hero-muted);
}

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

.service-card,
.why-grid article,
.case-card {
  min-height: 236px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(16, 32, 39, 0.06);
}

.service-number,
.case-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 32px;
  margin-bottom: 34px;
  border-radius: 8px;
  color: #03100c;
  background: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3,
.why-grid h3,
.case-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.22;
}

.service-card p,
.why-grid p,
.case-card p {
  margin: 0;
  color: var(--muted);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.split-panel-main p:not(.section-kicker) {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 10px;
}

.check-list div {
  position: relative;
  padding: 16px 18px 16px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-weight: 750;
  box-shadow: 0 10px 26px rgba(16, 32, 39, 0.06);
}

.check-list div::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--accent-strong);
  border-bottom: 3px solid var(--accent-strong);
  transform: rotate(-45deg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(16, 32, 39, 0.08);
}

.pricing-card.featured {
  border-color: rgba(25, 191, 143, 0.72);
  background:
    linear-gradient(180deg, rgba(25, 191, 143, 0.10), rgba(255, 255, 255, 0) 38%),
    var(--surface);
  transform: translateY(-10px);
}

.pricing-label {
  margin: 0 0 10px;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 850;
}

.pricing-card h3 {
  margin: 0;
  font-size: 30px;
}

.pricing-price {
  margin: 24px 0 0;
  font-size: 38px;
  font-weight: 900;
}

.pricing-period {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 28px;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.pricing-card .button {
  margin-top: auto;
}

.one-time-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--dark-soft);
  color: var(--hero-text);
}

.one-time-box h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.one-time-box p {
  max-width: 780px;
  margin: 0;
  color: var(--hero-muted);
}

.one-time-box strong {
  white-space: nowrap;
  color: var(--accent);
  font-size: 28px;
}

.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: flex;
  gap: 16px;
  min-height: 208px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(16, 32, 39, 0.06);
}

.process-list span {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--surface);
  background: var(--text);
  font-weight: 900;
}

.process-list h3 {
  margin: 4px 0 8px;
  font-size: 20px;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.vendor-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.vendor-strip span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-weight: 800;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(16, 32, 39, 0.06);
}

.faq-list summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 850;
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.contact-section {
  padding: 92px 0;
  color: var(--hero-text);
  background: var(--dark);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 54px;
  align-items: center;
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.contact-inner p:not(.section-kicker) {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--hero-muted);
  font-size: 18px;
}

.contact-panel {
  display: grid;
  gap: 10px;
}

.contact-panel a {
  display: block;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--hero-text);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 850;
}

.contact-panel a:hover,
.contact-panel a:focus-visible {
  outline: none;
  border-color: rgba(25, 191, 143, 0.72);
  background: rgba(25, 191, 143, 0.12);
}

.offer-modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.offer-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.offer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 9, 11, 0.70);
  backdrop-filter: blur(12px);
}

.offer-dialog {
  position: relative;
  width: min(100%, 620px);
  max-height: calc(100svh - 36px);
  padding: 34px;
  overflow-y: auto;
  overflow-x: hidden;
  color: var(--hero-text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background:
    radial-gradient(circle at 14% 8%, rgba(25, 191, 143, 0.35), transparent 34%),
    radial-gradient(circle at 92% 16%, rgba(92, 151, 255, 0.30), transparent 32%),
    linear-gradient(135deg, #071114, #102d33 62%, #071114);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  transform: translateY(12px) scale(0.98);
  transition: transform 220ms ease;
}

.offer-modal.is-open .offer-dialog {
  transform: translateY(0) scale(1);
}

.offer-dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.offer-dialog > * {
  position: relative;
  z-index: 1;
}

.offer-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--hero-text);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.offer-close span {
  display: block;
  width: 22px;
  height: 2.5px;
  margin: -1px auto 0;
  background: currentColor;
}

.offer-close span:first-child {
  transform: rotate(45deg);
}

.offer-close span:last-child {
  transform: rotate(-45deg);
}

.offer-close:hover,
.offer-close:focus-visible {
  outline: none;
  border-color: rgba(25, 191, 143, 0.72);
  background: rgba(25, 191, 143, 0.14);
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: #03100c;
  background: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-dialog h2 {
  max-width: 520px;
  margin: 18px 0 0;
  font-size: 42px;
  line-height: 1.06;
}

.offer-dialog p {
  margin: 18px 0 0;
  color: var(--hero-muted);
  font-size: 18px;
}

.offer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.offer-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--hero-text);
  font-size: 14px;
  font-weight: 850;
}

.offer-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  padding-left: 24px;
  color: var(--hero-muted);
}

.offer-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(25, 191, 143, 0.75);
}

.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.offer-note {
  font-size: 13px !important;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 24px 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 850;
}

@media (max-width: 1040px) {
  .hero h1 {
    font-size: 58px;
  }

  .service-grid,
  .why-grid,
  .private-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .private-copy h2 {
    font-size: 44px;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 12px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(16, 32, 39, 0.10);
    border-radius: 8px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(7, 17, 20, 0.88), rgba(7, 17, 20, 0.70));
  }

  .hero-content {
    padding-top: 128px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 19px;
  }

  .hero-stats,
  .trust-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .private-hero,
  .split-panel,
  .pricing-grid,
  .case-grid,
  .faq-layout,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .two-column,
  .private-hero,
  .split-panel,
  .contact-inner,
  .faq-layout {
    gap: 28px;
  }

  .section-heading {
    display: block;
  }

  .section h2,
  .contact-section h2 {
    font-size: 38px;
  }

  .private-copy h2 {
    font-size: 38px;
  }

  .telegram-card {
    max-width: 360px;
  }

  .contact-inner {
    align-items: start;
  }
}

@media (max-width: 620px) {
  .brand-text {
    display: none;
  }

  .hero-content,
  .section-inner,
  .contact-inner,
  .site-footer,
  .trust-inner {
    width: min(100% - 24px, var(--container));
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-lead,
  .intro-copy,
  .private-copy p:not(.section-kicker),
  .split-panel-main p:not(.section-kicker),
  .contact-inner p:not(.section-kicker) {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-stats,
  .trust-inner,
  .service-grid,
  .why-grid,
  .private-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 8px;
  }

  .section,
  .contact-section {
    padding: 68px 0;
  }

  .section h2,
  .contact-section h2 {
    font-size: 32px;
  }

  .private-copy h2 {
    font-size: 32px;
  }

  .service-card,
  .why-grid article,
  .private-card,
  .case-card,
  .pricing-card,
  .process-list li {
    padding: 20px;
  }

  .private-card {
    min-height: auto;
  }

  .private-actions {
    display: grid;
  }

  .telegram-card,
  .telegram-qr {
    max-width: 100%;
  }

  .one-time-box {
    display: block;
    padding: 22px;
  }

  .one-time-box strong {
    display: block;
    margin-top: 14px;
  }

  .offer-dialog {
    width: 100%;
    max-height: calc(100svh - 16px);
    padding: 24px 18px 18px;
    border-radius: 10px 10px 0 0;
  }

  .offer-modal {
    place-items: end center;
    padding: 8px;
  }

  .offer-close {
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
  }

  .offer-dialog h2 {
    padding-right: 48px;
    font-size: 29px;
  }

  .offer-dialog p {
    font-size: 16px;
  }

  .offer-tags {
    gap: 6px;
  }

  .offer-tags span {
    padding: 7px 9px;
    font-size: 13px;
  }

  .offer-actions {
    display: grid;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
