/* ValueAppz — measured from live site (1440px) */
:root {
  --orange: #f26522;
  --orange-2: #ff6b35;
  --orange-hover: #e05a1c;
  --navy: #2d4053;
  --text-body: #343643;
  --text-muted: #8a96a3;
  --topbar-bg: #343643;
  --bg-light: #f8f9fb;
  --bg-cream: #fdfbf9;
  --white: #ffffff;
  --font: 'Poppins', system-ui, sans-serif;
  --container: 1300px;
  --header-h: 93px;
  --topbar-h: 27px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* ── Top bar ── */
.top-bar {
  background: var(--topbar-bg);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  font-size: 16px;
  position: relative;
  z-index: 30;
}

.top-bar__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
}

.top-bar__label,
.top-bar__link {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
}

.top-bar__link:hover { opacity: 0.9; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s;
  white-space: nowrap;
}

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

.btn--header {
  padding: 8px 18px;
  background: var(--orange);
  color: #fff;
  border-radius: 170px;
  font-size: 14px;
  flex-shrink: 0;
}

.btn__icon-circle {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn--hero {
  padding: 12px 30px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  border-radius: 170px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-2) 100%);
  box-shadow: 0 6px 18px rgba(242, 101, 34, 0.32);
}

/* ── Header ── */
.header {
  position: absolute;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 25;
  height: var(--header-h);
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.97);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.logo__name {
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.1;
}

.logo__tagline {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
}

.nav { justify-self: center; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__list a {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
}

.nav__list a:hover { color: var(--orange); }

.nav__chevron {
  font-size: 12px;
  opacity: 0.6;
  line-height: 1;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  justify-self: end;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-body);
  border-radius: 2px;
}

/* ── Hero (ValueAppz: inner-banner-salon-beauty) ── */
.home-banner {
  position: relative;
  overflow: hidden;
}

.home-banner--beauty {
  min-height: 680px;
  padding: 118px 0 0;
  background: var(--bg-cream);
}

/* Salon photo — ValueAppz inner-banner-salon-beauty */
.home-banner--beauty::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920&q=80&auto=format&fit=crop') 72% 38% / cover no-repeat;
  filter: brightness(1.5) saturate(0.18) contrast(0.88);
  z-index: 0;
  pointer-events: none;
}

.home-banner--beauty::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(253, 251, 249, 0.99) 0%,
    rgba(253, 251, 249, 0.97) 36%,
    rgba(253, 251, 249, 0.9) 48%,
    rgba(253, 251, 249, 0.55) 58%,
    rgba(253, 251, 249, 0.18) 68%,
    transparent 78%
  );
  z-index: 1;
  pointer-events: none;
}

.home-banner__visual {
  position: absolute;
  right: max(0px, calc((100% - var(--container)) / 2 + 0.5rem));
  bottom: 0;
  width: 500px;
  max-width: 46%;
  z-index: 2;
  pointer-events: none;
}

.hero-scene {
  position: relative;
  width: 100%;
  min-height: 520px;
}

/* Floating elements — ValueAppz on-saloon-b */
.hero-float {
  position: absolute;
  z-index: 3;
  filter: drop-shadow(0 12px 28px rgba(45, 64, 83, 0.18));
}

.hero-float--avatar {
  left: 24px;
  top: 40%;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  background: #fff;
}

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

.hero-float--chip {
  left: 36px;
  top: 64%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.hero-float--chip-top {
  left: auto;
  right: 28%;
  top: 8%;
}

.hero-float__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(45, 64, 83, 0.12);
}

.hero-float__icon--sm {
  width: 44px;
  height: 44px;
}

.hero-float__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.15rem 0.55rem;
  border-radius: 6px;
}

/* Phone mockup */
.hero-phone {
  position: absolute;
  right: 8px;
  bottom: 0;
  width: 288px;
  z-index: 2;
  filter: drop-shadow(0 32px 56px rgba(45, 64, 83, 0.32));
}

.hero-phone__shell {
  background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 36px;
  padding: 10px;
  position: relative;
}

.hero-phone__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 22px;
  background: #111;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.hero-phone__screen {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  min-height: 480px;
  font-size: 11px;
  color: var(--text-body);
}

.hero-app__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1rem 0.75rem;
  border-bottom: 1px solid #f0f2f5;
}

.hero-app__header h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.hero-app__back {
  font-size: 22px;
  line-height: 1;
  color: var(--navy);
  font-weight: 300;
}

.hero-app__tabs {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem 0;
}

.hero-app__tab {
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  background: #f3f4f6;
}

.hero-app__tab--active {
  background: rgba(242, 101, 34, 0.12);
  color: var(--orange);
}

.hero-app__address {
  padding: 0.5rem 1rem;
  font-size: 10px;
  color: var(--text-muted);
}

.hero-app__services {
  list-style: none;
  padding: 0 0.75rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-app__service {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem;
  border-radius: 10px;
  border: 1.5px solid transparent;
}

.hero-app__service--active {
  border-color: var(--orange);
  background: rgba(242, 101, 34, 0.04);
}

.hero-app__thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.hero-app__service-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.25;
}

.hero-app__service-info strong {
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
}

.hero-app__service-info em {
  font-style: normal;
  font-size: 10px;
  color: var(--orange);
  font-weight: 600;
}

.hero-app__booking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 0.85rem 0.75rem;
  padding: 0.65rem;
  background: #f8f9fb;
  border-radius: 10px;
}

.hero-app__booking-label {
  display: block;
  font-size: 9px;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.hero-app__booking strong {
  font-size: 10px;
  font-weight: 700;
  color: var(--navy);
}

.hero-app__nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.65rem 1rem 0.85rem;
  margin-top: 0.5rem;
  border-top: 1px solid #f0f2f5;
}

.hero-app__nav span {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #eef1f4;
}

.hero-app__nav-active {
  background: var(--orange) !important;
  opacity: 0.85;
}

.home-banner__caption {
  position: relative;
  z-index: 2;
}

.home-banner__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}

.home-banner__content {
  max-width: 560px;
}

.home-banner__content h1 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.24;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.home-banner__content p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 22px;
  max-width: 520px;
}

.home-banner__content .btn--hero {
  margin-top: 4px;
}

.btn--outline {
  padding: 11px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 170px;
  background: transparent;
}

.btn--outline:hover {
  background: var(--navy);
  color: #fff;
}

.btn--white {
  background: #fff !important;
  color: var(--orange) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

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

/* ── Models section (ValueAppz: we-get-inner) ── */
.models-section {
  padding: 0 0 2rem;
}

.models-section > .container:first-child {
  padding-top: 4.5rem;
}

.model-block {
  padding: 2.5rem 0 3rem;
}

.model-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.model-block--reverse .model-block__inner {
  direction: rtl;
}

.model-block--reverse .model-block__inner > * {
  direction: ltr;
}

.model-block__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.model-block__caption h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 12px;
}

.model-block__caption h2 span {
  color: var(--orange);
}

.model-block__caption > p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.35;
}

.feature-list__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 101, 34, 0.08);
  border-radius: 8px;
}

/* Phone mockups */
.phone-mock {
  width: min(100%, 280px);
  padding: 10px;
  background: linear-gradient(145deg, #2d4053 0%, #1a2836 100%);
  border-radius: 32px;
  box-shadow: 0 24px 48px rgba(45, 64, 83, 0.22);
}

.phone-mock--admin {
  width: min(100%, 340px);
}

.phone-mock__screen {
  background: #fff;
  border-radius: 24px;
  padding: 1.25rem 1rem;
  min-height: 320px;
}

.phone-mock__screen--purple {
  background: linear-gradient(160deg, #7b4bb7 0%, #5a2d91 40%, #fff 40%);
  color: #fff;
}

.phone-mock__screen--wide {
  min-height: 260px;
}

.phone-mock__title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.phone-mock__screen--purple .phone-mock__title {
  color: #fff;
}

.phone-mock__row {
  height: 12px;
  background: #eef1f4;
  border-radius: 6px;
  margin-bottom: 8px;
}

.phone-mock__row--short {
  width: 65%;
}

.phone-mock__slot {
  height: 36px;
  background: #f5f6f8;
  border-radius: 8px;
  margin-top: 10px;
  border: 2px solid transparent;
}

.phone-mock__slot--active {
  border-color: var(--orange);
  background: rgba(242, 101, 34, 0.06);
}

.phone-mock__branch {
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  margin-bottom: 8px;
}

.phone-mock__branch--active {
  background: rgba(255, 255, 255, 0.95);
}

.phone-mock__dash {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.phone-mock__stat {
  height: 48px;
  background: linear-gradient(135deg, rgba(242, 101, 34, 0.15), rgba(242, 101, 34, 0.05));
  border-radius: 8px;
}

.phone-mock__chart {
  height: 100px;
  background: linear-gradient(180deg, rgba(45, 64, 83, 0.08) 0%, transparent 100%);
  border-radius: 8px;
  border-bottom: 3px solid var(--orange);
}

.audience-note {
  padding: 0 0 3rem;
}

.audience-note__text {
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 12px;
  border: 1px dashed rgba(45, 64, 83, 0.15);
  max-width: 720px;
  margin-inline: auto;
}

.audience-note__text a {
  color: var(--orange);
  font-weight: 600;
}

.audience-note__text a:hover {
  text-decoration: underline;
}

/* ── Sections ── */
.section {
  padding: 4rem 0;
}

.section--light {
  background: var(--bg-light);
}

.section--form {
  background: linear-gradient(135deg, #fff8f4 0%, #fff 50%, var(--bg-light) 100%);
}

.container--narrow {
  max-width: 820px;
}

.section-title {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 3rem;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-title h2 span {
  color: var(--orange);
}

.section-title p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
}

/* ── Cards (Для кого) ── */
.cards-grid {
  display: grid;
  gap: 1.25rem;
}

.cards-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(45, 64, 83, 0.06);
  border: 1px solid rgba(45, 64, 83, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(45, 64, 83, 0.1);
}

.card--muted {
  background: #f3f4f6;
  border-style: dashed;
}

.card__icon {
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.card__pain {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-body);
}

.card a {
  color: var(--orange);
  text-decoration: underline;
}

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature {
  padding: 1.25rem;
  border-radius: 10px;
  background: var(--bg-light);
  border: 1px solid rgba(45, 64, 83, 0.05);
}

.feature__num {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.feature h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.feature p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
}

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(45, 64, 83, 0.06);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
}

/* ── Marketplace CTA (ValueAppz: marketplace-online) ── */
.marketplace-cta {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
  text-align: center;
}

.marketplace-cta__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(45, 64, 83, 0.92) 0%, rgba(242, 101, 34, 0.85) 100%),
    url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1600&q=80&auto=format&fit=crop') center / cover no-repeat;
  z-index: 0;
}

.marketplace-cta__inner {
  position: relative;
  z-index: 1;
}

.marketplace-cta__label {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.marketplace-cta h2 {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.marketplace-cta .btn--white {
  margin-inline: auto;
}

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(45, 64, 83, 0.1);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  border-color: var(--orange);
  box-shadow: 0 12px 40px rgba(242, 101, 34, 0.15);
  transform: scale(1.02);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.pricing-card__for {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pricing-card__price {
  font-size: 16px;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.pricing-card__price strong {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
}

.pricing-card__list {
  flex: 1;
  margin-bottom: 1.5rem;
}

.pricing-card__list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-body);
}

.pricing-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.pricing-notes {
  text-align: center;
  margin-top: 2rem;
  font-size: 14px;
  color: var(--text-muted);
}

/* ── Compare table ── */
.compare-table-wrap {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(45, 64, 83, 0.06);
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid rgba(45, 64, 83, 0.08);
}

.compare-table thead th {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
}

.compare-table thead th:first-child {
  background: transparent;
  border: none;
}

.compare-table tbody th {
  font-weight: 600;
  color: var(--navy);
  width: 28%;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table__highlight {
  background: rgba(242, 101, 34, 0.06);
  color: var(--navy);
}

.compare-note {
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 720px;
  margin: 0 auto;
}

/* ── Demo ── */
.demo-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: center;
}

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

.demo-screen {
  text-align: center;
}

.demo-screen__mock {
  background: linear-gradient(160deg, #f8f9fb, #eef1f5);
  border: 2px solid rgba(45, 64, 83, 0.12);
  border-radius: 20px;
  padding: 1.25rem 1rem 1.5rem;
  min-height: 200px;
  margin-bottom: 0.75rem;
}

.demo-screen__mock--accent {
  border-color: var(--orange);
  background: linear-gradient(160deg, #fff8f4, #fff);
}

.demo-screen__bar {
  display: block;
  width: 40%;
  height: 4px;
  background: rgba(45, 64, 83, 0.15);
  border-radius: 4px;
  margin: 0 auto 1rem;
}

.demo-screen__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.demo-screen__line {
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 10px;
  border-radius: 6px;
  margin-bottom: 6px;
}

.demo-screen__line--short {
  width: 80%;
  margin-inline: auto;
}

.demo-screen__btn {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 6px 16px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
}

.demo-screen figcaption {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.demo-aside img {
  margin-bottom: 1.25rem;
  border-radius: 12px;
}

.demo-list {
  margin-bottom: 1.25rem;
}

.demo-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 14px;
  line-height: 1.5;
}

.demo-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ── FAQ ── */
.faq__item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(45, 64, 83, 0.08);
  overflow: hidden;
}

.faq__question {
  padding: 1.1rem 1.25rem;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--orange);
  flex-shrink: 0;
  line-height: 1;
}

.faq__item[open] .faq__question::after {
  content: '−';
}

.faq__answer {
  padding: 0 1.25rem 1.1rem;
}

.faq__answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
}

/* ── Form ── */
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.form-layout__info h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.form-layout__info h2 span {
  color: var(--orange);
}

.form-layout__info > p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.form-benefits {
  margin-bottom: 1.25rem;
}

.form-benefits li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  font-size: 15px;
}

.form-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.form-telegram a {
  color: var(--orange);
  font-weight: 600;
}

.lead-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(45, 64, 83, 0.08);
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.form-optional {
  font-weight: 400;
  color: var(--text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font);
  font-size: 15px;
  border: 1px solid rgba(45, 64, 83, 0.15);
  border-radius: 8px;
  background: #fff;
  color: var(--text-body);
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  cursor: pointer;
}

.form-checkbox input {
  margin-top: 3px;
  accent-color: var(--orange);
}

.form-checkbox a {
  color: var(--orange);
}

.form-status {
  margin-top: 1rem;
  font-size: 14px;
  text-align: center;
}

.form-status.is-success {
  color: #1a7f4b;
}

.form-status.is-error {
  color: #c0392b;
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.logo--footer .logo__name {
  color: #fff;
}

.footer__copy {
  margin-top: 0.75rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__legal {
  font-size: 13px;
  line-height: 1.8;
  text-align: right;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.9);
}

.footer__legal a:hover {
  color: var(--orange);
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .nav { display: none; }
  .burger { display: flex; }

  .home-banner__content h1 {
    font-size: 34px;
  }

  .home-banner--beauty {
    padding-bottom: 0;
  }

  .home-banner__visual {
    width: 46%;
    max-width: 440px;
  }

  .hero-phone {
    width: 250px;
  }

  .model-block__inner {
    gap: 2rem;
  }

  .model-block__caption h2 {
    font-size: 28px;
  }

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

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

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

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

  .demo-aside {
    text-align: center;
  }

  .demo-aside img {
    margin-inline: auto;
  }
}

@media (max-width: 992px) {
  .nav.is-open {
    display: block;
    position: fixed;
    top: calc(var(--topbar-h) + var(--header-h));
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 99;
  }

  .nav.is-open .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .home-banner--beauty {
    padding: 100px 0 0;
    min-height: auto;
  }

  .home-banner__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 320px);
    max-width: 100%;
    margin: 2rem auto 0;
  }

  .hero-scene {
    min-height: 460px;
  }

  .hero-float--avatar {
    width: 96px;
    height: 96px;
    left: 0;
    top: 32%;
  }

  .hero-float--chip-top {
    right: 18%;
    top: 4%;
  }

  .hero-phone {
    width: 240px;
    right: 50%;
    transform: translateX(50%);
  }

  .hero-phone__screen {
    min-height: 420px;
  }

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

  .home-banner__content {
    max-width: 100%;
    text-align: center;
    margin-inline: auto;
  }

  .home-banner__content p {
    margin-inline: auto;
  }

  .model-block__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .model-block--reverse .model-block__inner {
    direction: ltr;
  }

  .model-block__caption {
    text-align: center;
  }

  .feature-list {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 360px;
    margin-inline: auto;
  }

  .model-block__caption .btn--hero {
    width: 100%;
    max-width: 320px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

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

  .form-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__legal {
    text-align: left;
  }

  .marketplace-cta {
    padding: 3.5rem 0;
  }
}

@media (max-width: 768px) {
  .header .btn--header { display: none; }

  .section {
    padding: 3rem 0;
  }

  .home-banner__content h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .home-banner__content p {
    font-size: 16px;
    line-height: 1.7;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .model-block__caption h2 {
    font-size: 24px;
  }

  .marketplace-cta h2 {
    font-size: 26px;
  }

  .cards-grid--4,
  .features-grid,
  .steps,
  .demo-screens {
    grid-template-columns: 1fr;
  }

  .form-layout__info h2 {
    font-size: 26px;
  }

  .compare-table th,
  .compare-table td {
    padding: 0.75rem;
    font-size: 13px;
  }
}

@media (min-width: 993px) {
  .nav { display: block !important; }
}
