:root {
  /* Ãâ€”ÃÂ¾ÃÂ»ÃÂ¾Ã‘â€šÃÂ¾ + Ã‘â€šÃ‘â€˜ÃÂ¼ÃÂ½ÃÂ°Ã‘Â Ã‘â€šÃÂµÃÂ¼ÃÂ° Ã¢â‚¬â€ ÃÂ¿ÃÂµÃ‘â‚¬ÃÂµÃÂ¾ÃÂ¿Ã‘â‚¬ÃÂµÃÂ´ÃÂµÃÂ»Ã‘ÂÃ‘Å½Ã‘â€šÃ‘ÂÃ‘Â Ã‘â€¡ÃÂµÃ‘â‚¬ÃÂµÃÂ· initTheme() */
  --color-brand:        #D4AF37;
  --color-brand-dark:   #B8962E;
  --color-brand-soft:   rgba(212,175,55,0.12);
  --color-brand-muted:  #E8C84A;
  --color-bg:           #0A0A0A;
  --color-surface:      #141414;
  --color-surface-alt:  #1A1A1A;
  --color-border:       #2A2A2A;
  --color-text:         #F0F0F0;
  --color-text-muted:   #9A9A9A;
  --color-dark:         #0A0A0A;
  --color-dark-soft:    #111111;
  --color-dark-bg:      #050505;
  --color-success:      #22C55E;
  --color-success-soft: rgba(34,197,94,0.12);
  --color-warning:      #D4AF37;
  --color-warning-soft: rgba(212,175,55,0.12);
  --color-error:        #EF4444;
  --color-error-soft:   rgba(239,68,68,0.12);
  --rgb-brand:          212, 175, 55;

  --font-display: "Montserrat", Arial, sans-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 4px rgba(0,0,0,0.4);
  --shadow-sm: 0 6px 20px rgba(0,0,0,0.5);
  --shadow-md: 0 16px 40px rgba(0,0,0,0.6);
  --shadow-lg: 0 28px 64px rgba(0,0,0,0.7);
  --shadow-brand: 0 12px 32px rgba(212,175,55,0.32);

  --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);
  color-scheme: dark;
  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.36);
  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);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.section__header {
  max-width: 720px;
  margin-bottom: var(--sp-10);
}

.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-dark);
  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: var(--color-brand-muted);
}

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


.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}
.section__title{
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}
.section__title {
  max-width: 760px;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: -0.02em;
  color: #F0F0F0;
}

.section__title--dark {
  color: #F0F0F0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 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 {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  min-width: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 13px;

}
.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-dark);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-brand);
}

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

.logo__name {
  font-weight: 800;
  color: #F0F0F0;
}

.logo__sub {
  color: rgba(255,255,255,0.42);
  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: rgba(255,255,255,0.58);
  font-size: 14px;
  font-weight: 600;
  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: #e4c07a;
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

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

.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: #e4c07a;
  color: #0A0A0A;
  font-size: 14px;
  font-weight: 800;
  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: #1A1A1A;
}

.burger span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: var(--r-full);
  background: #F0F0F0;
  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: #141414;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7);
  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: rgba(212,175,55,0.12);
  color: var(--color-brand);
}

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

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

.hero__content {
  max-width: 680px;
}

.hero__title {
  margin-top: var(--sp-3);
  color: #F0F0F0;
  font-size: clamp(32px, 7vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero__subtitle {
  max-width: 600px;
  margin: var(--sp-5) 0 0;
  color: rgba(255, 255, 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: 800;
  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: #e4c07a;
  color: #0A0A0A;
  font-weight: 500;
  box-shadow: 0 8px 28px rgba(212,175,55,0.35);
}

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

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

.btn--ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

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

.btn--outline:hover {
  background: rgba(212,175,55,0.1);
}

.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(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.06);
}

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

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

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

.hero__visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.hero__badges {
  position: absolute;
  inset: auto 0 var(--sp-4) 0;
  display: none;
  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: #1A1A1A;
  color: #F0F0F0;
  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;
}

.phone {
  width: min(248px, 74vw);
  height: min(496px, 148vw);
  padding: 10px;
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 25px;
  background: #0D0D0D;
  box-shadow: var(--shadow-lg);
}

.screens-grid .phone {
  width: 202px;
  height: 421px;
  max-width: 100%;
}
.fancybox__content{
  padding:0 !important;
  background:transparent !important;
  overflow:visible !important;
}
.mobile-demo-frame{
  transform:translateZ(0);
  will-change:transform, opacity;
  backface-visibility:hidden;
}

/* ÃÅ¸ÃÂ»ÃÂ°ÃÂ²ÃÂ½ÃÂ¾ÃÂµ ÃÂ¾Ã‘â€šÃÂºÃ‘â‚¬Ã‘â€¹Ã‘â€šÃÂ¸ÃÂµ */
.fancybox__content{
  transition:
    opacity .18s ease,
    transform .18s ease !important;
}

/* Ãâ€˜Ã‘â€¹Ã‘ÂÃ‘â€šÃ‘â‚¬ÃÂ¾ÃÂµ ÃÂ·ÃÂ°ÃÂºÃ‘â‚¬Ã‘â€¹Ã‘â€šÃÂ¸ÃÂµ */
.fancybox-fadeOut{
  animation:fancyboxQuickFade .14s ease forwards !important;
}

@keyframes fancyboxQuickFade{
  from{
    opacity:1;
    transform:scale(1);
  }
  to{
    opacity:0;
    transform:scale(.98);
  }
}

/* ÃÂ¤ÃÂ¾ÃÂ½ */
.fancybox__backdrop{
  transition:opacity .15s ease !important;
}

/* ÃÂ£ÃÂ±ÃÂ¸Ã‘â‚¬ÃÂ°ÃÂµÃ‘â€š ÃÂ»ÃÂ°ÃÂ³ Safari/Chrome */
.is-closing-modal iframe{
  pointer-events:none;
}

.mobile-demo-frame{
  width:440px;
  height:760px;

  max-width:95vw;
  max-height:90vh;

  background:#111;
  border-radius:34px;

  padding:10px;

  position:relative;
  overflow:hidden;

  box-shadow:
    0 25px 70px rgba(0,0,0,.35),
    inset 0 0 0 1px rgba(255,255,255,.06);
}

/* ÃÂÃÂ´ÃÂ°ÃÂ¿Ã‘â€šÃÂ°Ã‘â€ ÃÂ¸Ã‘Â ÃÂ¿ÃÂ¾ÃÂ´ ÃÂ¼ÃÂ°ÃÂ»ÃÂµÃÂ½Ã‘Å’ÃÂºÃÂ¸ÃÂµ Ã‘ÂÃÂºÃ‘â‚¬ÃÂ°ÃÂ½Ã‘â€¹ */
@media (max-height:820px){
  .mobile-demo-frame{
    height:84vh;
    width:calc(84vh * 0.51);
  }
}

.mobile-demo-frame iframe{
  width:100%;
  height:100%;

  border:0;
  border-radius:26px;
  background:#fff;
}

/* ÃÅ¡ÃÂ½ÃÂ¾ÃÂ¿ÃÂºÃÂ° ÃÂ·ÃÂ°ÃÂºÃ‘â‚¬Ã‘â€¹Ã‘â€šÃÂ¸Ã‘Â */
.fancybox__button--close{
  top:16px !important;
  right:16px !important;

  width:40px !important;
  height:40px !important;

  border-radius:50% !important;

  background:rgba(255,255,255,.08) !important;
  backdrop-filter:blur(10px);
}
.phone__screen {
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 34px;
  background: var(--color-bg);
}

.phone__status {
  flex: 0 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 9px 18px 5px;
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 9px;
  font-weight: 800;
}

.phone__header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  padding: 9px 14px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.phone__title {
  min-width: 0;
  color: #F0F0F0;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone__action {
  color: var(--color-brand);
  font-size: 11px;
  font-weight: 900;
}

.phone__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  overflow: hidden;
}

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

.ui-greeting {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
}

.ui-avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-brand-soft);
  color: var(--color-brand-dark);
  font-size: 11px;
  font-weight: 900;
}

.ui-greeting b,
.ui-title {
  color: #F0F0F0;
  font-size: 12px;
  line-height: 1.2;
}

.ui-muted {
  color: var(--color-text-muted);
  font-size: 10px;
  line-height: 1.25;
}

.ui-bell {
  margin-left: auto;
}

.ui-chips {
  display: flex;
  gap: 6px;
  overflow: hidden;
}

.ui-chip {
  flex: 0 0 auto;
  padding: 5px 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--r-full);
  background: var(--color-surface);
  color: var(--color-text-muted);
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.ui-chip.is-active {
  border-color: var(--color-brand);
  background: var(--color-brand);
  color: var(--color-surface);
}

.ui-search {
  padding: 9px 10px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-surface);
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 700;
}

.ui-card,
.ui-row,
.ui-menu-row {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
  box-shadow: var(--shadow-xs);
}

.ui-card {
  padding: 10px;
  color: #F0F0F0;
}

.ui-card.is-brand {
  border-color: var(--color-brand-dark);
  background: var(--color-brand-dark);
  color: var(--color-surface);
}

.ui-card.is-soft {
  background: var(--color-brand-soft);
}

.ui-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
}

.ui-row__main {
  min-width: 0;
  flex: 1;
}

.ui-price,
.ui-rating,
.ui-status {
  flex: 0 0 auto;
  color: var(--color-brand-dark);
  font-size: 10px;
  font-weight: 900;
}

.ui-section-title {
  margin-top: 2px;
  color: #F0F0F0;
  font-size: 11px;
  font-weight: 900;
}

.ui-btn {
  min-height: 32px;
  display: grid;
  place-items: center;
  border-radius: var(--r-full);
  background: var(--color-brand);
  color: var(--color-surface);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}

.ui-btn.is-outline {
  border: 1px solid var(--color-brand-muted);
  background: var(--color-surface);
  color: var(--color-brand-dark);
}

.ui-tabs,
.ui-slots,
.ui-days {
  display: flex;
  gap: 6px;
}

.ui-tab,
.ui-day,
.ui-slot {
  display: grid;
  place-items: center;
  min-height: 28px;
  padding: 0 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--r-full);
  background: var(--color-surface);
  color: var(--color-text-muted);
  font-size: 9px;
  font-weight: 900;
}

.ui-tab.is-active,
.ui-day.is-active,
.ui-slot.is-selected {
  border-color: var(--color-brand);
  background: var(--color-brand);
  color: var(--color-surface);
}

.ui-slots {
  flex-wrap: wrap;
}

.ui-slot {
  width: calc(33.333% - 4px);
}

.ui-slot.is-busy {
  color: var(--color-text-muted);
  background: var(--color-surface-alt);
  text-decoration: line-through;
}

.ui-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.ui-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--r-full);
  background: var(--color-border);
}

.ui-dot.is-active {
  width: 20px;
  background: var(--color-brand);
}

.ui-logo {
  width: 52px;
  height: 52px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-brand-soft);
  font-size: 25px;
}

.ui-input {
  padding: 8px 10px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-surface);
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 700;
}

.ui-menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  color: #F0F0F0;
  font-size: 10px;
  font-weight: 800;
}

.ui-profile {
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 10px;
}

.ui-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 7px;
  border-radius: var(--r-full);
  background: var(--color-success-soft);
  color: var(--color-success);
  font-size: 9px;
  font-weight: 900;
}

.ui-empty {
  padding: var(--sp-4);
  border-radius: var(--r-md);
  background: var(--color-surface);
  color: var(--color-text-muted);
  font-size: 12px;
  text-align: center;
}

.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: 0 4px 24px rgba(0,0,0,0.4);
}

.value-card {
  padding: var(--sp-6);
  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-dark);
    font-size: 30px;
}
.feature-card__icon img{
  width: 33px;
  height: 33px;
}

.value-card h3,
.feature-card h3,
.demo-card h3,
.success-message h3 {
  margin: 0;
  color: #F0F0F0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.value-card p,
.feature-card p,
.demo-card p {
  margin: var(--sp-3) 0 0;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
}

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

.feature-card {
  min-height: 100%;
  padding: var(--sp-6);
  padding-bottom: 37px !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);
  box-shadow: 0 8px 32px rgba(212,175,55,0.18), 0 0 0 1px rgba(212,175,55,0.22);
}

.feature-card__screen {
  display: inline-flex;
  margin-top: var(--sp-4);
  padding: 4px 9px;
  border-radius: var(--r-full);
  background: var(--color-brand-soft);
  color: var(--color-brand-dark);
  font-size: 11px;
  font-weight: 900;
}

.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:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}*/

.screen-card__num {
  display: inline-flex;
  padding: 4px 10px;
  display: none;
  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: rgba(255,255,255,0.50);
  font-size: 13px;
  text-align: center;
  display: none;
}

.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-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.demo-card__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  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-dark);
  font-size: 12px;
  font-weight: 800;
}

.demo-card__hint {
  margin-top: var(--sp-5);
  padding: var(--sp-3) 0 0;
  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(255, 255, 255, 0.1);
  border-radius: var(--r-xl);
  background: rgba(255, 255, 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 var(--color-brand-muted);
  color: var(--color-brand-muted);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

.process-step h3 {
  margin: 0;
  color: #F0F0F0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.process-step p {
  margin: var(--sp-3) 0 0;
  color: rgba(255,255,255,0.58);
  font-size: 14px;
  margin-top: 9px;
  margin-bottom: 12px;
}

.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(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 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(255, 255, 255, 0.08);
}

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

.contact-item__value {
  color: #F0F0F0;
  font-weight: 800;
}

.contact__panel {
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-2xl);
  background: rgba(255, 255, 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(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-surface);
  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(255, 255, 255, 0.34);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-brand-muted);
  background: rgba(255, 255, 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(155, 91, 19, 0.22);
}

.form-error {
  display: none;
  margin: 0;
  color: var(--color-warning-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: #F0F0F0;
}

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

.site-footer {
  padding: var(--sp-8) 0;
  background: var(--color-dark-soft);
  color: rgba(255, 255, 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: #F0F0F0;
}

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

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

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

.footer__nav a:hover {
  color: #fff;
}

.footer__copy {
  margin: 0;
  color: rgba(255, 255, 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: 776px){
 .hero__orb{display: none !important;}
}

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

/* Ã¢â€â‚¬Ã¢â€â‚¬ HERO PHONES Ã¢â€â‚¬Ã¢â€â‚¬ */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.10;
  z-index: 0;
}
.hero__orb--1 {
  width: clamp(280px,48vw,580px);
  height: clamp(280px,48vw,580px);
  background: var(--color-brand);
  top: -130px; right: -90px;
  animation: orb-drift 26s ease-in-out infinite;
}
.hero__orb--2 {
  width: clamp(180px,28vw,380px);
  height: clamp(180px,28vw,380px);
  background: var(--color-brand);
  bottom: -60px; left: -60px;
  animation: orb-drift 20s ease-in-out infinite 5s;
}
@keyframes orb-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(28px,-48px) scale(1.08); }
  66%      { transform: translate(-18px,22px) scale(0.92); }
}
.hero__grid {
  display: grid;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  margin: 0 0 16px;
  color: var(--color-brand);
  font-size: 12px;
  display: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.hero__mockup {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero__phones {
  position: relative;
  width: 420px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-phone-wrap {
  position: absolute;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.hero-phone {
  border-radius: 32px;
  background: rgb(25 25 25);
  border-width: 8px;
  border-style: solid;
  border-color: rgb(17, 17, 17);
  border-image: initial;
  overflow: hidden;
  /* box-shadow: 0 28px 72px rgba(0,0,0,0.7), 0 0 0 1px rgba(212,175,55,0.12); */
}
.hero-phone img {
  width: 180px;
  height: 400px;
  object-fit: cover;
  display: block;
}
.hero-phone--center {
 background: rgb(255 255 255);
 border-width: 8px;
 border-style: solid;
 border-color: rgb(25 25 25);
 border-image: initial;
}
.hero-phone-wrap--center { z-index:3; top:20px; left:50%; transform:translateX(-50%) scale(1.06); }
.hero-phone-wrap--left   {z-index:2;top:60px;left: -20px;}
.hero-phone-wrap--right  {z-index:2;top:60px;right: -20px;}
.hero-phone-wrap--left  .hero-phone { transform: rotate(-8deg); opacity: 0.78; }
.hero-phone-wrap--right .hero-phone { transform: rotate(8deg);  opacity: 0.78; }

.phone__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 30px;
}

/* metric icon Ã¢â‚¬â€ show on desktop */
@media (min-width:760px) {
  .metric__icon { display:block; }
}
@media (max-width:1100px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__mockup { margin-top: 40px; }
}
@media (max-width:760px) {
  .hero__phones { width: 100%; max-width:360px; height:440px; }
  .hero-phone img { width:166px; height:350px; }
}
@media (max-width:560px) {
  .hero-phone-wrap--left,
  .hero-phone-wrap--right { display: none; }
  .hero-phone-wrap--center { left:50%; transform:translateX(-50%); top:20px; }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ SCREEN CARD PLACEHOLDER IMAGES Ã¢â€â‚¬Ã¢â€â‚¬ */
.phone__body a { display: block; height: 100%; }
.phone__screen { background: #0A0A0A; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ PROCESS STEP number circle gold Ã¢â€â‚¬Ã¢â€â‚¬ */
.process-step__num {
  border-color: rgba(212,175,55,0.35);
  color: var(--color-brand);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ SECTION label Ã¢â€â‚¬Ã¢â€â‚¬ */
.section__label { color: var(--color-brand); }
.section__label::before { background: var(--color-brand); }

/* Ã¢â€â‚¬Ã¢â€â‚¬ DEMO CARD chips Ã¢â€â‚¬Ã¢â€â‚¬ */
.demo-chip {
  color: var(--color-brand);
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.25);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ DEMO card icon Ã¢â€â‚¬Ã¢â€â‚¬ */
.demo-card__icon {
  color: var(--color-brand);
  background: rgba(212,175,55,0.1);
  border-color: rgba(212,175,55,0.2);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ DEMO card hint Ã¢â€â‚¬Ã¢â€â‚¬ */
.demo-card__hint {
  color: var(--color-brand);
  border-top-color: var(--color-border);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ SCREEN num badge Ã¢â€â‚¬Ã¢â€â‚¬ */
.screen-card__num {
  border-color: rgba(212,175,55,0.2);
  color: var(--color-brand-muted);
  background: rgba(212,175,55,0.06);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ FOOTER Ã¢â€â‚¬Ã¢â€â‚¬ */
.site-footer {
  background: #060606;
  border-top: 1px solid var(--color-border);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â DARK THEME TEXT OVERRIDES Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
body { color: #F0F0F0; }

.section__title,
.section__title--dark,
.hero__title         { color: #F0F0F0 !important; }

.section__subtitle,
.section__subtitle--dark { color: rgba(255,255,255,0.56) !important; }

.section__label { color: var(--color-brand); }

.value-card h3,
.feature-card h3,
.demo-card h3          { color: #F0F0F0; }

.value-card p,
.feature-card p,
.demo-card p           { color: rgba(255,255,255,0.54); }
.demo-card p{
  margin-bottom:30px;
}
.process-step h3       { color: #F0F0F0; }
.process-step p        { color: rgba(255,255,255,0.56); }

.nav__link             { color: rgba(255,255,255,0.56); }
.nav__link:hover,
.nav__link.is-active   {color: var(--color-brand);}

.logo__name            { color: #F0F0F0; }
.logo__sub             { color: rgba(255,255,255,0.40); }

.screen-card__caption  { color: rgba(255,255,255,0.48); }
.screen-card__num      { color: var(--color-brand); }

.contact-item__label   { color: rgba(255,255,255,0.44); }
.contact-item__value   { color: #F0F0F0; }

.footer__brand strong  { color: #F0F0F0; }
.footer__nav a         { color: rgba(255,255,255,0.50); }
.footer__copy          { color: rgba(255,255,255,0.36); }

.hero__subtitle        { color: rgba(255,255,255,0.65); }
.metric__value         { color: #F0F0F0; }
.metric__label         { color: rgba(255,255,255,0.46); }

.demo-card h3          { color: #F0F0F0; }
.demo-card__hint       { color: var(--color-brand); }

.success-message h3    { color: #F0F0F0; }
.success-message p     { color: rgba(255,255,255,0.62); }

.form-field label      { color: rgba(255,255,255,0.70); }
.form-field input,
.form-field textarea   { color: #F0F0F0; }

.btn--primary          { color: #0A0A0A !important; }

/* ==========================================================================
   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;
  }
}

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

@media (max-width: 660px) {
  .hero__title {
    font-size: 32px;
  }
  .feature-card__icon img{
    width:25px;
  }

  .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(1, 1fr) !important;
    gap: 14px;
  }

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

  .process-list {
    grid-template-columns: repeat(1, 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(1, 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;
  }

  .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: 160px;
    height: 320px;
  }

  .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: 18px;
    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: 177px;
    height: 366px;
  }

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

  .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: 18px;
  }

  .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: flex;
    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: 130px;
    height: 260px;
  }

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