:root {
  --color-brand: #8B5CF6;
  --color-brand-dark: #7C3AED;
  --color-brand-soft: #1E1B4B;
  --color-brand-muted: #4C1D95;
  --color-bg: #0B0F1A;
  --color-surface: #131929;
  --color-surface-alt: #1E2840;
  --color-border: #1E2D45;
  --color-text: #EEF2FF;
  --color-text-muted: #94A3B8;
  --color-dark: #070B14;
  --color-dark-soft: #0D1220;
  --color-success: #34D399;
  --color-success-soft: #0A2218;
  --color-warning: #FBBF24;
  --color-warning-soft: #1C1500;
  --color-error: #F87171;
  --color-error-soft: #2A1010;
  --rgb-brand: 139, 92, 246;

  --font-display: "Montserrat", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;

  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;

  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 28px;
  --r-full: 999px;

  --shadow-xs: 0 1px 2px rgba(7, 11, 20, 0.4);
  --shadow-sm: 0 6px 18px rgba(7, 11, 20, 0.5);
  --shadow-md: 0 16px 36px rgba(7, 11, 20, 0.55);
  --shadow-lg: 0 26px 60px rgba(7, 11, 20, 0.6);
  --shadow-brand: 0 14px 32px rgba(var(--rgb-brand), 0.35);

  --transition-fast: 150ms ease;
  --transition-base: 260ms ease;
  --transition-slow: 460ms ease;
  --container-max: 1180px;
  --container-pad: clamp(16px, 5vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(var(--rgb-brand), 0.4);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: var(--sp-3);
  left: var(--sp-3);
  z-index: 1000;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: var(--shadow-md);
  transform: translateY(-120%);
  transition: transform var(--transition-fast);
}

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

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

.section {
  padding: clamp(64px, 9vw, 112px) 0;
}

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

.section--dark {
  background: var(--color-dark);
  color: var(--color-text);
}

.section__header {
  max-width: 720px;
  margin-bottom: var(--sp-10);
}
.screens .section__title,
.screens .section__header,
.features .section__title,
.features .section__header{
  max-width: 100%;
}
.value .section__title{
  max-width:900px;
}
.value .section__header{
  max-width: 100%;
}
.screens .section__subtitle{
  max-width:700px;
}
.section__header--center {
  margin-inline: auto;
  text-align: center;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin: 0 0 var(--sp-3);
  color: var(--color-brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section__label::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--color-brand);
}

.section__label--dark {
  color: #8b5bf6;
}

.section__label--dark::before {
  background: var(--color-brand-muted);
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.section__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.section__title {
  max-width: 760px;
  font-size: clamp(34px, 5vw, 40px);
}

.section__title--dark {
  color: var(--color-text);
}

.section__subtitle {
  margin: var(--sp-4) 0 0;
  max-width: 680px;
  color: var(--color-text-muted);
  font-size: clamp(15px, 2vw, 16px);
}

.section__subtitle--dark {
  color: rgba(238, 242, 255, 0.66);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 15, 26, 0.92);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(16px);
  transition: box-shadow var(--transition-base), background var(--transition-base);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 13px;
  
}
.logo_text{
  color: #fff !important;
}
.logo_text span {
    font-size: 12px;
    font-weight: 400;
}

.logo__mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--color-brand);
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  box-shadow: var(--shadow-brand);
}

.logo__text {
  min-width: 0;
  display: grid;
  line-height: 1.2;
}

.logo__name {
  font-weight: 800;
}

.logo__sub {
  color: var(--color-text-muted);
  font-size: 11px;
  white-space: nowrap;
}

.nav {
  margin-left: auto;
}

.nav__list {
  display: none;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
}

.nav__link {
  position: relative;
  color: #cacaca;
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: var(--r-full);
  background: var(--color-brand);
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.nav__link:hover,
.nav__link.is-active {
  color: #8b5bf6;
}

.nav__link:hover::after,
.nav__link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header__cta {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 var(--sp-5);
  border-radius: var(--r-full);
  background: var(--color-brand);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  /* box-shadow: var(--shadow-brand); */
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.header__cta:hover {
  background: var(--color-brand-dark);
  transform: translateY(-1px);
}

.burger {
  width: 44px;
  height: 44px;
  margin-left: auto;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--color-border);
  border-radius: var(--r-full);
  background: var(--color-surface);
}

.burger span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: var(--r-full);
  background: var(--color-text);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 74px 16px auto;
  z-index: 90;
  padding: var(--sp-3);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base);
}

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

.mobile-nav__list {
  display: grid;
  gap: var(--sp-1);
}

.mobile-nav .nav__link {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
}

.mobile-nav .nav__link:hover,
.mobile-nav .nav__link.is-active {
  background: var(--color-brand-soft);
}

.hero {
  position: relative;
  min-height: calc(80vh - 80px);
  display: flex;
  align-items: center;
  padding-top: clamp(56px, 8vw, 57px);
  padding-bottom: clamp(56px, 8vw, 2px);
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.15;
  z-index: 0;
}

.hero__orb--1 {
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  background: var(--color-brand);
  top: -120px;
  right: -80px;
  animation: orb-drift 24s ease-in-out infinite;
}

.hero__orb--2 {
  width: clamp(200px, 30vw, 400px);
  height: clamp(200px, 30vw, 400px);
  background: var(--color-brand);
  bottom: -60px;
  left: -60px;
  animation: orb-drift 20s ease-in-out infinite 4s;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 680px;
}

.hero__title {
  margin-top: var(--sp-3);
  color: var(--color-text);
  font-size: clamp(44px, 10vw, 50px);
}

.hero__subtitle {
  max-width: 600px;
  margin: var(--sp-5) 0 0;
  color: rgba(238, 242, 255, 0.72);
  font-size: clamp(16px, 2vw, 15px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0 var(--sp-6);
  border: 1px solid transparent;
  border-radius: var(--r-full);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--color-brand);
  color: var(--color-text);
  /* box-shadow: var(--shadow-brand); */
}

.btn--primary:hover {
  background: var(--color-brand-dark);
}

.btn--ghost-dark {
  border-color: rgba(238, 242, 255, 0.18);
  color: rgba(238, 242, 255, 0.78);
  background: rgba(238, 242, 255, 0.05);
}

.btn--ghost-dark:hover {
  border-color: rgba(238, 242, 255, 0.34);
  color: var(--color-text);
}

.btn--outline {
  border-color: var(--color-brand);
  color: var(--color-brand);
  background: transparent;
}

.btn--outline:hover {
  background: var(--color-brand-soft);
}

.btn--full {
  width: 100%;
}

.hero__metrics {
  display: grid;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}

.metric {
  padding: var(--sp-4);
  border: 1px solid rgba(238, 242, 255, 0.1);
  border-radius: var(--r-lg);
  background: rgba(238, 242, 255, 0.06);
}

.metric__icon {
  display: none;
  margin-bottom: var(--sp-2);
  font-size: 25px;
}

.metric__value {
  display: block;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.metric__label {
  display: block;
  margin-top: var(--sp-1);
  color: rgba(238, 242, 255, 0.52);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__phones {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 540px;
}

.hero-phone-wrap {
  position: absolute;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.hero-phone-wrap--left {
  z-index: 1;
  left: 0;
  top: 60px;
  transform: translateX(20px) scale(0.85) rotate(-10deg);
}

.hero-phone-wrap--right {
  z-index: 1;
  right: 0;
  top: 60px;
  transform: translateX(-20px) scale(0.85) rotate(10deg);
}

.hero-phone-wrap--center {
  z-index: 5;
  left: 50%;
  top: 20px;
  transform: translateX(-50%) scale(1);
}

.hero__phones:hover .hero-phone-wrap--left {
  transform: translateX(-10px) scale(0.9) rotate(-15deg);
}

.hero__phones:hover .hero-phone-wrap--right {
  transform: translateX(10px) scale(0.9) rotate(15deg);
}

.hero__phones:hover .hero-phone-wrap--center {
  transform: translateX(-50%) scale(1.04);
}

.hero-phone {
  background: #070B14;
  border: 6px solid #1E2D45;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0,0,0,0.6);
  width: 200px;
  height: 430px;
}

.hero-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__badges {
  position: absolute;
  inset: auto 0 var(--sp-4) 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-lg);
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: var(--shadow-lg);
  font-size: 12px;
  font-weight: 800;
}

.hero-badge small {
  display: block;
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 700;
}

.hero-badge--1 {
  top: 10%;
  left: -20px;
  animation: badge-float 7s ease-in-out infinite;
}

.hero-badge--2 {
  bottom: 20%;
  right: -20px;
  animation: badge-float 7s ease-in-out infinite 1s;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.phone {
  width: min(248px, 74vw);
  height: min(496px, 148vw);
  padding: 10px;
  border: 1px solid rgba(238, 242, 255, 0.1);
  border-radius: 25px;
  background: var(--color-dark-soft);
  box-shadow: var(--shadow-lg);
}

.screens-grid .phone {
  width: 210px;
  height: 420px;
  max-width: 100%;
}

.phone__screen {
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  background: var(--color-bg);
}

.phone__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone__body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
}

.phone__home {
  width: 72px;
  height: 4px;
  margin: -16px auto 0;
  border-radius: var(--r-full);
  background: rgba(238, 242, 255, 0.26);
}

.fancybox__content {
  padding: 0 !important;
  background: transparent !important;
  overflow: visible !important;
}

.mobile-demo-frame {
  transform: translateZ(0);
  will-change: transform, opacity;
  backface-visibility: hidden;
  width: 440px;
  height: 760px;
  max-width: 95vw;
  max-height: 90vh;
  background: #070B14;
  border-radius: 34px;
  padding: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(238,242,255,0.06);
}

.mobile-demo-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 26px;
  background: #0B0F1A;
}

@media (max-height: 820px) {
  .mobile-demo-frame {
    height: 84vh;
    width: calc(84vh * 0.51);
  }
}

.fancybox__button--close {
  top: 16px !important;
  right: 16px !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: rgba(238,242,255,0.08) !important;
  backdrop-filter: blur(10px);
}

.value-grid {
  display: grid;
  gap: var(--sp-4);
}

.value-card,
.feature-card,
.demo-card {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.value-card {
  padding: 27px 25px;
  border-radius: var(--r-xl);
}

.value-card__icon,
.feature-card__icon {
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  margin-bottom: var(--sp-4);
  border-radius: var(--r-md);
  background: var(--color-brand-soft);
  color: var(--color-brand);
  font-size: 30px;
}
.feature-card__icon img{
  width: 30px;
  height: 30px;
}
.value-card h3,
.feature-card h3,
.demo-card h3,
.success-message h3 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.1;
  font-weight: 400;
}

.value-card p,
.feature-card p,
.demo-card p {
  margin: var(--sp-3) 0 0;
  color: #b2bbc7;
  font-size: 14px;
}
.value-card p{
  margin-top: 9px;
}
.demo-card p{
  margin-bottom:20px;
}
.feature-card p{
  margin-top: 8px;
}

.features-grid {
  display: grid;
  gap: var(--sp-4);
}

.feature-card {
  min-height: 100%;
  padding: 28px 22px;
  padding-bottom: 31px !important;
  border-radius: var(--r-xl);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-brand-muted);
  box-shadow: var(--shadow-md);
}

.screens-grid {
  display: grid;
  justify-items: center;
  gap: var(--sp-8);
}

.screen-card {
  width: min(100%, 300px);
  display: grid;
  justify-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5);
  border-radius: var(--r-2xl);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.screen-card__num {
  display: inline-flex;
  padding: 4px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--r-full);
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.screen-card__caption {
  max-width: 220px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 13px;
  text-align: center;
}

.demo-card {
  width: min(100%, 540px);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
  border-radius: var(--r-2xl);
  text-align: center;
}

.demo-card__icon {
  width: 98px;
  height: 98px;
  margin: 0 auto var(--sp-5);
  display: grid;
  place-items: center;
  border: 1px solid var(--color-brand-muted);
  border-radius: var(--r-xl);
  background: var(--color-brand-soft);
  color: var(--color-brand);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.demo-card__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  display: none;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}

.demo-chip {
  padding: 6px 10px;
  border: 1px solid var(--color-brand-muted);
  border-radius: var(--r-full);
  background: var(--color-brand-soft);
  color: var(--color-brand);
  font-size: 12px;
  font-weight: 800;
}

.demo-card__hint {
  margin-top: var(--sp-5);
  padding: var(--sp-3) 0 0;
  display: none;
  border: 0;
  border-top: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-brand);
  font-size: 14px;
  font-weight: 800;
}

.process-list {
  display: grid;
  gap: var(--sp-4);
}

.process-step {
  padding: var(--sp-5);
  border: 1px solid rgba(238, 242, 255, 0.1);
  border-radius: var(--r-xl);
  background: rgba(238, 242, 255, 0.05);
}

.process-step__num {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: var(--sp-4);
  border-radius: 50%;
  border: 1px solid #8b5bf6;
  color: #8b5bf6;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

.process-step h3 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.1;
  font-weight: 500;
}

.process-step p {
  margin: var(--sp-3) 0 0;
  color: rgba(238, 242, 255, 0.62);
  font-size: 14px;
}

.contact__grid {
  display: grid;
  gap: var(--sp-10);
  align-items: start;
}

.contact-items {
  display: grid;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  border: 1px solid rgba(238, 242, 255, 0.1);
  border-radius: var(--r-lg);
  background: rgba(238, 242, 255, 0.05);
}

.contact-item__icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: rgba(238, 242, 255, 0.08);
}

.contact-item__label {
  display: block;
  color: rgba(238, 242, 255, 0.45);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item__value {
  color: var(--color-text);
  font-weight: 500;
}

.contact__panel {
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid rgba(238, 242, 255, 0.1);
  border-radius: var(--r-2xl);
  background: rgba(238, 242, 255, 0.06);
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: grid;
  gap: var(--sp-4);
}

.form-field {
  display: grid;
  gap: var(--sp-2);
}

.form-field label {
  color: rgba(238, 242, 255, 0.68);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(238, 242, 255, 0.14);
  border-radius: var(--r-lg);
  background: rgba(238, 242, 255, 0.08);
  color: var(--color-text);
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(238, 242, 255, 0.34);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-brand-muted);
  background: rgba(238, 242, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(var(--rgb-brand), 0.2);
}

.form-field.has-error input,
.form-field.has-error textarea {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.22);
}

.form-error {
  display: none;
  margin: 0;
  color: var(--color-error-soft);
  font-size: 12px;
}

.form-field.has-error .form-error {
  display: block;
}

.btn.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.success-message {
  display: grid;
  justify-items: center;
  gap: var(--sp-3);
  padding: var(--sp-8);
  border: 1px solid rgba(var(--rgb-brand), 0.4);
  border-radius: var(--r-xl);
  background: rgba(var(--rgb-brand), 0.12);
  text-align: center;
}

.success-message[hidden] {
  display: none;
}

.success-message__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-success-soft);
  color: var(--color-success);
  font-size: 24px;
  font-weight: 900;
}

.success-message h3 {
  color: var(--color-text);
}

.success-message p {
  margin: 0;
  color: rgba(238, 242, 255, 0.68);
}

.site-footer {
  padding: var(--sp-8) 0;
  background: var(--color-dark-soft);
  color: rgba(238, 242, 255, 0.7);
}

.footer__inner {
  display: grid;
  gap: var(--sp-5);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

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

.footer__brand strong {
  color: var(--color-text);
}

.footer__brand small {
  color: rgba(238, 242, 255, 0.48);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-5);
}

.footer__nav a {
  color: rgba(238, 242, 255, 0.58);
  font-size: 14px;
  font-weight: 500;
}

.footer__nav a:hover {
  color: var(--color-text);
}

.footer__copy {
  margin: 0;
  color: rgba(238, 242, 255, 0.42);
  font-size: 13px;
}

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (min-width: 560px) {
  .hero__metrics,
  .value-grid,
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  .nav__list {
    display: flex;
  }
  .header__cta {
    display: inline-flex;
  }
  .burger,
  .mobile-nav {
    display: none;
  }
  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  }
  .hero__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .screens-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  }
  .footer__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .footer__copy {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .value-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .screens-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .process-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .footer__inner {
    grid-template-columns: auto 1fr auto;
  }
  .footer__nav {
    justify-content: center;
  }
  .footer__copy {
    grid-column: auto;
    text-align: right;
  }
}

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__subtitle {
    margin-inline: auto;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__metrics {
    justify-content: center;
  }
  .hero__phones {
    margin-top: 40px;
  }
}

@media (max-width: 776px) {
  .hero__orb {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .hero-phone-wrap--left,
  .hero-phone-wrap--right {
    display: none;
  }
  .hero-badge {
    display: none;
  }
  .hero__phones {
    height: 480px;
  }
  .hero-phone-wrap--center {
    top: 0;
  }
  .hero-phone {
    width: 220px;
    height: 460px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, var(--container-max));
  }
  .section {
    padding: 56px 0;
  }
  .header__inner {
    min-height: 68px;
  }
  .logo__sub {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hero {
    min-height: auto;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .hero__visual {
    min-height: 420px;
  }
  .hero__badges {
    position: static;
    margin-top: var(--sp-4);
  }
  .screens-grid .phone {
    width: 190px;
    height: 380px;
  }
}


/* ==========================================================================
   DETAILING.KG v2 — Mobile Adaptive CSS
   Breakpoints: 1024 / 998 / 767 / 660 / 515 / 480 / 380
   Подключается ПОСЛЕ style.css
   ========================================================================== */

/* ─── 1024px ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .section {
    padding: 56px 0;
  }

  .hero {
    padding-top: 56px;
    padding-bottom: 56px;
    min-height: auto;
  }

  .hero__title {
    font-size: clamp(34px, 5.5vw, 48px);
  }

  .hero__eyebrow {
    font-size: 11px;
  }

  .section__title {
    font-size: clamp(28px, 4vw, 38px);
  }

  .hero__subtitle {
    font-size: 15px;
  }

  .section__subtitle {
    font-size: 14px;
  }

  .hero__phones {
    width: 380px;
    height: 440px;
  }

  .hero-phone img {
    width: 170px;
    height: 360px;
  }

  .feature-card h3,
  .value-card h3,
  .demo-card h3 {
    font-size: 15px;
  }

  .process-step h3 {
    font-size: 16px;
  }

  .feature-card,
  .value-card,
  .process-step {
    padding: 20px;
  }

  .btn {
    min-height: 48px;
    font-size: 14px;
  }

  .contact__panel {
    padding: 26px;
  }

  .screens-grid .phone {
    width: 190px;
    height: 380px;
  }
}

/* ─── 998px ──────────────────────────────────────────────── */
@media (max-width: 998px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .hero__content {
    margin: 0 auto;
    max-width: 640px;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__mockup {
    margin-top: 16px;
  }

  .hero__title {
    font-size: 40px;
  }

  .section__title {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 15px;
    max-width: 100%;
  }

  .section__subtitle {
    font-size: 14px;
  }

  .hero__phones {
    width: 360px;
    height: 420px;
  }

  .hero-phone img {
    width: 160px;
    height: 340px;
  }

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

  .features-grid > * {
    grid-column: auto !important;
  }

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

  .value-grid > * {
    grid-column: auto !important;
  }

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

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

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .section {
    padding: 52px 0;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .footer__nav {
    justify-content: center;
  }
}

/* ─── 767px ──────────────────────────────────────────────── */
@media (max-width: 767px) {
  .hero__title {
    font-size: 34px;
  }

  .hero__eyebrow {
    font-size: 11px;
  }

  .section__title {
    font-size: 28px;
  }

  .hero__subtitle {
    font-size: 14px;
    max-width: 100%;
  }

  .section__subtitle {
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 44px;
  }

  .hero__phones {
    width: 340px;
    height: 400px;
  }

  .hero-phone img {
    width: 150px;
    height: 320px;
  }

  .hero__metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 32px;
  }

  .metric {
    padding: 12px;
  }

  .metric__value {
    font-size: 16px;
  }

  .metric__label {
    font-size: 9px;
  }

  .screens-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .feature-card h3,
  .value-card h3,
  .demo-card h3 {
    font-size: 15px;
  }

  .feature-card,
  .value-card,
  .process-step {
    padding: 20px;
  }

  .process-step h3 {
    font-size: 16px;
  }

  .contact__panel {
    padding: 24px;
  }

  .btn {
    min-height: 46px;
    font-size: 13px;
  }

  .section {
    padding: 48px 0;
  }

  .container {
    width: min(100% - 28px, var(--container-max));
  }

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

  .demo-card__icon {
    width: 80px;
    height: 80px;
    font-size: 12px;
  }
}

/* ─── 660px ──────────────────────────────────────────────── */
@media (max-width: 660px) {
  .hero__title {
    font-size: 32px;
  }

  .section__title {
    font-size: 26px;
  }

  .hero__subtitle {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .section__subtitle {
    font-size: 13px;
  }

  .hero__actions {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero__metrics {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    margin-top: 28px;
  }

  .metric {
    padding: 14px 16px;
    border-radius: 16px;
    flex: 1;
    min-width: 0;
    max-width: 140px;
  }

  .metric__icon {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
  }

  .metric__value {
    font-size: 16px;
  }

  .metric__label {
    font-size: 9px;
  }

  .hero__phones {
    width: 320px;
    height: 380px;
  }

  .hero-phone img {
    width: 140px;
    height: 300px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .feature-card,
  .value-card,
  .process-step {
    padding: 18px;
    border-radius: 16px;
  }

  .feature-card h3,
  .value-card h3 {
    font-size: 15px;
  }

  .process-step h3 {
    font-size: 16px;
  }

  .feature-card p,
  .value-card p,
  .process-step p {
    font-size: 13px;
  }

  .screens-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .screen-card {
    max-width: 100%;
    padding: 16px;
  }

  .screens-grid .phone {
    width: 170px;
    height: 340px;
  }

  .demo-card {
    padding: 26px 20px;
  }

  .demo-card__icon {
    width: 72px;
    height: 72px;
  }

  .contact__panel {
    padding: 22px;
  }

  .form-field input,
  .form-field textarea {
    padding: 12px 14px;
    font-size: 15px;
  }

  .section {
    padding: 44px 0;
  }

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

/* ─── 515px ──────────────────────────────────────────────── */
@media (max-width: 515px) {
  .hero__mockup {
    display: none !important;
  }
  .screens-grid,
  .process-list,
  .value-grid,
  .features-grid {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 14px;
    }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  .hero__title {
    font-size: 30px;
    line-height: 1.08;
  }

  .hero__eyebrow {
    font-size: 10px;
    margin-bottom: 12px;
  }

  .section__title {
    font-size: 26px;
    line-height: 1.1;
  }

  .hero__subtitle {
    font-size: 14px;
    line-height: 1.5;
    max-width: 100%;
    margin-bottom: 24px;
  }

  .section__subtitle {
    font-size: 13px;
    line-height: 1.5;
  }

  .value-card h3,
  .feature-card h3,
  .demo-card h3 {
    font-size: 18px;
  }

  .process-step h3 {
    font-size: 18px;
  }

  .hero {
    min-height: auto;
    padding: 90px 0 52px;
  }

  .hero__orb {
    display: none !important;
  }

  .hero__actions {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 48px;
    font-size: 14px;
  }

  .hero__metrics {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    margin-top: 28px;
  }

  .metric {
    padding: 14px 16px;
    border-radius: 16px;
    flex: 1;
    min-width: 0;
    max-width: 140px;
  }

  .metric__icon {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
  }

  .metric__value {
    font-size: 14px;
    line-height: 1.2;
  }

  .metric__label {
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .section {
    padding: 44px 0;
  }

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

  .section__header {
    margin-bottom: 32px;
  }

  .value-card,
  .feature-card,
  .process-step {
    padding: 20px;
    border-radius: 16px;
  }

  .value-card__icon,
  .feature-card__icon {
    width: 52px;
    height: 52px;
    font-size: 24px;
    margin-bottom: 16px;
  }

  .value-card p,
  .feature-card p,
  .process-step p {
    font-size: 13px;
  }

  .process-step__num {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .screen-card {
    padding: 14px;
    width: min(100%, 260px);
  }

  .screens-grid .phone {
    width: 181px;
    height: 377px;
  }

  .demo-card {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .demo-card__icon {
    width: 68px;
    height: 68px;
    font-size: 12px;
  }

  .demo-card__chips {
    gap: 6px;
  }

  .demo-chip {
    font-size: 11px;
    padding: 5px 8px;
  }

  .contact__panel {
    padding: 20px;
    border-radius: 20px;
  }

  .form-field input,
  .form-field textarea {
    padding: 12px 14px;
    font-size: 15px;
  }

  .contact-item {
    padding: 12px;
  }

  .contact-item__icon {
    width: 36px;
    height: 36px;
  }

  .header__inner {
    min-height: 66px;
  }

  .logo__mark {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .logo__sub {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .burger {
    width: 40px;
    height: 40px;
  }

  .burger span {
    width: 16px;
  }

  .mobile-nav {
    inset: 66px 12px auto;
    border-radius: 16px;
  }

  .footer__inner {
    gap: 20px;
  }

  .footer__brand {
    justify-content: center;
  }

  .footer__nav {
    gap: 8px 16px;
  }

  .footer__nav a {
    font-size: 13px;
  }

  .footer__copy {
    font-size: 12px;
  }
}

/* ─── 480px ──────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero__title {
    font-size: 26px;
    line-height: 1.1;
    text-align: left;
  }

  .hero__eyebrow {
    font-size: 10px;
    text-align: left;
  }

  .section__title {
    font-size: 24px;
    line-height: 1.12;
  }

  .hero__subtitle {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: left;
  }

  .section__subtitle {
    font-size: 13px;
  }

  .value-card h3,
  .feature-card h3,
  .demo-card h3 {
    font-size: 17px;
  }

  .process-step h3 {
    font-size: 17px;
  }

  .hero {
    padding: 80px 0 44px;
  }

  .hero__actions {
    margin-bottom: 24px;
    width: 100%;
  }

  .hero__actions .btn {
    min-height: 46px;
    font-size: 13px;
  }

  .hero__metrics {
    display: none;
  }

  .metric {
    padding: 12px 14px;
    border-radius: 14px;
    max-width: 120px;
  }

  .metric__icon {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .metric__value {
    font-size: 13px;
  }

  .metric__label {
    font-size: 8px;
  }

  .section {
    padding: 40px 12px;
  }

  .container {
    width: min(100% - 20px, var(--container-max));
  }

  .section__header {
    margin-bottom: 28px;
  }

  .value-card,
  .feature-card,
  .process-step {
    padding: 23px 28px;
    border-radius: 14px;
  }

  .value-card__icon,
  .feature-card__icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
    margin-bottom: 14px;
  }

  .value-card p,
  .feature-card p,
  .process-step p {
    font-size: 13px;
  }

  .process-step__num {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin-bottom: 14px;
  }

  .screen-card {
    padding: 12px;
    width: min(100%, 240px);
  }

  .screens-grid .phone {
    width: 150px;
    height: 300px;
  }

  .screen-card__caption {
    font-size: 12px;
  }

  .demo-card {
    padding: 22px 16px;
  }

  .demo-card__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .demo-card p {
    font-size: 13px;
  }

  .demo-card__chips {
    margin-top: 20px;
  }

  .demo-chip {
    font-size: 10px;
    padding: 4px 8px;
  }

  .contact__panel {
    padding: 18px;
    border-radius: 16px;
  }

  .form-field label {
    font-size: 11px;
    display: none;
  }

  .form-field input,
  .form-field textarea {
    padding: 11px 12px;
    border-radius: 14px;
    font-size: 15px;
  }

  .btn {
    min-height: 46px;
  }

  .success-message {
    padding: 32px 24px;
  }

  .success-message__icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .success-message h3 {
    font-size: 18px;
  }

  .success-message p {
    font-size: 14px;
  }

  .contact-item {
    padding: 12px;
  }

  .contact-item__icon {
    width: 34px;
    height: 34px;
  }

  .contact-item__label {
    font-size: 10px;
  }

  .contact-item__value {
    font-size: 14px;
  }

  .header__inner {
    min-height: 62px;
    gap: 12px;
  }

  .logo__mark {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .logo__name {
    font-size: 15px;
  }

  .logo__sub {
    font-size: 10px;
    max-width: 160px;
  }

  .burger {
    width: 38px;
    height: 38px;
  }

  .mobile-nav {
    inset: 62px 10px auto;
    padding: 8px;
  }

  .mobile-nav .nav__link {
    padding: 8px 12px;
    font-size: 13px;
  }

  .site-footer {
    padding: 32px 0;
  }

  .footer__brand {
    gap: 10px;
  }

  .footer__nav {
    gap: 8px 12px;
  }

  .footer__nav a {
    font-size: 12px;
  }

  .footer__copy {
    font-size: 11px;
  }
}

/* ─── 380px ──────────────────────────────────────────────── */
@media (max-width: 380px) {
  .hero__title {
    font-size: 24px;
    line-height: 1.12;
  }
  .section__title br{
    display:none;
  }

  .hero__eyebrow {
    font-size: 9px;
    margin-bottom: 10px;
  }

  .section__title {
    font-size: 22px;
    line-height: 1.15;
  }

  .hero__subtitle {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .section__subtitle {
    font-size: 12px;
    line-height: 1.5;
  }

  .value-card h3,
  .feature-card h3,
  .demo-card h3 {
    font-size: 16px;
  }

  .process-step h3 {
    font-size: 16px;
  }

  .hero {
    padding: 72px 0 40px;
  }

  .hero__actions {
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero__actions .btn {
    min-height: 44px;
    font-size: 12px;
    padding: 0 16px;
  }

  .hero__metrics {
    display: none;
    flex-wrap: wrap;
    gap: 6px;
  }

  .metric {
    padding: 10px 12px;
    border-radius: 12px;
    flex: 1 1 calc(50% - 3px);
    max-width: none;
  }

  .metric__icon {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .metric__value {
    font-size: 12px;
    line-height: 1.2;
  }

  .metric__label {
    font-size: 8px;
    letter-spacing: 0.04em;
  }

  .section {
    padding: 36px 8px;
  }

  .container {
    width: min(100% - 16px, var(--container-max));
  }

  .section__header {
    margin-bottom: 24px;
  }

  .section__label {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .section__label::before {
    width: 20px;
  }

  .value-card,
  .feature-card,
  .process-step {
    padding: 14px;
    border-radius: 12px;
    gap: 8px;
  }

  .value-card__icon,
  .feature-card__icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
    margin-bottom: 12px;
  }

  .value-card h3,
  .feature-card h3,
  .demo-card h3 {
    font-size: 15px;
  }

  .value-card p,
  .feature-card p,
  .process-step p {
    font-size: 12px;
    margin-top: 8px;
  }

  .process-step__num {
    width: 32px;
    height: 32px;
    font-size: 14px;
    margin-bottom: 12px;
  }

  .screen-card {
    padding: 10px;
    width: min(100%, 200px);
    gap: 8px;
  }

  .screens-grid .phone {
    width: 152px;
    height: 307px;
  }

  .screen-card__num {
    font-size: 10px;
    padding: 3px 8px;
  }

  .screen-card__caption {
    font-size: 11px;
    max-width: 180px;
  }

  .demo-card {
    padding: 18px 14px;
    border-radius: 16px;
  }

  .demo-card__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
    border-radius: 14px;
  }

  .demo-card h3 {
    font-size: 16px;
  }

  .demo-card p {
    font-size: 12px;
    margin-top: 8px;
  }

  .demo-card__chips {
    margin-top: 16px;
    gap: 4px;
  }

  .demo-chip {
    font-size: 10px;
    padding: 4px 6px;
  }

  .demo-card__hint {
    margin-top: 16px;
    padding-top: 12px;
    font-size: 12px;
  }

  .contact__panel {
    padding: 14px;
    border-radius: 14px;
  }

  .form-field {
    gap: 4px;
  }

  .form-field label {
    font-size: 10px;
  }

  .form-field input,
  .form-field textarea {
    padding: 10px 11px;
    border-radius: 12px;
    font-size: 14px;
  }

  .btn {
    min-height: 44px;
    font-size: 13px;
  }

  .success-message {
    padding: 24px 20px;
    gap: 8px;
  }

  .success-message__icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .success-message h3 {
    font-size: 18px;
  }

  .success-message p {
    font-size: 13px;
  }

  .contact-item {
    padding: 10px;
    gap: 8px;
  }

  .contact-item__icon {
    width: 32px;
    height: 32px;
  }

  .contact-item__label {
    font-size: 9px;
  }

  .contact-item__value {
    font-size: 13px;
  }

  .header__inner {
    min-height: 58px;
    gap: 8px;
  }

  .logo__mark {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .logo__name {
    font-size: 14px;
  }

  .logo__sub {
    font-size: 9px;
    max-width: 140px;
  }

  .burger {
    width: 36px;
    height: 36px;
    gap: 4px;
  }

  .burger span {
    width: 14px;
    height: 2px;
  }

  .mobile-nav {
    inset: 58px 8px auto;
    padding: 8px;
    border-radius: 12px;
  }

  .mobile-nav .nav__link {
    padding: 8px 10px;
    font-size: 12px;
    border-radius: 10px;
  }

  .site-footer {
    padding: 28px 0;
  }

  .footer__inner {
    gap: 20px 12px;
  }

  .footer__brand {
    gap: 8px;
  }

  .footer__nav {
    gap: 6px 10px;
  }

  .footer__nav a {
    font-size: 11px;
  }

  .footer__copy {
    font-size: 10px;
  }
}