@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Unbounded:wght@500;600;700&display=swap");

:root {
  --ink: #101820;
  --ink-soft: #1a2732;
  --paper: #f3f1ea;
  --paper-dark: #e7e3d8;
  --white: #ffffff;
  --muted: #667078;
  --line: rgba(16, 24, 32, 0.14);
  --accent: #ff5c35;
  --accent-dark: #d9421e;
  --lime: #c7f36b;
  --blue: #70b7ff;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img,
svg {
  display: block;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(243, 241, 234, 0.9);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.06);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 13px;
}

.brand-mark svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  margin-bottom: 5px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: -0.02em;
}

.brand small {
  color: var(--muted);
  max-width: 220px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.25;
  text-transform: uppercase;
}

.telegram-header {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding: 8px 14px 8px 9px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(112, 183, 255, 0.28), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(112, 183, 255, 0.4);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(112, 183, 255, 0.14);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.telegram-header::before {
  position: absolute;
  inset: -55% auto -55% -45%;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), transparent);
  content: "";
  transform: rotate(18deg);
  animation: sheen 4.4s ease-in-out infinite;
}

.telegram-header:hover {
  border-color: rgba(38, 165, 228, 0.75);
  box-shadow: 0 18px 42px rgba(38, 165, 228, 0.18);
  transform: translateY(-2px);
}

.telegram-header-icon {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #2ca5e0, #1688c5);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(38, 165, 228, 0.28);
}

.telegram-header-icon::after {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(38, 165, 228, 0.48);
  border-radius: 50%;
  content: "";
  animation: telegram-ping 1.9s ease-out infinite;
}

.telegram-header-icon svg,
.button-telegram-icon svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.telegram-header-copy {
  position: relative;
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.telegram-header-copy strong {
  font-size: 12px;
  font-weight: 900;
}

.telegram-header-copy small {
  color: #35728f;
  font-size: 10px;
  font-weight: 800;
}

@keyframes sheen {
  0%, 58% { transform: translateX(0) rotate(18deg); }
  100% { transform: translateX(360%) rotate(18deg); }
}

@keyframes telegram-ping {
  0% { opacity: 0.72; transform: scale(0.72); }
  100% { opacity: 0; transform: scale(1.34); }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav > a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.nav-bot-link {
  color: #1688c5;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding: 150px 0 86px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.28), transparent 34%),
    radial-gradient(circle at 76% 20%, rgba(112, 183, 255, 0.24), transparent 22%),
    radial-gradient(circle at 87% 52%, rgba(199, 243, 107, 0.21), transparent 26%),
    var(--paper);
}

.hero::before {
  position: absolute;
  top: -130px;
  right: -210px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(16, 24, 32, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(16, 24, 32, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 32, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, black, transparent 78%);
}

.hero-layout {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 60px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow-group {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow-secondary {
  border-color: rgba(112, 183, 255, 0.32);
  background: rgba(112, 183, 255, 0.12);
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  background: #38a85a;
  border-radius: 50%;
}

.status-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid #38a85a;
  border-radius: 50%;
  content: "";
  animation: pulse 1.7s ease-out infinite;
}

.status-dot-blue,
.status-dot-blue::after {
  background: #2ca5e0;
  border-color: #2ca5e0;
}

@keyframes pulse {
  0% { opacity: 0.8; transform: scale(0.65); }
  100% { opacity: 0; transform: scale(1.35); }
}

h1,
h2 {
  margin: 0;
  font-family: "Unbounded", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

h1 {
  max-width: min(930px, 100%);
  font-size: clamp(44px, 5vw, 74px);
}

.hero-title-line {
  display: block;
}

.hero-title-accent,
h2 span {
  color: var(--accent);
}

.hero-title-nowrap {
  white-space: nowrap;
  font-size: 0.78em;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 32px;
  color: #4c5860;
  font-size: 18px;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button svg,
.package-link svg,
.text-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover svg,
.package-link:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.button-primary {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 12px 30px rgba(255, 92, 53, 0.23);
}

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

.button-telegram {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #2ca5e0, #157fc0);
  box-shadow: 0 12px 30px rgba(38, 165, 228, 0.22);
}

.button-telegram::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 0%, rgba(255, 255, 255, 0.42), transparent 32%);
  content: "";
  opacity: 0.8;
}

.button-telegram > span,
.button-telegram > svg {
  position: relative;
}

.button-telegram:hover {
  background: linear-gradient(135deg, #168fd0, #0f70aa);
}

.button-telegram-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.button.is-sending:disabled {
  cursor: wait;
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.4);
}

.button-ghost:hover {
  border-color: var(--ink);
  background: var(--white);
}

.hero-bot-note {
  position: relative;
  display: flex;
  max-width: 560px;
  align-items: flex-start;
  gap: 11px;
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(38, 165, 228, 0.24);
  background: rgba(255, 255, 255, 0.52);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.05);
  backdrop-filter: blur(12px);
}

.hero-bot-note p {
  margin: 0;
  color: #4d5961;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.bot-live-dot {
  position: relative;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  background: #2ca5e0;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(44, 165, 224, 0.12);
}

.bot-live-dot::after {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(44, 165, 224, 0.45);
  border-radius: 50%;
  content: "";
  animation: telegram-ping 1.8s ease-out infinite;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #4d5961;
  font-size: 13px;
  font-weight: 700;
}

.hero-points svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 550px;
}

.visual-glow {
  position: absolute;
  top: 55px;
  right: 10px;
  width: 440px;
  height: 440px;
  background: linear-gradient(145deg, #b8e8fa, var(--lime));
  border-radius: 48% 52% 58% 42% / 41% 45% 55% 59%;
  filter: blur(1px);
  transform: rotate(-8deg);
}

.camera-scene {
  position: relative;
  width: 100%;
  height: 500px;
}

.camera-body {
  position: absolute;
  z-index: 3;
  top: 124px;
  left: 60px;
  width: 265px;
  transform: rotate(-7deg);
  filter: drop-shadow(0 28px 22px rgba(16, 24, 32, 0.2));
}

.camera-top {
  position: absolute;
  z-index: 2;
  top: -23px;
  left: 23px;
  width: 218px;
  height: 62px;
  background: linear-gradient(150deg, #ffffff, #cbd2d6);
  border-radius: 50% 50% 22px 22px;
}

.camera-face {
  position: relative;
  z-index: 3;
  width: 265px;
  height: 155px;
  overflow: hidden;
  background: linear-gradient(150deg, #fefefe, #c7ced1);
  border-radius: 48% 46% 35% 42% / 48% 48% 38% 40%;
}

.camera-face::before {
  position: absolute;
  top: 17px;
  right: 19px;
  bottom: 16px;
  left: 18px;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: inherit;
  content: "";
}

.camera-lens {
  position: absolute;
  top: 30px;
  left: 52px;
  display: grid;
  width: 98px;
  height: 98px;
  place-items: center;
  background: #111b24;
  border: 8px solid #9ba6ac;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 4px #2f3d48,
    0 9px 18px rgba(16, 24, 32, 0.3);
}

.lens-core {
  width: 51px;
  height: 51px;
  background:
    radial-gradient(circle at 63% 32%, #75c7e2 0 7%, transparent 8%),
    radial-gradient(circle at 42% 55%, #254c62, #070b10 67%);
  border: 4px solid #06090d;
  border-radius: 50%;
}

.lens-glint {
  position: absolute;
  top: 21px;
  left: 25px;
  width: 13px;
  height: 7px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transform: rotate(-30deg);
}

.camera-light {
  position: absolute;
  top: 64px;
  right: 48px;
  width: 9px;
  height: 9px;
  background: #61cf74;
  border-radius: 50%;
  box-shadow: 0 0 12px #61cf74;
}

.camera-neck {
  width: 57px;
  height: 100px;
  margin: -8px auto 0;
  background: linear-gradient(90deg, #9ca7ac, #f9faf9 48%, #a2adb2);
  border-radius: 10px 10px 18px 18px;
}

.camera-base {
  width: 154px;
  height: 35px;
  margin: -14px auto 0;
  background: linear-gradient(#f6f7f5, #9ca7ad);
  border-radius: 50%;
}

.phone {
  position: absolute;
  z-index: 5;
  right: 12px;
  bottom: 4px;
  width: 180px;
  height: 360px;
  padding: 9px;
  background: #121b23;
  border: 3px solid #40505b;
  border-radius: 35px;
  box-shadow: 0 32px 50px rgba(16, 24, 32, 0.3);
  transform: rotate(6deg);
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 13px;
  left: 50%;
  width: 58px;
  height: 17px;
  background: #121b23;
  border-radius: 0 0 11px 11px;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #dbe1dc;
  border-radius: 25px;
}

.phone-status {
  position: absolute;
  z-index: 2;
  top: 34px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 7px;
  color: var(--white);
  background: rgba(16, 24, 32, 0.7);
  border-radius: 5px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.phone-status i {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

.screen-room {
  position: relative;
  height: 275px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49%, rgba(16, 24, 32, 0.08) 50%, transparent 51%),
    linear-gradient(#b7c5c6 60%, #7a8b82 60%);
}

.screen-window {
  position: absolute;
  top: 65px;
  left: 26px;
  width: 75px;
  height: 90px;
  border: 7px solid #56666b;
  background:
    linear-gradient(90deg, transparent 47%, #56666b 48% 53%, transparent 54%),
    linear-gradient(transparent 47%, #56666b 48% 53%, transparent 54%),
    #a9dcf2;
}

.screen-table {
  position: absolute;
  right: 15px;
  bottom: 50px;
  width: 95px;
  height: 14px;
  background: #303e42;
  transform: perspective(40px) rotateX(8deg);
}

.screen-table::after,
.screen-table::before {
  position: absolute;
  top: 10px;
  width: 7px;
  height: 50px;
  background: #303e42;
  content: "";
}

.screen-table::before { left: 8px; }
.screen-table::after { right: 8px; }

.screen-chair {
  position: absolute;
  right: 45px;
  bottom: 15px;
  width: 42px;
  height: 50px;
  border: 6px solid #5e4a3d;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.phone-controls {
  display: flex;
  height: 65px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #f5f6f2;
}

.phone-controls span {
  width: 27px;
  height: 27px;
  border: 1px solid #b9c0bc;
  border-radius: 50%;
}

.phone-controls span:nth-child(2) {
  background: var(--accent);
  border-color: var(--accent);
}

.floating-card {
  position: absolute;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(16, 24, 32, 0.13);
  backdrop-filter: blur(10px);
}

.floating-card small,
.floating-card strong {
  display: block;
  line-height: 1.25;
}

.floating-card small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 9px;
}

.floating-card strong {
  font-size: 11px;
}

.card-online {
  top: 82px;
  right: 4px;
  animation: float 4.3s ease-in-out infinite;
}

.card-record {
  z-index: 8;
  right: 104px;
  bottom: 34px;
  animation: float 4.8s 0.7s ease-in-out infinite;
}

.card-bot {
  top: 246px;
  right: 8px;
  color: var(--ink);
  animation: float 4.5s 1.1s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.mini-icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 9px;
}

.mini-icon svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.mini-icon-telegram {
  color: var(--white);
  background: linear-gradient(135deg, #2ca5e0, #1688c5);
}

.record-dot {
  width: 11px;
  height: 11px;
  background: var(--accent);
  border: 3px solid #ffd5cb;
  border-radius: 50%;
  box-sizing: content-box;
}

.signal {
  position: absolute;
  z-index: 2;
  top: 60px;
  left: 5px;
  width: 370px;
  height: 370px;
  border: 2px solid rgba(16, 24, 32, 0.2);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-34deg);
}

.signal-two {
  top: 104px;
  left: 48px;
  width: 285px;
  height: 285px;
}

.hero-note {
  position: absolute;
  right: 12px;
  bottom: -38px;
  display: flex;
  width: 390px;
  align-items: flex-start;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 24, 32, 0.26);
}

.hero-note span {
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.hero-note p {
  margin: 0;
  color: #59646b;
  font-size: 13px;
  line-height: 1.55;
}

.trust-strip {
  color: var(--white);
  background: var(--ink);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.trust-grid > div {
  padding: 29px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 4px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 13px;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.section {
  padding: 115px 0;
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 56px;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
}

.section-number {
  display: block;
  margin-bottom: 19px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2,
.why-copy h2,
.faq-intro h2,
.request-copy h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.section-heading > p,
.why-copy > p,
.faq-intro > p,
.request-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.service-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.47);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  background: var(--white);
  box-shadow: 0 18px 45px rgba(16, 24, 32, 0.08);
  transform: translateY(-5px);
}

.service-card-featured {
  min-height: 250px;
  flex-direction: row;
  align-items: center;
  grid-column: span 2;
  gap: 24px;
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.service-card-featured:hover {
  background: var(--ink-soft);
}

.service-card-featured > div:nth-child(2) {
  flex: 1;
}

.service-card-featured .service-icon {
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--lime);
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.6);
}

.service-card-featured .service-price {
  align-self: flex-end;
  color: var(--white);
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 37px;
  place-items: center;
  color: var(--ink);
  background: var(--paper-dark);
  border-radius: 17px;
}

.service-icon svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.service-label,
.table-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0 0 11px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.35;
}

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

.service-price {
  margin-top: auto;
  padding-top: 20px;
  color: var(--ink);
}

.service-price span {
  margin-right: 5px;
  color: var(--muted);
  font-size: 11px;
}

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

.price-table-wrap {
  margin-top: 14px;
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-md);
}

.price-table-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 28px;
}

.table-kicker {
  color: var(--accent);
}

.price-table-head h3 {
  margin: 0;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 25px;
}

.price-table-head p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.price-list {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.price-row:nth-child(odd) {
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.price-row:nth-child(even) {
  padding-left: 28px;
}

.price-row span {
  color: #4e5961;
  font-size: 14px;
}

.price-row strong {
  white-space: nowrap;
  font-size: 14px;
}

.use-cases {
  background: var(--paper-dark);
}

.case-tabs {
  display: grid;
  grid-template-columns: 260px 1fr;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.tab-list {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: var(--ink);
}

.tab-button {
  position: relative;
  padding: 24px 19px;
  border: 0;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  cursor: pointer;
  text-align: left;
  font-weight: 800;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.tab-button::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
}

.tab-button:hover,
.tab-button.active {
  padding-left: 31px;
  color: var(--white);
}

.tab-button.active::before {
  opacity: 1;
}

.tab-panel {
  display: grid;
  min-height: 465px;
  align-items: center;
  padding: 65px;
  grid-template-columns: 1fr 250px;
  gap: 70px;
  animation: panel-in 0.3s ease;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-panel[hidden] {
  display: none;
}

.case-tag {
  display: inline-flex;
  margin-bottom: 17px;
  padding: 7px 11px;
  color: var(--accent-dark);
  background: #ffebe5;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-copy h3 {
  max-width: 560px;
  margin: 0 0 18px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(26px, 3vw, 39px);
  line-height: 1.2;
}

.case-copy > p {
  max-width: 610px;
  margin: 0 0 27px;
  color: var(--muted);
}

.check-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: 1fr 1fr;
  gap: 11px 22px;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  font-size: 13px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  content: "✓";
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}

.case-metric {
  display: flex;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.8), transparent 35%),
    var(--lime);
  border-radius: 50%;
  text-align: center;
}

.case-metric span,
.case-metric small {
  font-size: 11px;
  font-weight: 700;
}

.case-metric strong {
  margin: 6px 0 2px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 25px;
  line-height: 1.2;
}

.packages {
  color: var(--white);
  background:
    radial-gradient(circle at 8% 20%, rgba(112, 183, 255, 0.1), transparent 24%),
    radial-gradient(circle at 90% 80%, rgba(199, 243, 107, 0.08), transparent 25%),
    var(--ink);
}

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.55);
}

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

.package-card {
  position: relative;
  display: flex;
  min-height: 600px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, background 0.25s ease;
}

.package-card:hover {
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-6px);
}

.package-card-accent {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.package-card-accent:hover {
  background: #d2fa7f;
}

.popular-label {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 7px 15px;
  color: var(--white);
  background: var(--accent);
  border-radius: 0 0 10px 10px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.package-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 65px;
}

.package-index {
  color: rgba(255, 255, 255, 0.34);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 12px;
}

.package-card-accent .package-index {
  color: rgba(16, 24, 32, 0.4);
}

.package-badge {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-card-accent .package-badge {
  border-color: rgba(16, 24, 32, 0.18);
}

.package-card h3 {
  margin: 0 0 16px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 26px;
}

.package-price {
  margin: 0 0 2px;
  font-size: 25px;
  font-weight: 800;
}

.package-price span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 600;
}

.package-card-accent .package-price span {
  color: rgba(16, 24, 32, 0.52);
}

.package-note {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.package-card-accent .package-note {
  color: rgba(16, 24, 32, 0.55);
}

.package-card ul {
  display: grid;
  margin: 0 0 35px;
  padding: 25px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
  gap: 13px;
}

.package-card-accent ul {
  border-color: rgba(16, 24, 32, 0.13);
}

.package-card li {
  position: relative;
  padding-left: 25px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.package-card-accent li {
  color: rgba(16, 24, 32, 0.72);
}

.package-card li::before {
  position: absolute;
  top: 7px;
  left: 2px;
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  content: "";
}

.package-card-accent li::before {
  background: var(--ink);
}

.package-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.package-card-accent .package-link {
  border-color: rgba(16, 24, 32, 0.14);
}

.package-disclaimer {
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  text-align: center;
}

.process-list {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.process-list::before {
  position: absolute;
  top: 77px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-item {
  position: relative;
  z-index: 1;
  padding: 22px 12px;
}

.process-number {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 10px;
}

.process-icon {
  display: grid;
  width: 73px;
  height: 73px;
  margin-bottom: 27px;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.07);
}

.process-icon svg {
  width: 29px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.process-item h3 {
  min-height: 48px;
  margin: 0 0 10px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

.process-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.why-us {
  padding-top: 0;
}

.why-grid {
  display: grid;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  grid-template-columns: 0.9fr 1.1fr;
}

.why-copy {
  padding: 75px 65px;
  background:
    radial-gradient(circle at 5% 100%, rgba(112, 183, 255, 0.23), transparent 40%);
}

.why-copy > p {
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.58);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 35px;
  color: var(--lime);
  font-weight: 800;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.benefit-card {
  min-height: 260px;
  padding: 39px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.benefit-card strong {
  color: var(--lime);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 10px;
}

.benefit-card h3 {
  margin: 60px 0 12px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 17px;
}

.benefit-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.faq {
  background: var(--paper-dark);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-intro > p {
  margin-top: 23px;
}

.faq-list {
  border-top: 1px solid rgba(16, 24, 32, 0.25);
}

.faq-list details {
  border-bottom: 1px solid rgba(16, 24, 32, 0.25);
}

.faq-list summary {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 680px;
  margin: -3px 55px 25px 0;
  color: var(--muted);
  font-size: 14px;
}

.request {
  background: var(--paper);
}

.request-shell {
  display: grid;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  grid-template-columns: 0.85fr 1.15fr;
}

.request-copy {
  padding: 70px 60px;
  background:
    radial-gradient(circle at 15% 95%, rgba(199, 243, 107, 0.16), transparent 37%),
    radial-gradient(circle at 90% 5%, rgba(112, 183, 255, 0.13), transparent 30%);
}

.request-copy > p {
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.55);
}

.request-contact-list {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}

.request-contact {
  display: flex;
  align-items: center;
  gap: 13px;
  transition: transform 0.2s ease;
}

.request-contact:hover {
  transform: translateX(4px);
}

.contact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 15px;
}

.contact-icon-telegram {
  position: relative;
  background: var(--blue);
}

.contact-icon-telegram::after {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(112, 183, 255, 0.45);
  border-radius: 18px;
  content: "";
  animation: telegram-ping 2s ease-out infinite;
}

.contact-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.request-contact small,
.request-contact a {
  display: block;
}

.request-contact small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.request-contact a {
  font-size: 14px;
  font-weight: 800;
}

.request-form,
.request-result {
  padding: 70px 60px;
  background: var(--white);
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.request-form label > span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
}

.request-form label:not(.consent) {
  display: block;
  margin-bottom: 18px;
}

.request-form input,
.request-form textarea,
.request-form select {
  width: 100%;
  border: 1px solid var(--line);
  outline: none;
  color: var(--ink);
  background: #f8f7f3;
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.request-form input,
.request-form select {
  height: 52px;
  padding: 0 15px;
}

.request-form textarea {
  min-height: 116px;
  padding: 14px 15px;
  resize: vertical;
}

.request-form input:focus,
.request-form textarea:focus,
.request-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 92, 53, 0.1);
}

.file-upload {
  position: relative;
  padding: 18px;
  border: 1px dashed rgba(38, 165, 228, 0.42);
  background:
    radial-gradient(circle at 10% 0%, rgba(112, 183, 255, 0.18), transparent 38%),
    #f8f7f3;
  border-radius: 16px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.file-upload:hover {
  border-color: #2ca5e0;
  background:
    radial-gradient(circle at 10% 0%, rgba(112, 183, 255, 0.26), transparent 38%),
    #ffffff;
  transform: translateY(-1px);
}

.file-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-upload > strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  color: #1688c5;
  font-size: 14px;
}

.file-upload > strong::before {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #2ca5e0, #1688c5);
  border-radius: 50%;
  content: "+";
  font-size: 19px;
  line-height: 1;
}

.file-upload small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 10px;
}

.consent input {
  width: 15px;
  height: 15px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.consent span {
  margin: 0 !important;
  font-weight: 500 !important;
}

.form-submit {
  width: 100%;
}

.form-hint {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.request-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.request-result[hidden] {
  display: none;
}

.result-check {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--white);
  background: #38a85a;
  border-radius: 50%;
}

.result-check svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.request-result h3 {
  margin: 0 0 8px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 25px;
}

.request-result p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
}

.request-result textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 15px;
  border: 1px solid var(--line);
  background: #f8f7f3;
  border-radius: 12px;
  resize: none;
}

.result-actions {
  display: flex;
  gap: 10px;
}

.site-footer {
  padding: 75px 0 25px;
  color: var(--white);
  background: #0a1016;
}

.footer-top {
  display: grid;
  padding-bottom: 65px;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 60px;
}

.brand-light .brand-mark {
  color: var(--ink);
  background: var(--lime);
}

.brand-light small {
  color: rgba(255, 255, 255, 0.45);
}

.footer-brand p {
  max-width: 280px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 12px;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-column strong {
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.footer-column a:hover {
  color: var(--lime);
}

.footer-cta {
  margin-top: 10px;
  color: var(--lime) !important;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
}

.back-to-top {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 0;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(16, 24, 32, 0.2);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
}

.back-to-top svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.toast {
  position: fixed;
  z-index: 200;
  bottom: 25px;
  left: 50%;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 17px;
  }

  .telegram-header {
    padding-right: 11px;
  }

  .telegram-header-copy small {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .hero-copy {
    max-width: 900px;
  }

  .hero-visual {
    position: absolute;
    z-index: 1;
    top: 95px;
    right: -245px;
    width: 560px;
    min-height: 430px;
    opacity: 0.38;
    pointer-events: none;
    transform: scale(0.78);
    transform-origin: top right;
  }

  .hero-title-nowrap {
    font-size: 0.72em;
  }

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

  .service-card-featured {
    grid-column: span 2;
  }

  .tab-panel {
    padding: 50px 40px;
    gap: 35px;
  }

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

  .process-list::before {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
  }

  .footer-contacts {
    grid-column: 2 / -1;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .telegram-header {
    margin-left: auto;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    padding: 100px 32px 40px;
    color: var(--white);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .main-nav > a {
    font-family: "Unbounded", Arial, sans-serif;
    font-size: 25px;
  }

  .nav-cta {
    margin-top: 15px;
    color: var(--ink);
    background: var(--lime);
    font-family: "Manrope", Arial, sans-serif !important;
    font-size: 14px !important;
  }

  .nav-bot-link {
    color: var(--blue);
  }

  .menu-open .menu-toggle {
    color: var(--white);
  }

  .hero {
    padding-top: 130px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    position: relative;
    z-index: 5;
    max-width: none;
  }

  .hero-lead {
    max-width: 580px;
  }

  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    z-index: 1;
    width: min(570px, 100%);
    min-height: 550px;
    margin: -25px auto 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid > div:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .price-list {
    grid-template-columns: 1fr;
  }

  .price-row:nth-child(odd),
  .price-row:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .case-tabs {
    grid-template-columns: 1fr;
  }

  .tab-list {
    flex-direction: row;
    overflow-x: auto;
    padding: 12px;
  }

  .tab-button {
    flex: 1 0 auto;
    padding: 15px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.11);
    border-bottom: 0;
    text-align: center;
  }

  .tab-button::before {
    display: none;
  }

  .tab-button:hover,
  .tab-button.active {
    padding-left: 20px;
    color: var(--lime);
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

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

  .package-top {
    margin-bottom: 45px;
  }

  .why-grid,
  .request-shell {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .faq-intro {
    position: static;
  }

  .footer-top {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .footer-contacts {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 11px;
  }

  .brand small {
    font-size: 9px;
  }

  .telegram-header {
    padding: 6px;
  }

  .telegram-header-copy {
    display: none;
  }

  .telegram-header-icon {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 66px;
  }

  h1 {
    font-size: clamp(32px, 8.2vw, 43px);
  }

  .hero-lead {
    margin: 22px 0 27px;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 10px;
  }

  .hero-visual {
    min-height: 390px;
    margin-top: 10px;
  }

  .camera-scene {
    height: 390px;
    transform: scale(0.72);
    transform-origin: top center;
  }

  .visual-glow {
    top: 42px;
    left: 50%;
    width: 340px;
    height: 340px;
    transform: translateX(-50%) rotate(-8deg);
  }

  .camera-body {
    left: 12px;
  }

  .phone {
    right: -20px;
  }

  .card-online {
    right: -18px;
  }

  .card-record {
    right: 60px;
  }

  .card-bot {
    top: 218px;
    right: -16px;
  }

  .hero-note {
    right: 0;
    bottom: -3px;
    width: 100%;
  }

  .trust-grid > div {
    padding: 22px 17px;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .why-copy h2,
  .faq-intro h2,
  .request-copy h2 {
    font-size: 34px;
  }

  .section-heading > p,
  .why-copy > p,
  .faq-intro > p,
  .request-copy > p {
    font-size: 15px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-featured {
    min-height: auto;
    grid-column: auto;
  }

  .service-card-featured {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-card-featured .service-price {
    align-self: auto;
  }

  .service-icon {
    margin-bottom: 25px;
  }

  .price-table-wrap {
    padding: 26px 20px;
  }

  .price-table-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .tab-panel {
    min-height: 0;
    padding: 35px 23px;
    grid-template-columns: 1fr;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .case-metric {
    width: 210px;
    justify-self: center;
  }

  .package-card {
    padding: 28px 24px;
  }

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

  .process-item {
    display: grid;
    padding: 15px 5px;
    grid-template-columns: 64px 1fr;
    gap: 0 18px;
  }

  .process-number {
    display: none;
  }

  .process-icon {
    width: 62px;
    height: 62px;
    margin: 0;
    grid-row: span 2;
  }

  .process-item h3 {
    min-height: auto;
  }

  .why-copy,
  .request-copy,
  .request-form,
  .request-result {
    padding: 48px 24px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 220px;
    padding: 30px 24px;
  }

  .benefit-card h3 {
    margin-top: 45px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .result-actions {
    flex-direction: column;
  }

  .footer-top {
    padding-bottom: 45px;
    grid-template-columns: 1fr 1fr;
    gap: 38px 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contacts {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: clamp(30px, 8.2vw, 34px);
    letter-spacing: -0.055em;
  }

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

  .button {
    padding-inline: 18px;
  }

  .trust-grid strong {
    font-size: 11px;
  }

  .trust-grid span {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
