:root {
  --color-bg: #f7fafc;
  --color-surface: #ffffff;
  --color-surface-soft: #edf6fc;
  --color-navy: #071a2d;
  --color-navy-secondary: #0b233a;
  --color-text: #102033;
  --color-muted: #536779;
  --color-primary: #087bff;
  --color-primary-hover: #0065d9;
  --color-teal: #13b8a6;
  --color-cyan: #2bbfef;
  --color-border: #d7e4ed;
  --color-success: #18a76f;
  --color-warning: #f59e0b;
  --color-error: #dc4c4c;
  --font-body: "Segoe UI", "Noto Sans", Arial, sans-serif;
  --font-display: "Segoe UI", "Noto Sans", Arial, sans-serif;
  --shadow-sm: 0 12px 34px rgba(7, 26, 45, 0.07);
  --shadow-md: 0 24px 64px rgba(7, 26, 45, 0.11);
  --ink: var(--color-navy);
  --ink-soft: var(--color-navy-secondary);
  --paper: var(--color-bg);
  --paper-dark: var(--color-surface-soft);
  --white: var(--color-surface);
  --muted: var(--color-muted);
  --line: var(--color-border);
  --accent: var(--color-primary);
  --accent-dark: var(--color-primary-hover);
  --lime: var(--color-teal);
  --blue: var(--color-cyan);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow: var(--shadow-md);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  isolation: isolate;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.anchor-target {
  display: block;
  scroll-margin-top: 96px;
}

.site-ambient {
  position: fixed;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  contain: strict;
}

.site-ambient::before,
.site-ambient::after {
  position: absolute;
  content: "";
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 22%, transparent 40%, transparent 60%, #000 78%, #000 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 22%, transparent 40%, transparent 60%, #000 78%, #000 100%);
}

.site-ambient::before {
  inset: -18%;
  opacity: .74;
  background:
    radial-gradient(circle at 8% 18%, rgba(95, 152, 184, .24), transparent 23%),
    radial-gradient(circle at 92% 30%, rgba(101, 205, 187, .2), transparent 24%),
    radial-gradient(circle at 4% 78%, rgba(8, 127, 149, .12), transparent 21%),
    radial-gradient(circle at 96% 86%, rgba(95, 152, 184, .17), transparent 25%);
  animation: site-ambient-drift 24s ease-in-out infinite alternate;
  will-change: transform;
}

.site-ambient::after {
  inset: -80px;
  opacity: .34;
  background-image:
    linear-gradient(rgba(16, 24, 32, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 32, .07) 1px, transparent 1px);
  background-position: 0 0;
  background-size: 68px 68px;
  animation: site-ambient-grid 32s linear infinite;
  will-change: background-position;
}

.site-ambient-wave {
  position: absolute;
  top: -24vh;
  width: 42vw;
  height: 148vh;
  opacity: .42;
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      ellipse at center,
      transparent 0 62px,
      rgba(22, 136, 197, .16) 64px 65px,
      transparent 67px 108px,
      rgba(8, 127, 149, .08) 110px 111px,
      transparent 113px 154px
    );
  filter: saturate(.9);
  will-change: transform;
}

.site-ambient-wave-left {
  left: -21vw;
  animation: site-ambient-wave-left 19s ease-in-out infinite alternate;
}

.site-ambient-wave-right {
  right: -21vw;
  animation: site-ambient-wave-right 23s ease-in-out infinite alternate;
}

.site-ambient-cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 460px;
  height: 460px;
  opacity: 0;
  background: radial-gradient(circle, rgba(95, 152, 184, .18) 0, rgba(101, 205, 187, .1) 28%, transparent 68%);
  border-radius: 50%;
  filter: blur(3px);
  transition: opacity .35s ease;
  will-change: transform;
}

.site-ambient-cursor.is-active {
  opacity: 1;
}

main .container {
  position: relative;
  z-index: 2;
}

.site-footer {
  position: relative;
  z-index: 2;
}

@keyframes site-ambient-drift {
  0% { transform: translate3d(-1.5%, -2%, 0) scale(1); }
  50% { transform: translate3d(1.5%, 1%, 0) scale(1.04); }
  100% { transform: translate3d(-.5%, 2.5%, 0) scale(1.02); }
}

@keyframes site-ambient-grid {
  to { background-position: 136px 68px; }
}

@keyframes site-ambient-wave-left {
  0% { transform: translate3d(-2%, -2%, 0) rotate(-5deg) scale(.98); }
  100% { transform: translate3d(5%, 4%, 0) rotate(4deg) scale(1.06); }
}

@keyframes site-ambient-wave-right {
  0% { transform: translate3d(2%, 3%, 0) rotate(5deg) scale(1.04); }
  100% { transform: translate3d(-5%, -3%, 0) rotate(-4deg) scale(.97); }
}

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;
}

.header-phone {
  display: grid;
  gap: 2px;
  margin-left: auto;
  padding: 8px 14px;
  border-left: 1px solid var(--line);
  color: var(--ink);
  line-height: 1.1;
}

.header-phone span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.header-phone strong {
  font-size: 13px;
  white-space: nowrap;
}

.brand strong {
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.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;
  min-width: 158px;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  margin-left: 0;
  padding: 8px 14px 8px 9px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(95, 152, 184, 0.24), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(95, 152, 184, 0.4);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(95, 152, 184, 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;
  min-width: 0;
  gap: 2px;
  line-height: 1.05;
}

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

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

@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;
  white-space: nowrap;
}

.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(95, 152, 184, 0.22), transparent 22%),
    radial-gradient(circle at 87% 52%, rgba(101, 205, 187, 0.18), 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(95, 152, 184, 0.32);
  background: rgba(95, 152, 184, 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: var(--font-display);
  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(8, 127, 149, 0.2);
}

.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: var(--font-display);
  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: var(--font-display);
  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: var(--font-display);
  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;
}

.service-detail {
  display: inline-flex;
  margin-top: 14px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.service-detail:hover {
  color: var(--accent);
}

.service-card-featured {
  position: relative;
  padding-bottom: 58px;
}

.service-card-featured .service-detail {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: var(--lime);
}

.case-metric a {
  margin-top: 16px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.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: var(--font-display);
  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: var(--font-display);
  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: var(--font-display);
  font-size: 25px;
  line-height: 1.2;
}

.calculators {
  background: linear-gradient(180deg, rgba(214,238,240,.45), transparent 80%);
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 20px;
  align-items: start;
}

.calculator-form,
.calculator-result,
.archive-calculator {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: 0 18px 55px rgba(16,32,44,.06);
}

.calculator-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.calculator-title, .calculator-result-head { grid-column: 1 / -1; display: grid; gap: 5px; margin-bottom: 4px; }
.calculator-title span, .calculator-result-head span, .archive-copy > span, .archive-result > span { color: var(--accent); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.calculator-title strong, .calculator-result-head strong { font-size: 22px; }
.calculator-form label, .archive-calculator label { display: grid; gap: 7px; }
.calculator-form label > span, .archive-calculator label > span { color: #60707a; font-size: 10px; font-weight: 850; text-transform: uppercase; }
.calculator-form input:not([type="checkbox"]), .calculator-form select, .archive-calculator input, .archive-calculator select { width: 100%; min-height: 48px; padding: 0 12px; border: 1px solid #d6dddd; border-radius: 11px; background: #f8faf9; font: inherit; color: var(--ink); }
.calculator-form input[type="range"] { padding: 0; }
.range-field { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; }
.range-field output { min-width: 52px; font-size: 12px; font-weight: 850; }
.calculator-check { display: flex !important; align-items: center; gap: 9px !important; }
.calculator-form > button, .archive-calculator button, .estimate-card button, .archive-result button { min-height: 48px; padding: 0 16px; border: 0; border-radius: 12px; background: var(--accent); color: white; font: inherit; font-size: 12px; font-weight: 900; cursor: pointer; }
.calculator-form > button { grid-column: 1 / -1; }
.calculator-result > p { margin: 18px 0 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.estimate-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.estimate-card { display: flex; flex-direction: column; min-width: 0; padding: 18px; border: 1px solid #dde2df; border-radius: 18px; background: #f8faf9; }
.estimate-card.optimal { color: white; background: var(--ink); transform: translateY(-5px); }
.estimate-card > span { color: var(--accent); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.estimate-card.optimal > span { color: var(--lime); }
.estimate-card h3 { margin: 7px 0 4px; font-size: 20px; }
.estimate-card ul { margin: 14px 0 20px; padding: 0; list-style: none; }
.estimate-card li { padding: 7px 0; border-bottom: 1px solid rgba(100,115,123,.15); color: #52616a; font-size: 10px; line-height: 1.45; }
.estimate-card.optimal li { color: #bdc7cd; border-color: rgba(255,255,255,.1); }
.estimate-card button { margin-top: auto; }
.estimate-card.optimal button { color: var(--ink); background: var(--lime); }
.over-budget { display: block; color: #a44736; font-size: 9px; line-height: 1.35; }
.estimate-card.optimal .over-budget { color: #ffb8aa; }
.archive-calculator { display: grid; grid-template-columns: 1.1fr 2fr .9fr; gap: 24px; align-items: center; margin-top: 20px; }
.archive-copy h3 { margin: 8px 0; font-size: 25px; }
.archive-copy p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.archive-calculator form { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.archive-calculator form button { grid-column: 1 / -1; }
.archive-result { padding: 20px; border-radius: 18px; background: #e8f2f3; }
.archive-result strong { display: block; margin: 7px 0; font-size: 22px; }
.archive-result p { margin: 0; color: #52646e; font-size: 11px; line-height: 1.55; }
.archive-result button { width: 100%; margin-top: 12px; min-height: 40px; }

.packages {
  color: var(--white);
  background:
    radial-gradient(circle at 8% 20%, rgba(95, 152, 184, 0.1), transparent 24%),
    radial-gradient(circle at 90% 80%, rgba(101, 205, 187, 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: var(--font-display);
  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: var(--font-display);
  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;
}

.business-care-shell { display: grid; grid-template-columns: 1.2fr 1fr .7fr; gap: 32px; align-items: center; padding: 38px; border-radius: 30px; background: var(--ink); color: white; }
.business-care-shell h2 { margin: 12px 0; font-size: clamp(30px,4vw,52px); line-height: 1.05; }
.business-care-shell h2 span { color: var(--lime); }
.business-care-shell p { color: #b9c4ca; line-height: 1.65; }
.business-care-shell ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.business-care-shell li { padding: 10px 0 10px 24px; border-bottom: 1px solid rgba(255,255,255,.1); color: #d3dade; font-size: 12px; }
.business-care-shell li::before { float: left; margin-left: -23px; color: var(--lime); content: "✓"; }
.business-care-shell aside { padding: 24px; border-radius: 20px; background: rgba(255,255,255,.08); }
.business-care-shell aside small,.business-care-shell aside span { display: block; color: #aebbc2; font-size: 10px; line-height: 1.5; }
.business-care-shell aside strong { display: block; margin: 12px 0; color: var(--lime); font-size: 25px; }
.planner-shell { display: grid; grid-template-columns: minmax(0,1.6fr) minmax(280px,.65fr); gap: 18px; padding: 18px; border: 1px solid var(--line); border-radius: 28px; background: white; }
.planner-stage { position: relative; min-height: 480px; overflow: hidden; border-radius: 20px; background: #e7ecea; }
.planner-stage canvas { display: block; width: 100%; height: 100%; min-height: 480px; cursor: crosshair; touch-action: pan-y; }
.planner-empty { position: absolute; inset: 0; display: grid; place-content: center; gap: 8px; padding: 30px; text-align: center; pointer-events: none; }
.planner-empty[hidden] { display: none; }
.planner-empty span { max-width: 430px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.planner-controls { padding: 12px; }
.planner-controls > p { color: var(--muted); font-size: 12px; line-height: 1.55; }
.planner-controls label { display: grid; gap: 8px; margin-top: 18px; }
.planner-controls label > span { color: #63717b; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.planner-controls select { min-height: 44px; padding: 0 10px; border: 1px solid var(--line); border-radius: 10px; background: #f8faf9; }
.planner-controls input[type="range"] { width: 100%; accent-color: #1688c5; cursor: ew-resize; }
.planner-controls input[type="range"]:disabled { cursor: not-allowed; opacity: .45; }
.planner-controls output { color: #1688c5; font-size: 12px; font-weight: 900; }
.planner-upload input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.planner-upload strong { display: grid; min-height: 46px; place-items: center; border: 1px dashed #9cafaa; border-radius: 11px; color: #0877bd; cursor: pointer; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.planner-upload strong:hover { color: #075f96; background: #eef8ff; border-color: #1688c5; transform: translateY(-2px); }
.planner-actions { display: grid; grid-template-columns: 1fr; gap: 9px; margin-top: 20px; }
.planner-action,.planner-attach { min-height: 48px; border-radius: 13px; font-size: 11px; font-weight: 850; cursor: pointer; transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .25s ease, transform .2s ease; }
.planner-action { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 0 14px; border: 1px solid transparent; }
.planner-action svg { width: 19px; height: 19px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.planner-action-undo { color: #086d9f; background: linear-gradient(135deg, #eef8ff, #e3f2fb); border-color: rgba(22, 136, 197, .2); }
.planner-action-clear { color: #a33f46; background: linear-gradient(135deg, #fff5f4, #fce9e8); border-color: rgba(163, 63, 70, .2); }
.planner-action:not(:disabled):hover { box-shadow: 0 14px 28px rgba(16, 24, 32, .1); transform: translateY(-3px); }
.planner-action-undo:not(:disabled):hover { color: white; background: #1688c5; border-color: #1688c5; }
.planner-action-clear:not(:disabled):hover { color: white; background: var(--accent); border-color: var(--accent); }
.planner-action:not(:disabled):active { box-shadow: none; transform: translateY(-1px) scale(.985); }
.planner-action:disabled { color: #8a969c; background: #f0f2ef; border-color: rgba(16, 24, 32, .08); box-shadow: none; cursor: not-allowed; opacity: .62; }
.planner-attach { width: 100%; margin-top: 10px; border: 0; color: white; background: linear-gradient(135deg, var(--accent), #32a9b8); box-shadow: 0 13px 28px rgba(8, 127, 149, .2); }
.planner-attach:hover { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); box-shadow: 0 18px 34px rgba(8, 127, 149, .26); transform: translateY(-2px); }
.planner-controls > small { display: block; margin-top: 10px; color: #4f6e59; line-height: 1.5; }
.diagnostic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.diagnostic-form,.diagnostic-result { padding: 30px; border: 1px solid var(--line); border-radius: 26px; background: white; }
.diagnostic-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.diagnostic-form h2,.diagnostic-form>p,.diagnostic-form>.section-number,.diagnostic-form>button,.diagnostic-form>.diagnostic-wide { grid-column: 1 / -1; }
.diagnostic-form h2 { margin: 10px 0; font-size: clamp(28px,4vw,45px); line-height: 1.05; }
.diagnostic-form h2 span { color: var(--accent); }
.diagnostic-form>p { color: var(--muted); line-height: 1.6; }
.diagnostic-form label { display: grid; gap: 7px; }
.diagnostic-form label span { color: #63717b; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.diagnostic-form select,.diagnostic-form input { min-height: 46px; padding: 0 11px; border: 1px solid var(--line); border-radius: 10px; background: #f8faf9; }
.diagnostic-form>button,.diagnostic-result button { min-height: 46px; border: 0; border-radius: 11px; background: var(--ink); color: white; font-weight: 850; cursor: pointer; }
.diagnostic-result { align-self: stretch; background: #e8f2f3; }
.diagnostic-result>span { color: #0877bd; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.diagnostic-result h3 { margin: 14px 0; font-size: 26px; }
.diagnostic-result p,.diagnostic-result li { color: #53656f; line-height: 1.6; }
.diagnostic-result button { width: 100%; margin-top: 15px; }
.diagnostic-result.urgent { background: #fff0ec; }
.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: var(--font-display);
  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: var(--font-display);
  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(95, 152, 184, 0.22), 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: var(--font-display);
  font-size: 10px;
}

.benefit-card h3 {
  margin: 60px 0 12px;
  font-family: var(--font-display);
  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;
}

.master-section {
  padding-top: 30px;
}

.master-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) minmax(280px, .78fr);
  gap: 34px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255,255,255,.64);
}

.master-portrait {
  position: relative;
  display: grid;
  min-height: 280px;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(145deg, #10202c, #1e5e71);
  color: white;
  box-shadow: 0 22px 54px rgba(4, 54, 81, .18);
}

.master-portrait img { width: 100%; height: 100%; object-fit: cover; }
.master-portrait .master-brand-image {
  object-position: center;
  transform: scale(1.025);
  transition: filter .45s ease, transform .65s cubic-bezier(.2, .8, .2, 1);
}
.master-shell:hover .master-brand-image {
  filter: saturate(1.08) brightness(1.03);
  transform: scale(1.065);
}
.master-portrait span { font-family: var(--font-display); font-size: 54px; font-weight: 900; }
.master-copy { align-self: center; }
.master-copy h2 { margin: 10px 0 8px; font-size: clamp(30px, 4vw, 54px); line-height: 1; }
.master-copy > strong { display: block; color: var(--accent); font-size: 13px; }
.master-copy p { max-width: 660px; margin: 18px 0; color: var(--muted); line-height: 1.7; }
.master-copy small { display: block; margin-top: 7px; color: #51616c; }
.warranty-card { padding: 28px; border-radius: 24px; background: var(--ink); color: white; }
.warranty-card > span { color: var(--lime); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.warranty-card h3 { margin: 18px 0 12px; font-size: 24px; }
.warranty-card p { color: #b8c3ca; line-height: 1.65; }
.warranty-card a { display: inline-flex; margin-top: 16px; padding-bottom: 4px; border-bottom: 1px solid var(--lime); color: var(--lime); font-size: 12px; font-weight: 850; }

.portfolio-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.portfolio-card, .review-card { padding: 18px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 14px 44px rgba(16,32,44,.06); }
.portfolio-images { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; margin-bottom: 18px; }
.portfolio-images:empty { display: none; }
.portfolio-images figure { position: relative; min-height: 190px; margin: 0; overflow: hidden; border-radius: 16px; background: #e8eceb; }
.portfolio-images figure:only-child { grid-column: 1 / -1; }
.portfolio-images img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-images figcaption { position: absolute; bottom: 8px; left: 8px; padding: 5px 8px; border-radius: 999px; background: rgba(13,27,37,.82); color: white; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.portfolio-card > span { color: var(--accent); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.portfolio-card h3 { margin: 8px 0; font-size: 20px; }
.portfolio-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.portfolio-summary { padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.portfolio-details { display: grid; gap: 12px; margin: 16px 0 0; }
.portfolio-details div { display: grid; gap: 4px; }
.portfolio-details dt,
.portfolio-result > span { color: var(--accent); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.portfolio-details dd { margin: 0; color: var(--ink); font-size: 13px; line-height: 1.55; }
.portfolio-metrics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 16px; }
.portfolio-metrics div { display: grid; gap: 4px; padding: 11px 12px; border-radius: 14px; background: #f2f5f4; }
.portfolio-metrics span { color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.portfolio-metrics strong { color: var(--ink); font-size: 14px; }
.portfolio-result { margin-top: 16px; padding: 14px; border-radius: 16px; background: rgba(188, 244, 91, .18); }
.portfolio-result p { margin-top: 6px; color: var(--ink); }
.portfolio-empty { padding: 32px; border: 1px dashed var(--line); border-radius: 24px; background: rgba(255,255,255,.72); text-align: center; }
.portfolio-empty strong { display: block; margin-bottom: 8px; font-size: 20px; }
.portfolio-empty p { margin: 0; color: var(--muted); }
.review-stars { color: #f4aa21; letter-spacing: 3px; }
.review-card blockquote { margin: 18px 0 26px; color: #33434d; font-size: 16px; line-height: 1.7; }
.review-card footer { display: grid; gap: 4px; padding-top: 16px; border-top: 1px solid var(--line); }
.review-card footer span { color: var(--muted); font-size: 11px; }

.telegram-qr-section {
  padding-top: 0;
  background: var(--paper-dark);
}

.telegram-qr-shell {
  position: relative;
  display: grid;
  min-height: 530px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 91% 18%, rgba(95, 152, 184, 0.28), transparent 31%),
    radial-gradient(circle at 66% 105%, rgba(101, 205, 187, 0.17), transparent 30%),
    var(--ink);
  border-radius: var(--radius-lg);
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
}

.telegram-qr-shell::before {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.telegram-qr-shell::after {
  position: absolute;
  right: 32%;
  bottom: -92px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(101, 205, 187, 0.2);
  border-radius: 50%;
  content: "";
}

.telegram-qr-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 68px 64px;
}

.telegram-qr-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 8px 13px;
  color: var(--ink);
  background: var(--blue);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.telegram-qr-copy h2 {
  max-width: 650px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.telegram-qr-copy h2 span {
  color: var(--lime);
}

.telegram-qr-copy > p {
  max-width: 610px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 15px;
  line-height: 1.75;
}

.telegram-qr-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.telegram-qr-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.telegram-qr-points span::before {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(101, 205, 187, 0.1);
  content: "";
}

.telegram-qr-button {
  margin-top: 32px;
  color: var(--ink);
  background: var(--blue);
  box-shadow: 0 14px 38px rgba(95, 152, 184, 0.2);
}

.telegram-qr-button:hover {
  background: var(--lime);
}

.telegram-qr-copy > small {
  max-width: 430px;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  line-height: 1.5;
}

.telegram-qr-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-width: 0;
  padding: 42px 42px 34px;
  isolation: isolate;
}

.telegram-qr-orbit {
  position: absolute;
  z-index: -1;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  animation: qr-orbit 16s linear infinite;
}

.telegram-qr-orbit::before,
.telegram-qr-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.telegram-qr-orbit::before {
  top: 31px;
  right: 39px;
  width: 12px;
  height: 12px;
  background: var(--lime);
  box-shadow: 0 0 24px rgba(101, 205, 187, 0.56);
}

.telegram-qr-orbit::after {
  bottom: 26px;
  left: 54px;
  width: 8px;
  height: 8px;
  background: var(--blue);
  box-shadow: 0 0 22px rgba(95, 152, 184, 0.56);
}

.telegram-qr-frame {
  position: relative;
  display: flex;
  width: min(316px, 100%);
  align-items: center;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: linear-gradient(145deg, #d4f5f1, #dce3ff 58%, #b9dcff);
  border-radius: 34px;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.42),
    0 0 0 8px rgba(95, 152, 184, 0.06),
    0 0 60px rgba(95, 152, 184, 0.2);
  isolation: isolate;
  animation: branded-qr-float 5.8s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.telegram-qr-frame::before {
  position: absolute;
  z-index: 0;
  inset: -75% -45%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .44) 49%, transparent 58%);
  content: "";
  pointer-events: none;
  transform: translateX(-72%) rotate(8deg);
  animation: branded-qr-sheen 5.6s ease-in-out infinite;
}

.telegram-qr-frame::after {
  position: absolute;
  z-index: 4;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: inherit;
  box-shadow: inset 0 0 32px rgba(95, 152, 184, .13);
  content: "";
  pointer-events: none;
}

.telegram-qr-brand {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 11px;
  color: #173648;
}

.telegram-qr-brand-mark {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: #80ecff;
  background: linear-gradient(145deg, #06234d, #075c8b);
  border: 2px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  box-shadow: 0 9px 24px rgba(6, 50, 91, .24);
}

.telegram-qr-brand-mark::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(22, 136, 197, .34);
  border-radius: 50%;
  content: "";
  animation: telegram-ping 2.2s ease-out infinite;
}

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

.telegram-qr-brand > span:last-child {
  display: grid;
  gap: 3px;
  text-align: left;
}

.telegram-qr-brand strong {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: -.03em;
}

.telegram-qr-brand small {
  color: #537386;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.telegram-qr-code {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
  border: 9px solid #fff;
  border-radius: 25px;
  box-shadow: 0 18px 42px rgba(20, 65, 89, .16);
}

.telegram-qr-code img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  object-position: center;
}

.telegram-qr-username {
  position: relative;
  z-index: 1;
  color: #315a73;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .015em;
}

.telegram-qr-visual:hover .telegram-qr-frame {
  box-shadow:
    0 42px 100px rgba(0, 0, 0, 0.48),
    0 0 0 9px rgba(101, 205, 187, 0.08),
    0 0 74px rgba(95, 152, 184, 0.26);
  animation-play-state: paused;
  transform: translateY(-6px) rotate(-1deg);
}

.telegram-qr-visual > strong {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@keyframes qr-orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes branded-qr-float {
  0%, 100% { transform: translateY(0) rotate(.35deg); }
  50% { transform: translateY(-9px) rotate(-.35deg); }
}

@keyframes branded-qr-sheen {
  0%, 62% { opacity: 0; transform: translateX(-72%) rotate(8deg); }
  72% { opacity: .9; }
  100% { opacity: 0; transform: translateX(72%) rotate(8deg); }
}

.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(101, 205, 187, 0.15), transparent 37%),
    radial-gradient(circle at 90% 5%, rgba(95, 152, 184, 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(95, 152, 184, 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;
}

.callback-form {
  margin-top: 34px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  border-radius: 18px;
}

.callback-form > strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 14px;
}

.callback-form > p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.callback-form label > span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
}

.callback-form input[type="tel"] {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  outline: none;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.callback-form input[type="tel"]:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(101, 205, 187, 0.1);
}

.callback-form .callback-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 12px 0;
}

.callback-form .callback-consent input {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin: 1px 0 0;
  accent-color: var(--lime);
}

.callback-form .callback-consent span {
  margin: 0;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.45;
}

.callback-form button,
.call-now-button {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 0;
  color: var(--ink);
  background: var(--lime);
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.callback-form button:disabled {
  cursor: wait;
  opacity: 0.6;
}

#callback-status {
  display: block;
  min-height: 16px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
}

#callback-status a {
  color: var(--lime);
  text-decoration: underline;
}

.call-now-button {
  margin-top: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

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

.form-intro {
  display: grid;
  gap: 4px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.form-intro span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-intro strong {
  font-family: var(--font-display);
  font-size: 17px;
}

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

.available-slots { display: grid; gap: 11px; margin: -2px 0 4px; padding: 15px; border: 1px solid #d4deda; border-radius: 15px; background: #f6f9f7; }
.available-slots > div:first-child { display: grid; gap: 3px; }
.available-slots span { color: var(--accent); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.available-slots strong { font-size: 12px; }
.slot-buttons { display: flex !important; flex-wrap: wrap; gap: 7px !important; }
.slot-buttons button { min-height: 36px; padding: 0 10px; border: 1px solid #c7d4d0; border-radius: 999px; background: white; color: #33464f; font: inherit; font-size: 10px; font-weight: 800; cursor: pointer; }
.slot-buttons button:hover { border-color: #5f98b8; background: #eaf3f6; }
.slot-buttons button:disabled { opacity: .55; cursor: wait; }
.available-slots.reserved { border-color: #87bd69; background: #edf7e8; }

.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(163, 63, 70, 0.1);
}

.request-form input:invalid:not(:placeholder-shown) {
  border-color: rgba(210, 57, 57, 0.65);
}

.field-help {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 9px;
}

.file-upload {
  position: relative;
  padding: 18px;
  border: 1px dashed rgba(38, 165, 228, 0.42);
  background:
    radial-gradient(circle at 10% 0%, rgba(95, 152, 184, 0.17), 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(95, 152, 184, 0.24), 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;
}

.file-upload .file-privacy-warning {
  margin-top: 9px;
  padding-top: 9px;
  border-top: 1px solid rgba(13, 27, 37, 0.1);
  color: #465761;
  font-weight: 650;
}

.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;
}

.consent a,
.callback-consent a {
  color: #0877bd;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mobile-action-bar {
  display: none;
}

.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: var(--font-display);
  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;
}

.result-actions .button {
  text-align: center;
}

.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-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);
}

.motion-tilt {
  transform-style: preserve-3d;
  will-change: transform;
}

.motion-magnetic {
  will-change: transform;
}

.section-heading h2 span,
.why-copy h2 span,
.request-copy h2 span,
.hero-title-accent {
  color: transparent;
  background: linear-gradient(105deg, var(--accent-dark) 12%, var(--lime) 38%, var(--blue) 60%, var(--accent) 84%);
  background-clip: text;
  background-size: 230% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: accent-text-flow 8s ease-in-out infinite;
}

.button-primary,
.nav-cta {
  position: relative;
  overflow: hidden;
}

.button-primary::after,
.nav-cta::after {
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -35%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .38), transparent);
  content: "";
  pointer-events: none;
  transform: translateX(-220%) skewX(-18deg);
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.button-primary:hover::after,
.nav-cta:hover::after {
  transform: translateX(680%) skewX(-18deg);
}

.service-icon,
.process-icon {
  transition: transform .32s cubic-bezier(.22, 1, .36, 1), box-shadow .32s ease, background .32s ease;
}

.service-card:hover .service-icon {
  box-shadow: 0 16px 30px rgba(16, 24, 32, .12);
  transform: translateY(-5px) rotate(-5deg) scale(1.06);
}

.service-card-featured:hover .service-icon {
  box-shadow: 0 16px 34px rgba(101, 205, 187, .18);
}

.process-icon {
  position: relative;
}

.process-icon::after {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(8, 127, 149, .3);
  border-radius: inherit;
  content: "";
  opacity: 0;
  transform: scale(.8);
  transition: opacity .3s ease, transform .45s cubic-bezier(.22, 1, .36, 1);
}

.process-item:hover .process-icon {
  background: #fff8f4;
  box-shadow: 0 18px 38px rgba(8, 127, 149, .12);
  transform: translateY(-7px) rotate(4deg);
}

.process-item:hover .process-icon::after {
  opacity: 1;
  transform: scale(1.08);
}

.benefit-card {
  position: relative;
  overflow: hidden;
  transition: background .3s ease, box-shadow .3s ease, transform .2s ease;
}

.benefit-card::before {
  position: absolute;
  inset: auto -25% -55% 20%;
  height: 80%;
  background: radial-gradient(circle, rgba(101, 205, 187, .17), transparent 68%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateY(25%);
  transition: opacity .35s ease, transform .5s cubic-bezier(.22, 1, .36, 1);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 0 0 1px rgba(101, 205, 187, .08);
}

.benefit-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-card,
.review-card {
  transition: transform .2s ease, box-shadow .3s ease, border-color .3s ease;
}

.portfolio-card:hover,
.review-card:hover {
  border-color: rgba(95, 152, 184, .5);
  box-shadow: 0 24px 55px rgba(16, 32, 44, .12);
}

.faq-list details[open] p {
  animation: faq-answer-in .35s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes accent-text-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes faq-answer-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(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) {
  .diagnostic-grid > * {
    min-width: 0;
  }

  .header-phone {
    display: none;
  }

  .master-shell {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .warranty-card {
    grid-column: 1 / -1;
  }

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

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

  .archive-calculator {
    grid-template-columns: 1fr;
  }

  .business-care-shell {
    grid-template-columns: 1fr 1fr;
  }

  .business-care-shell aside {
    grid-column: 1 / -1;
  }

  .planner-shell {
    grid-template-columns: 1fr;
  }

  .main-nav {
    gap: 17px;
  }

  .telegram-header {
    min-width: 0;
    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-note {
    display: none;
  }

  .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));
  }

  .diagnostic-grid,
  .diagnostic-form {
    grid-template-columns: 1fr;
  }

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

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

  .estimate-options {
    grid-template-columns: 1fr;
  }

  .estimate-card.optimal {
    transform: none;
  }

  .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: var(--font-display);
    font-size: 25px;
  }

  .nav-cta {
    margin-top: 15px;
    color: var(--ink);
    background: var(--lime);
    font-family: var(--font-body) !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;
  }

  .telegram-qr-shell {
    grid-template-columns: 1fr;
  }

  .telegram-qr-copy {
    align-items: center;
    padding-bottom: 34px;
    text-align: center;
  }

  .telegram-qr-copy > p,
  .telegram-qr-copy > small {
    margin-right: auto;
    margin-left: auto;
  }

  .telegram-qr-points {
    justify-content: center;
  }

  .telegram-qr-visual {
    padding-top: 20px;
  }

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

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

@media (max-width: 620px) {
  body {
    padding-bottom: 72px;
  }

  .master-shell {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 18px;
  }

  .master-portrait {
    width: min(100%, 360px);
    aspect-ratio: 4 / 5;
    min-height: 250px;
    justify-self: center;
  }

  .warranty-card {
    grid-column: auto;
  }

  .portfolio-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .calculator-form,
  .calculator-result,
  .archive-calculator {
    padding: 18px;
  }

  .calculator-form,
  .archive-calculator form {
    grid-template-columns: 1fr;
  }

  .calculator-form > button,
  .archive-calculator form button {
    grid-column: auto;
  }

  .business-care-shell {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .business-care-shell aside {
    grid-column: auto;
  }

  .planner-shell {
    padding: 10px;
  }

  .planner-stage,
  .planner-stage canvas {
    min-height: 320px;
  }

  .hero-layout > * {
    min-width: 0;
  }

  .diagnostic-form h2,
  .diagnostic-form > p,
  .diagnostic-form > .section-number,
  .diagnostic-form > button {
    grid-column: auto;
  }

  .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;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 190;
    right: 8px;
    bottom: 8px;
    left: 8px;
    display: grid;
    grid-template-columns: .85fr .95fr 1.35fr;
    gap: 5px;
    padding: 6px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 18px;
    background: rgba(13, 27, 37, .94);
    box-shadow: 0 18px 55px rgba(8, 18, 27, .3);
    backdrop-filter: blur(16px);
  }

  .mobile-action-bar a {
    display: grid;
    min-height: 46px;
    place-items: center;
    padding: 0 8px;
    border-radius: 13px;
    color: white;
    font-size: 11px;
    font-weight: 850;
    text-align: center;
  }

  .mobile-action-bar a:first-child {
    background: #28a860;
  }

  .mobile-action-bar a:last-child {
    background: var(--accent);
  }

  .toast {
    bottom: 82px;
  }

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

  h1 {
    font-size: clamp(25px, 7.7vw, 32px);
  }

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

  .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;
    overflow: hidden;
  }

  .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,
  .telegram-qr-copy 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;
  }

  .telegram-qr-copy {
    padding: 48px 24px 28px;
  }

  .telegram-qr-copy > p {
    font-size: 14px;
  }

  .telegram-qr-points {
    gap: 7px;
  }

  .telegram-qr-points span {
    padding: 8px 10px;
  }

  .telegram-qr-button {
    width: 100%;
  }

  .telegram-qr-visual {
    overflow: hidden;
    padding: 16px 24px 38px;
  }

  .telegram-qr-frame {
    width: min(270px, 100%);
  }

  .telegram-qr-orbit {
    width: 330px;
    height: 330px;
  }

  .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;
  }
}

/* Browser-only application access. Tracking links are bearer secrets. */
.result-actions {
  flex-wrap: wrap;
}

.result-actions .button {
  flex: 1 1 180px;
}

.public-home #callback-status .callback-copy-link {
  display: inline;
  min-height: 0;
  padding: 0;
  color: var(--color-cyan);
  background: transparent;
  border-radius: 0;
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.saved-orders-page {
  min-width: 0;
  min-height: 100vh;
  color: var(--color-text);
  background:
    radial-gradient(circle at 8% 8%, rgba(43, 191, 239, 0.13), transparent 28rem),
    radial-gradient(circle at 92% 28%, rgba(19, 184, 166, 0.12), transparent 30rem),
    var(--color-bg);
}

.saved-orders-page :is(main, section, article, div, nav) {
  min-width: 0;
}

.saved-orders-page :is(p, strong, a, span, h1, h2) {
  overflow-wrap: anywhere;
}

.saved-orders-header {
  color: var(--color-surface);
  background: rgba(7, 26, 45, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.saved-orders-header .brand-mark {
  color: var(--color-navy);
  background: linear-gradient(135deg, var(--color-cyan), var(--color-teal));
}

.saved-orders-header .brand small {
  color: #9fb7c9;
}

.saved-orders-new {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: var(--color-surface);
  background: var(--color-primary);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.saved-orders-main {
  padding: 76px 0 96px;
}

.saved-orders-intro {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  padding: 48px;
  color: var(--color-surface);
  background:
    linear-gradient(135deg, rgba(43, 191, 239, 0.1), transparent 46%),
    var(--color-navy);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.saved-orders-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: #7ee3d7;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.saved-orders-intro h1 {
  margin: 0 0 14px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
}

.saved-orders-intro p {
  max-width: 720px;
  margin: 0;
  color: #b9cbd8;
  font-size: 16px;
}

.saved-orders-intro aside {
  display: grid;
  width: 128px;
  min-height: 128px;
  place-content: center;
  padding: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
}

.saved-orders-intro aside strong {
  color: #7ee3d7;
  font-size: 42px;
  line-height: 1;
}

.saved-orders-intro aside span {
  color: #b9cbd8;
  font-size: 12px;
}

.saved-orders-security {
  display: grid;
  margin: 20px 0 0;
  padding: 20px 24px;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  background: #e9f7f5;
  border: 1px solid #c8e9e4;
  border-radius: 18px;
}

.saved-orders-security strong {
  color: #087d70;
}

.saved-orders-security p {
  margin: 0;
  color: var(--color-muted);
}

.saved-orders-notice {
  min-height: 24px;
  margin: 22px 0 10px;
  color: var(--color-muted);
  font-size: 13px;
}

.saved-orders-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.saved-order-card {
  display: grid;
  gap: 24px;
  padding: 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.saved-order-card.is-unavailable {
  background: #fffafa;
  border-color: #f0cdcd;
}

.saved-order-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.saved-order-heading h2 {
  margin: 0;
  font-size: 24px;
}

.saved-order-status {
  flex: 0 1 auto;
  padding: 7px 11px;
  color: #086d61;
  background: #ddf5f1;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.saved-order-status.is-warning,
.is-unavailable .saved-order-status {
  color: #8c4b08;
  background: #fff0d6;
}

.saved-order-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.saved-order-details > div {
  display: grid;
  gap: 3px;
  padding: 13px 15px;
  background: var(--color-bg);
  border-radius: 14px;
}

.saved-order-details span {
  color: var(--color-muted);
  font-size: 11px;
}

.saved-order-details strong {
  font-size: 13px;
}

.saved-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.saved-order-actions :is(a, button) {
  display: inline-flex;
  min-height: 42px;
  flex: 1 1 150px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.saved-order-actions .saved-order-open {
  color: var(--color-surface);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.saved-order-actions .saved-order-remove {
  color: #a33131;
  border-color: #efc8c8;
}

.saved-orders-empty {
  padding: 64px 28px;
  text-align: center;
  background: var(--color-surface);
  border: 1px dashed #bfcfd9;
  border-radius: 24px;
}

.saved-orders-empty[hidden],
.saved-orders-list[hidden] {
  display: none;
}

.saved-orders-empty > span {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #087d70;
  background: #ddf5f1;
  border-radius: 18px;
  font-weight: 900;
}

.saved-orders-empty h2 {
  max-width: 620px;
  margin: 22px auto 8px;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.12;
}

.saved-orders-empty p {
  margin: 0 auto 24px;
  color: var(--color-muted);
}

.saved-orders-empty a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 20px;
  color: var(--color-surface);
  background: var(--color-primary);
  border-radius: 999px;
  font-weight: 800;
}

.saved-orders-noscript {
  padding: 14px;
  color: #8c4b08;
  background: #fff0d6;
  border-radius: 12px;
}

.saved-orders-footer {
  padding: 28px 0;
  color: #b9cbd8;
  background: var(--color-navy);
}

.saved-orders-footer .container,
.saved-orders-footer nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.saved-orders-footer nav {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.saved-orders-footer a {
  color: var(--color-surface);
  font-size: 12px;
}

@media (max-width: 768px) {
  .saved-orders-main {
    padding: 42px 0 64px;
  }

  .saved-orders-intro {
    align-items: start;
    grid-template-columns: 1fr;
    padding: 34px 28px;
  }

  .saved-orders-intro aside {
    width: 100%;
    min-height: 84px;
  }

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

  .saved-orders-security,
  .saved-orders-footer .container {
    align-items: flex-start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .saved-orders-footer nav {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .saved-orders-header-inner {
    min-height: 72px;
    gap: 12px;
  }

  .saved-orders-header .brand small {
    display: none;
  }

  .saved-orders-new {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 11px;
  }

  .saved-orders-intro,
  .saved-order-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .saved-order-heading,
  .saved-order-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .saved-order-status {
    align-self: flex-start;
  }

  .saved-order-details {
    grid-template-columns: 1fr;
  }

  .saved-order-actions :is(a, button) {
    width: 100%;
    flex-basis: auto;
  }
}

@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 (max-width: 760px) {
  .site-ambient::before {
    opacity: .4;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 32%, transparent 68%, #000 100%);
    mask-image: linear-gradient(90deg, #000 0%, transparent 32%, transparent 68%, #000 100%);
  }

  .site-ambient::after {
    opacity: .14;
    background-size: 52px 52px;
  }

  .site-ambient-wave {
    width: 90vw;
    opacity: .18;
  }

  .site-ambient-wave-left {
    left: -76vw;
  }

  .site-ambient-wave-right {
    right: -76vw;
  }
}

/* Compact public homepage refresh: calm graphite + cyan/teal. */
.public-home .site-header.scrolled {
  background: rgba(244, 248, 249, 0.92);
  box-shadow: 0 12px 34px rgba(11, 31, 42, 0.07);
}

.public-home .section {
  padding: 88px 0;
}

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

.public-home .section-number,
.public-home .table-kicker {
  color: var(--accent-dark);
}

.public-home .services,
.public-home .process,
.public-home .request {
  background: rgba(255, 255, 255, 0.42);
}

.public-home .service-card,
.public-home .price-table-wrap,
.public-home .solution-card,
.public-home .calculator-form,
.public-home .calculator-result,
.public-home .request-form,
.public-home .callback-form {
  border-color: rgba(11, 31, 42, 0.12);
  box-shadow: 0 18px 52px rgba(11, 31, 42, 0.055);
}

.public-home .service-card {
  min-height: 280px;
  background: rgba(255, 255, 255, 0.82);
}

.public-home .service-card-featured {
  min-height: 240px;
  background:
    radial-gradient(circle at 100% 0%, rgba(101, 205, 187, 0.16), transparent 34%),
    var(--ink);
}

.public-home .service-card-featured .service-icon {
  background: var(--lime);
}

.public-home .service-card-maintenance {
  background: linear-gradient(145deg, rgba(229, 246, 244, 0.96), rgba(255, 255, 255, 0.94));
}

.public-home .service-icon {
  margin-bottom: 28px;
  background: #e7f0f2;
}

.public-home .service-detail {
  color: var(--accent-dark);
}

.public-home .price-table-wrap {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.88);
}

.public-home .use-cases {
  background: #e8f0f2;
}

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

.solution-card {
  display: flex;
  min-width: 0;
  min-height: 390px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.solution-card:hover {
  border-color: rgba(8, 127, 149, 0.32);
  box-shadow: 0 22px 50px rgba(11, 31, 42, 0.09);
  transform: translateY(-5px);
}

.solution-card-accent {
  background: linear-gradient(155deg, #e2f4f2, #f8fbfb 72%);
  border-color: rgba(8, 127, 149, 0.24);
}

.solution-card .case-tag {
  align-self: flex-start;
  color: var(--accent-dark);
  background: rgba(8, 127, 149, 0.1);
}

.solution-card h3 {
  margin: 4px 0 14px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.3;
}

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

.solution-card ul {
  display: grid;
  gap: 9px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.solution-card li {
  position: relative;
  padding-left: 22px;
  color: #29444f;
  font-size: 13px;
  font-weight: 700;
}

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

.solution-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.solution-card > div strong {
  font-size: 14px;
}

.solution-card > div a {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.public-home .calculators {
  background:
    radial-gradient(circle at 8% 16%, rgba(95, 152, 184, 0.13), transparent 24%),
    linear-gradient(180deg, rgba(229, 241, 243, 0.78), rgba(244, 248, 249, 0.3));
}

.public-home .calculator-form input:not([type="checkbox"]),
.public-home .calculator-form select,
.public-home .request-form input,
.public-home .request-form textarea,
.public-home .request-form select,
.public-home .callback-form input[type="tel"] {
  border-color: #bfd0d6;
  background: #f8fbfc;
}

.public-home .calculator-form input:focus,
.public-home .calculator-form select:focus,
.public-home .request-form input:focus,
.public-home .request-form textarea:focus,
.public-home .request-form select:focus,
.public-home .callback-form input[type="tel"]:focus {
  outline: 3px solid rgba(8, 127, 149, 0.12);
  border-color: var(--accent);
}

.public-home .process-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.public-home .process-list::before {
  right: 12%;
  left: 12%;
}

.public-home .process-item {
  min-width: 0;
  padding-inline: 16px;
}

.public-home .process-item h3 {
  min-height: 0;
}

.public-home .why-us {
  color: var(--white);
  background: transparent;
}

.public-home .why-us .section-heading h2 {
  color: var(--ink);
}

.public-home .why-us .section-heading-light > p {
  color: var(--muted);
}

.public-home .why-grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 0% 100%, rgba(95, 152, 184, 0.22), transparent 36%),
    var(--ink);
  box-shadow: 0 28px 70px rgba(11, 31, 42, 0.14);
}

.why-profile {
  display: grid;
  min-width: 0;
  align-content: start;
  justify-items: start;
  gap: 24px;
  grid-row: 1 / span 2;
  padding: 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.why-business-card {
  width: min(100%, 400px);
  margin: 0;
}

.why-business-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  box-shadow: 0 20px 48px rgba(0, 10, 19, 0.24);
}

.why-profile > div {
  min-width: 0;
}

.why-profile span,
.why-profile > div > strong {
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.why-profile h3 {
  margin: 10px 0 6px;
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.25;
}

.why-profile p {
  margin: 17px 0 0;
  color: #c2d0d6;
  font-size: 13px;
  line-height: 1.65;
}

.why-profile small {
  display: block;
  margin-top: 12px;
  color: #91a8b2;
  font-size: 11px;
}

.public-home .benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.public-home .benefit-card {
  min-width: 0;
  min-height: 205px;
  padding: 30px;
}

.public-home .benefit-card h3 {
  margin: 34px 0 10px;
}

.public-home .warranty-card {
  display: grid;
  grid-template-columns: minmax(100px, 0.38fr) minmax(0, 0.62fr) auto;
  grid-column: 2;
  align-items: center;
  gap: 24px;
  padding: 27px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.045);
}

.public-home .warranty-card h3,
.public-home .warranty-card p,
.public-home .warranty-card a {
  margin: 0;
}

.public-home .warranty-card h3 {
  font-size: 20px;
}

.public-home .warranty-card p {
  color: #c2d0d6;
  font-size: 12px;
}

.public-home .warranty-card a {
  padding: 11px 14px;
  border: 1px solid rgba(101, 205, 187, 0.45);
  border-radius: 999px;
  white-space: nowrap;
}

.public-home .faq {
  background: #e8f0f2;
}

.public-home .faq-list {
  border-color: rgba(11, 31, 42, 0.18);
}

.public-home .faq-list details {
  border-color: rgba(11, 31, 42, 0.16);
}

.telegram-compact-cta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
  padding: 17px;
  border: 1px solid rgba(8, 127, 149, 0.24);
  border-radius: 19px;
  background: linear-gradient(140deg, rgba(226, 244, 242, 0.94), rgba(255, 255, 255, 0.82));
}

.telegram-compact-cta img {
  width: 76px;
  height: 76px;
  padding: 5px;
  border-radius: 14px;
  background: var(--white);
}

.telegram-compact-cta strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.telegram-compact-cta p {
  margin: 4px 0 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.telegram-compact-cta a {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.public-home .request-shell {
  background:
    radial-gradient(circle at 0% 100%, rgba(101, 205, 187, 0.13), transparent 34%),
    var(--ink);
}

.public-home .nav-cta {
  background: var(--accent);
}

@media (max-width: 1100px) {
  .solution-grid {
    gap: 12px;
  }

  .solution-card {
    padding: 24px;
  }

  .public-home .why-grid {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  }

  .why-profile {
    padding: 34px;
  }
}

@media (max-width: 860px) {
  .public-home .section {
    padding: 72px 0;
  }

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

  .solution-card {
    min-height: 0;
  }

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

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

  .public-home .why-grid {
    grid-template-columns: 1fr;
  }

  .why-profile {
    grid-row: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .public-home .warranty-card {
    grid-column: 1;
  }
}

@media (max-width: 620px) {
  .public-home .section {
    padding: 58px 0;
  }

  .public-home .section-heading {
    margin-bottom: 28px;
  }

  .public-home .service-card {
    min-height: 0;
  }

  .solution-card > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .public-home .process-list,
  .public-home .benefit-grid {
    grid-template-columns: 1fr;
  }

  .public-home .process-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 16px;
    padding: 14px 0;
  }

  .public-home .process-number {
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }

  .public-home .process-icon {
    width: 56px;
    height: 56px;
    margin: 0;
  }

  .why-profile {
    padding: 28px;
  }

  .public-home .benefit-card {
    min-height: 0;
  }

  .public-home .warranty-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .public-home .warranty-card a {
    justify-self: start;
  }

  .telegram-compact-cta {
    grid-template-columns: 1fr;
  }

  .telegram-compact-cta img {
    display: none;
  }
}

@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;
  }
}

/* Public design system v5: white surfaces, deep navy and clear blue actions. */
.public-home {
  color: var(--color-text);
  background: var(--color-bg);
}

.public-home :is(.header-inner, .hero-layout, .section-heading, .service-grid, .service-card, .solution-grid, .solution-card, .calculator-layout, .calculator-form, .calculator-result, .process-list, .process-item, .why-grid, .benefit-grid, .benefit-card, .faq-layout, .faq-list, .request-shell, .request-copy, .request-form, .footer-top) > * {
  min-width: 0;
}

.public-home :is(h1, h2, h3, p, a, button, label, summary, strong, small, span) {
  overflow-wrap: break-word;
}

.public-home :is(h1, h2, h3) {
  font-family: var(--font-display);
  text-wrap: balance;
}

.public-home :is(h1, h2) {
  letter-spacing: -0.04em;
}

.public-home .site-ambient::before {
  opacity: 0.46;
  background:
    radial-gradient(circle at 7% 22%, rgba(43, 191, 239, 0.2), transparent 23%),
    radial-gradient(circle at 94% 35%, rgba(19, 184, 166, 0.16), transparent 24%),
    radial-gradient(circle at 7% 78%, rgba(8, 123, 255, 0.1), transparent 22%),
    radial-gradient(circle at 96% 88%, rgba(43, 191, 239, 0.12), transparent 25%);
}

.public-home .site-ambient::after {
  opacity: 0.2;
}

.public-home .site-header,
.public-home .site-header.scrolled {
  color: var(--color-surface);
  background: rgba(7, 26, 45, 0.9);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 36px rgba(1, 13, 25, 0.18);
  backdrop-filter: blur(18px);
}

.public-home .brand-mark {
  color: var(--color-navy);
  background: linear-gradient(135deg, var(--color-cyan), var(--color-teal));
}

.public-home :is(.brand strong, .header-phone, .main-nav > a) {
  color: var(--color-surface);
}

.public-home :is(.brand small, .header-phone span) {
  color: #9fb7c9;
}

.public-home .header-phone {
  border-color: rgba(255, 255, 255, 0.16);
}

.public-home .telegram-header {
  color: var(--color-surface);
  border-color: rgba(19, 184, 166, 0.46);
  background: rgba(19, 184, 166, 0.13);
  box-shadow: 0 12px 30px rgba(1, 13, 25, 0.2);
}

.public-home .telegram-header-icon {
  background: var(--color-teal);
  box-shadow: 0 10px 24px rgba(19, 184, 166, 0.27);
}

.public-home .telegram-header-copy small {
  color: #a5ddd6;
}

.public-home .nav-cta {
  min-width: max-content;
  background: var(--color-primary);
}

.public-home :is(.nav-phone-link, .nav-bot-link) {
  display: none;
}

.public-home .nav-cta:hover {
  background: var(--color-primary-hover);
}

.public-home .menu-toggle {
  color: var(--color-surface);
}

.public-home .hero {
  min-height: 790px;
  color: var(--color-surface);
  background:
    radial-gradient(circle at 79% 25%, rgba(43, 191, 239, 0.18), transparent 25%),
    radial-gradient(circle at 92% 68%, rgba(19, 184, 166, 0.14), transparent 27%),
    linear-gradient(125deg, var(--color-navy) 0%, #0a2942 58%, #0b304a 100%);
}

.public-home .hero-layout {
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: 42px;
}

.public-home .hero::before {
  border-color: rgba(43, 191, 239, 0.2);
}

.public-home .hero-grid {
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
}

.public-home .eyebrow {
  color: #dceaf4;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.public-home .eyebrow-secondary {
  border-color: rgba(43, 191, 239, 0.35);
  background: rgba(43, 191, 239, 0.1);
}

.public-home .hero h1 {
  max-width: 100%;
  color: #f8fcff;
  font-size: clamp(38px, 3.8vw, 54px);
  line-height: 1.08;
}

.public-home .hero-title-accent {
  color: var(--color-cyan);
  background: linear-gradient(95deg, #40c8ff, #20d2bd);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.public-home .hero-title-nowrap {
  color: #f8fcff;
  white-space: normal;
}

.public-home .hero-lead {
  color: #bfd0dd;
}

.public-home .button-primary,
.public-home .calculator-form > button,
.public-home .form-submit {
  color: var(--color-surface);
  background: var(--color-primary);
  box-shadow: 0 13px 30px rgba(8, 123, 255, 0.25);
}

.public-home .button-primary:hover,
.public-home .calculator-form > button:hover {
  background: var(--color-primary-hover);
}

.public-home .button-telegram {
  background: var(--color-teal);
  box-shadow: 0 12px 30px rgba(19, 184, 166, 0.22);
}

.public-home .button-telegram:hover {
  background: #0e9d8e;
}

.public-home .hero .button-ghost {
  color: #e9f4fb;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.055);
}

.public-home .hero .button-ghost:hover {
  color: var(--color-navy);
  border-color: var(--color-surface);
  background: var(--color-surface);
}

.public-home .hero-bot-note {
  border-color: rgba(19, 184, 166, 0.3);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: none;
}

.public-home .hero-bot-note p,
.public-home .hero-points li,
.public-home .hero-note p {
  color: #b9cbd8;
}

.public-home .floating-card {
  min-width: 150px;
  gap: 10px;
  padding: 11px 13px;
  color: var(--color-text);
  border: 1px solid rgba(215, 228, 237, 0.95);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(1, 13, 25, 0.18);
  backdrop-filter: none;
  text-decoration: none;
}

.public-home .floating-card > span:last-child {
  min-width: 0;
}

.public-home .floating-card small {
  margin-bottom: 2px;
  color: var(--color-muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.public-home .floating-card strong {
  color: var(--color-text);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.public-home .floating-card .mini-icon,
.public-home .floating-card .record-dot {
  flex: 0 0 31px;
  width: 31px;
  height: 31px;
  border: 0;
  border-radius: 10px;
  box-sizing: border-box;
}

.public-home .card-online .mini-icon {
  color: #087f72;
  background: rgba(19, 184, 166, 0.14);
  box-shadow: inset 0 0 0 1px rgba(19, 184, 166, 0.18);
}

.public-home .card-bot .mini-icon {
  color: var(--color-primary);
  background: rgba(8, 123, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(8, 123, 255, 0.16);
}

.public-home .card-record .record-dot {
  position: relative;
  display: grid;
  place-items: center;
  background: rgba(43, 191, 239, 0.14);
  box-shadow: inset 0 0 0 1px rgba(43, 191, 239, 0.2);
}

.public-home .card-record .record-dot::after {
  width: 9px;
  height: 9px;
  background: var(--color-cyan);
  border: 2px solid rgba(7, 26, 45, 0.12);
  border-radius: 50%;
  content: "";
}

.public-home .bot-live-dot {
  background: var(--color-teal);
  box-shadow: 0 0 0 5px rgba(19, 184, 166, 0.13);
}

.public-home .hero-points svg {
  color: var(--color-navy);
  background: var(--color-teal);
}

.public-home .hero-note {
  align-items: center;
  gap: 11px;
  width: min(390px, calc(100% - 24px));
  padding: 12px 14px;
  border: 1px solid rgba(215, 228, 237, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 15px 34px rgba(1, 13, 25, 0.16);
}

.public-home .hero-note .hero-note-icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--color-primary);
  border-radius: 11px;
  background: var(--color-surface-soft);
}

.public-home .hero-note .hero-note-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.public-home .hero-note p {
  color: var(--color-text);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

@media (min-width: 861px) and (max-width: 1100px) {
  .public-home .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;
  }
}

.public-home .services {
  background: var(--color-surface);
}

.public-home .section-number,
.public-home .table-kicker,
.public-home .service-label {
  color: var(--color-primary);
}

.public-home .service-card,
.public-home .price-table-wrap,
.public-home .solution-card,
.public-home .calculator-form,
.public-home .calculator-result,
.public-home .request-form,
.public-home .callback-form {
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.public-home .service-card {
  background: var(--color-surface);
}

.public-home .service-card:hover,
.public-home .solution-card:hover {
  border-color: rgba(8, 123, 255, 0.42);
  box-shadow: var(--shadow-md);
}

.public-home .service-card-featured {
  color: var(--color-surface);
  border-color: rgba(43, 191, 239, 0.2);
  background:
    radial-gradient(circle at 100% 0%, rgba(43, 191, 239, 0.2), transparent 36%),
    linear-gradient(145deg, var(--color-navy), var(--color-navy-secondary));
}

.public-home .service-card-featured:hover {
  background:
    radial-gradient(circle at 100% 0%, rgba(43, 191, 239, 0.26), transparent 38%),
    linear-gradient(145deg, var(--color-navy), #0c2e4b);
}

.public-home .service-icon {
  color: var(--color-primary);
  background: var(--color-surface-soft);
}

.public-home .service-card-featured .service-icon {
  color: var(--color-navy);
  background: var(--color-teal);
}

.public-home .service-card-maintenance {
  background: linear-gradient(145deg, #ecfbf8, var(--color-surface));
}

.public-home .service-price strong {
  color: var(--color-text);
  font-size: 18px;
}

.public-home .service-card-featured .service-price strong {
  color: var(--color-surface);
}

.public-home .service-detail {
  color: var(--color-primary-hover);
}

.public-home .price-table-wrap {
  background: var(--color-surface);
}

.public-home .use-cases {
  background: var(--color-surface-soft);
}

.public-home .solution-card {
  background: var(--color-surface);
}

.public-home .solution-card-accent {
  border-color: rgba(19, 184, 166, 0.34);
  background: linear-gradient(155deg, #e8fbf8, var(--color-surface) 75%);
}

.public-home .solution-card .case-tag {
  color: var(--color-primary-hover);
  background: rgba(8, 123, 255, 0.09);
}

.public-home .solution-card li {
  color: #2e475a;
}

.public-home .solution-card li::before {
  background: var(--color-teal);
}

.public-home .solution-card > div a {
  color: var(--color-primary-hover);
}

.public-home .calculators {
  background: var(--color-surface);
}

.public-home .calculator-layout {
  padding: clamp(14px, 2vw, 24px);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(43, 191, 239, 0.12), transparent 30%),
    var(--color-surface-soft);
}

.public-home .calculator-form,
.public-home .calculator-result {
  background: var(--color-surface);
}

.public-home .calculator-title,
.public-home .calculator-result-head {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
}

.public-home .calculator-form label > span {
  color: var(--color-muted);
}

.public-home :is(.calculator-form, .request-form) :is(input:not([type="checkbox"]), textarea, select),
.public-home .callback-form input[type="tel"] {
  color: var(--color-text);
  border-color: var(--color-border);
  background: var(--color-surface);
}

.public-home :is(.calculator-form, .request-form) :is(input:not([type="checkbox"]), textarea, select):focus,
.public-home .callback-form input[type="tel"]:focus {
  outline: 0;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(8, 123, 255, 0.13);
}

.public-home .process {
  color: var(--color-surface);
  background:
    radial-gradient(circle at 8% 10%, rgba(43, 191, 239, 0.13), transparent 28%),
    linear-gradient(125deg, var(--color-navy), var(--color-navy-secondary));
}

.public-home .process .section-heading :is(h2, p),
.public-home .process-item h3 {
  color: var(--color-surface);
}

.public-home .process .section-heading p,
.public-home .process-item p {
  color: #aec2d1;
}

.public-home .process .section-number,
.public-home .process-number {
  color: var(--color-cyan);
}

.public-home .process-icon {
  color: var(--color-navy);
  border-color: rgba(43, 191, 239, 0.28);
  background: var(--color-teal);
  box-shadow: 0 12px 30px rgba(1, 13, 25, 0.24);
}

.public-home .process-icon svg {
  stroke: currentColor;
}

.public-home .process-list::before {
  background: rgba(255, 255, 255, 0.16);
}

.public-home .why-us {
  padding-top: 88px;
  color: var(--color-text);
  background: var(--color-surface);
}

.public-home .why-us .section-heading h2 {
  color: var(--color-text);
}

.public-home .why-grid {
  border-color: rgba(43, 191, 239, 0.18);
  background:
    radial-gradient(circle at 0% 100%, rgba(43, 191, 239, 0.16), transparent 36%),
    var(--color-navy);
  box-shadow: var(--shadow-md);
}

.public-home .why-profile :is(span, strong),
.public-home .benefit-card > strong,
.public-home .warranty-card > span,
.public-home .warranty-card a {
  color: var(--color-teal);
}

.public-home .warranty-card {
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
}

.public-home .warranty-card > span {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.public-home .warranty-card h3 {
  grid-column: 2;
  grid-row: 1;
}

.public-home .warranty-card p {
  grid-column: 2;
  grid-row: 2;
}

.public-home .warranty-card a {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.public-home .benefit-card {
  background: rgba(255, 255, 255, 0.025);
}

.public-home .benefit-card:hover {
  background: rgba(43, 191, 239, 0.075);
}

.public-home .faq {
  background: var(--color-surface-soft);
}

.public-home .faq-list {
  display: grid;
  gap: 10px;
  border: 0;
}

.public-home .faq-list details {
  padding: 0 22px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-surface);
  box-shadow: 0 8px 24px rgba(7, 26, 45, 0.035);
}

.public-home .faq-list details[open] {
  border-color: rgba(8, 123, 255, 0.38);
  box-shadow: 0 12px 30px rgba(8, 123, 255, 0.08);
}

.public-home .faq-list details[open] summary {
  color: var(--color-primary-hover);
}

.public-home .faq-list summary span {
  border-color: var(--color-border);
  background: var(--color-surface-soft);
}

.public-home .request {
  background: linear-gradient(180deg, var(--color-surface-soft), var(--color-bg));
}

.public-home .request-shell {
  border: 1px solid rgba(43, 191, 239, 0.16);
  background:
    radial-gradient(circle at 0% 100%, rgba(19, 184, 166, 0.14), transparent 36%),
    linear-gradient(140deg, var(--color-navy), var(--color-navy-secondary));
  box-shadow: var(--shadow-md);
}

.public-home .request-copy > p,
.public-home .callback-form > p {
  color: #b7c9d7;
}

.public-home .contact-icon {
  background: var(--color-cyan);
}

.public-home .contact-icon-telegram,
.public-home .callback-form button {
  background: var(--color-teal);
}

.public-home .telegram-compact-cta {
  border-color: rgba(19, 184, 166, 0.32);
  background: rgba(19, 184, 166, 0.1);
}

.public-home .telegram-compact-cta strong {
  color: var(--color-surface);
}

.public-home .telegram-compact-cta p {
  color: #b7c9d7;
}

.public-home .telegram-compact-cta a {
  color: #69dfd1;
}

.public-home .callback-form {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.public-home .callback-form input[type="tel"] {
  color: var(--color-surface);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.public-home .request-form {
  color: var(--color-text);
  background: var(--color-surface);
}

.public-home .file-upload {
  border-color: rgba(8, 123, 255, 0.36);
  background: var(--color-surface-soft);
}

.public-home .file-upload > strong,
.public-home :is(.consent, .callback-consent) a {
  color: var(--color-primary-hover);
}

.public-home .file-upload > strong::before {
  background: var(--color-primary);
}

.public-home .result-check {
  background: var(--color-success);
}

.public-home .site-footer {
  color: var(--color-surface);
  background: var(--color-navy);
}

.public-home .brand-light .brand-mark {
  color: var(--color-navy);
  background: linear-gradient(135deg, var(--color-cyan), var(--color-teal));
}

.public-home .footer-column a:hover {
  color: #64d8ca !important;
}

.public-home .mobile-action-bar {
  background: rgba(7, 26, 45, 0.96);
}

.public-home .mobile-action-bar a:first-child {
  background: var(--color-teal);
}

.public-home .mobile-action-bar a:last-child {
  background: var(--color-primary);
}

@media (max-width: 860px) {
  .public-home .main-nav {
    color: var(--color-surface);
    background: var(--color-navy);
  }

  .public-home :is(.nav-phone-link, .nav-bot-link) {
    display: block;
  }

  .public-home .hero-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .public-home .hero {
    min-height: auto;
  }

  .public-home .hero-visual {
    opacity: 0.9;
  }
}

@media (max-width: 620px) {
  .public-home .hero h1 {
    font-size: clamp(26px, 7.4vw, 34px);
    line-height: 1.12;
  }

  .public-home .hero-title-nowrap {
    font-size: 0.9em;
  }

  .public-home .hero-visual {
    opacity: 0.78;
  }

  .public-home .calculator-layout {
    padding: 10px;
    border-radius: 22px;
  }

  .public-home .faq-list details {
    padding-inline: 16px;
  }

  .public-home .faq-list summary {
    min-height: 72px;
  }

  .public-home .warranty-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .public-home .warranty-card > :is(span, h3, p, a) {
    grid-column: auto;
    grid-row: auto;
  }
}
