/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
section[id] { scroll-margin-top: 88px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* === Design tokens === */
:root {
  --bg: #FFFFFF;
  --bg-soft: #FAFAF9;
  --bg-warm: #FFF8F2;
  --bg-cream: #FEF6EE;

  --text: #0F172A;
  --text-strong: #020617;
  --text-muted: #475569;
  --text-subtle: #94A3B8;

  --border: #E2E8F0;
  --border-soft: #F1F5F9;
  --border-warm: #FED7AA;

  --accent: #EA580C;
  --accent-hover: #C2410C;
  --accent-light: #F97316;
  --accent-soft: #FFEDD5;
  --accent-cream: #FFF7ED;

  --blue: #0EA5E9;
  --blue-soft: #E0F2FE;
  --green: #10B981;
  --green-soft: #D1FAE5;
  --red: #EF4444;
  --red-soft: #FEE2E2;
  --purple: #8B5CF6;
  --purple-soft: #EDE9FE;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow: 0 4px 16px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 24px 48px -12px rgba(15, 23, 42, 0.12), 0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-orange: 0 12px 32px -8px rgba(234, 88, 12, 0.35), 0 4px 12px rgba(234, 88, 12, 0.18);

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;

  --container: 1200px;
}

/* === Layout === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* === Typography === */
h1, h2, h3, h4, h5 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  line-height: 1.15;
}
h1 { font-size: clamp(36px, 5.5vw, 64px); font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(20px, 2vw, 24px); }

.text-gradient {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 50%, #C2410C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.text-muted { color: var(--text-muted); font-weight: 500; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow--white {
  color: white;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title { margin-bottom: 16px; }
.section-sub { font-size: 18px; color: var(--text-muted); max-width: 600px; }
.section-head--center .section-sub { margin-left: auto; margin-right: auto; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn--primary {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: white;
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px -8px rgba(234, 88, 12, 0.45);
  background: linear-gradient(135deg, #EA580C 0%, #C2410C 100%);
}
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  background: white;
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: var(--text-muted);
  background: var(--bg-soft);
}
.btn--lg {
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 14px;
}
.btn--block { width: 100%; }

/* === Navigation === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}
.nav__logo-text-accent { color: var(--accent); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}
.nav__links a:hover { color: var(--text); }
.nav__cta { padding: 10px 18px; font-size: 14px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* === Hero === */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #FFF8F2 0%, #FFFFFF 70%);
  z-index: -1;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 40%, transparent 100%);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero__glow--1 {
  top: -100px;
  right: -50px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.4) 0%, transparent 70%);
}
.hero__glow--2 {
  bottom: 0;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, transparent 70%);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__content { max-width: 600px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--border-warm);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-hover);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero__title {
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero__subtitle {
  font-size: 19px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Phone mockup */
.hero__phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__phone-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.25) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 0;
}
.phone {
  position: relative;
  width: 320px;
  height: 640px;
  background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 32px 64px -16px rgba(15, 23, 42, 0.35),
    0 12px 32px -8px rgba(15, 23, 42, 0.2),
    inset 0 0 0 2px rgba(255, 255, 255, 0.05);
  z-index: 1;
}
.phone--lg { width: 360px; height: 720px; }
.phone__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #0F172A;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.phone__screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 36px 16px 12px;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.95);
  position: relative;
}
.phone__avatar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FED7AA, #FFEDD5);
}
.phone__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-strong);
}
.phone__status {
  font-size: 11px;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}
.phone__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
.phone__chat {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
  scrollbar-width: thin;
}
.phone__chat::-webkit-scrollbar { width: 4px; }
.phone__chat::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.phone__chat--lg { padding: 20px; }

.bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.45;
  animation: bubbleIn 0.4s ease-out;
  word-wrap: break-word;
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.bubble--user {
  align-self: flex-end;
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: white;
  border-bottom-right-radius: 4px;
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.25);
}
.bubble--bot {
  align-self: flex-start;
  background: white;
  color: var(--text-strong);
  border: 1px solid var(--border-soft);
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.bubble--typing {
  background: white;
  border: 1px solid var(--border-soft);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  display: flex;
  gap: 4px;
  padding: 14px 16px;
}
.bubble--typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-subtle);
  animation: typing 1.4s ease-in-out infinite;
}
.bubble--typing span:nth-child(2) { animation-delay: 0.2s; }
.bubble--typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}
.phone__input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  margin: 0 12px 12px;
  background: var(--bg-soft);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-subtle);
  border: 1px solid var(--border-soft);
}
.phone__replay {
  position: absolute;
  right: 16px;
  top: 36px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.phone__replay:hover { background: var(--accent-soft); color: var(--accent); }

/* === Pain section === */
.pain { padding: 100px 0; background: var(--bg-soft); }
.pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pain-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-warm);
}
.pain-card:hover::before { opacity: 1; }
.pain-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pain-card h3 { margin-bottom: 12px; }
.pain-card p { color: var(--text-muted); font-size: 16px; }

/* === Features === */
.features { padding: 120px 0; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 24px;
}
.feature {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}
.feature--big {
  grid-column: span 2;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F2 100%);
  border-color: var(--border-warm);
}
.feature--accent {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border-color: transparent;
  color: white;
}
.feature--accent h3 { color: white; }
.feature--accent p { color: rgba(255, 255, 255, 0.75); }
.feature__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature__icon--orange { background: var(--accent-soft); color: var(--accent); }
.feature__icon--blue { background: var(--blue-soft); color: var(--blue); }
.feature__icon--green { background: var(--green-soft); color: var(--green); }
.feature__icon--purple { background: var(--purple-soft); color: var(--purple); }
.feature__icon--red { background: var(--red-soft); color: var(--red); }
.feature--accent .feature__icon { background: rgba(249, 115, 22, 0.2); color: #FB923C; }
.feature h3 { margin-bottom: 10px; }
.feature p { color: var(--text-muted); font-size: 15.5px; flex: 1; }
.feature__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.feature__tags span {
  padding: 5px 12px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.feature--big .feature__tags span { background: rgba(255, 255, 255, 0.7); }
.feature__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.channel {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: white;
}
.channel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.channel__dot--avito { background: #00AAFF; }
.channel__dot--wa { background: #25D366; }
.channel__dot--tg { background: #29A9EA; }
.channel__dot--max { background: #6E5BFF; }

/* === Demo === */
.demo {
  padding: 120px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F2 60%, #FFFFFF 100%);
  position: relative;
}
.demo__wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.demo__phone {
  display: flex;
  justify-content: center;
}
.demo__side { display: flex; flex-direction: column; gap: 32px; }
.demo__stats { display: flex; flex-direction: column; gap: 16px; }
.stat {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.stat:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.stat__num {
  font-family: 'Manrope', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  min-width: 100px;
  flex-shrink: 0;
}
.stat__label {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}
.demo__cta {
  background: var(--text-strong);
  color: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}
.demo__cta h3 { color: white; margin-bottom: 8px; }
.demo__cta p { color: rgba(255, 255, 255, 0.75); margin-bottom: 20px; font-size: 15px; }

/* === How it works === */
.how { padding: 120px 0; background: var(--bg-soft); }
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline__line {
  position: absolute;
  left: 32px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-soft) 100%);
  border-radius: 1px;
}
.step {
  position: relative;
  padding-left: 96px;
  padding-bottom: 56px;
}
.step:last-child { padding-bottom: 0; }
.step__num {
  position: absolute;
  left: 0;
  top: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2);
  z-index: 1;
}
.step--accent .step__num {
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: white;
  border-color: transparent;
}
.step__time {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-muted); max-width: 580px; }

/* === Pricing === */
.pricing { padding: 120px 0; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.plan {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.plan--featured {
  background: linear-gradient(180deg, #FFF8F2 0%, #FFFFFF 100%);
  border-color: var(--accent);
  box-shadow: var(--shadow-orange);
  transform: scale(1.03);
}
.plan--featured:hover { transform: scale(1.03) translateY(-4px); }
.plan__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: white;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-orange);
}
.plan__head {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px dashed var(--border);
}
.plan__name {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-strong);
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.plan__price-old {
  font-size: 22px;
  color: var(--text-subtle);
  text-decoration: line-through;
  font-weight: 500;
}
.plan__price-new {
  font-family: 'Manrope', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-strong);
}
.plan--featured .plan__price-new { color: var(--accent); }
.plan__price-sub {
  font-size: 14px;
  color: var(--text-muted);
}
.plan__monthly {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-strong);
  background: var(--bg-soft);
  padding: 8px 14px;
  border-radius: 8px;
  display: inline-block;
}
.plan--featured .plan__monthly { background: white; color: var(--accent-hover); }
.plan__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-muted);
}
.plan__features li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background: var(--green-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.plan__remaining {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}
.plan__remaining strong { color: var(--accent); }

/* === Custom development === */
.custom-dev {
  max-width: 1080px;
  margin: 48px auto 28px;
  position: relative;
}
.custom-dev__inner {
  background: linear-gradient(135deg, #FFF7ED 0%, #FFFFFF 60%, #FFFAF5 100%);
  border: 1px solid #FED7AA;
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  box-shadow: 0 20px 50px -25px rgba(234, 88, 12, 0.25);
  position: relative;
  overflow: hidden;
}
.custom-dev__inner::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.10) 0%, transparent 70%);
  pointer-events: none;
}
.custom-dev__head {
  max-width: 720px;
  margin-bottom: 28px;
  position: relative;
}
.custom-dev__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(234, 88, 12, 0.10);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.custom-dev__title {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.custom-dev__lead {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.custom-dev__examples {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  margin-bottom: 32px;
  position: relative;
}
.custom-dev__example {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.custom-dev__example svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.custom-dev__cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(234, 88, 12, 0.18);
  position: relative;
}
.custom-dev__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.custom-dev__price-from {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -0.01em;
}
.custom-dev__price-note {
  font-size: 14px;
  color: var(--text-muted);
}
.custom-dev__cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.custom-dev__sub {
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
  min-width: 240px;
}

/* === Guarantee === */
.guarantee {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #ECFDF5 0%, #FFFFFF 100%);
  border: 1px solid var(--green-soft);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  max-width: 800px;
  margin: 0 auto;
}
.guarantee__icon { flex-shrink: 0; }
.guarantee h4 { font-size: 19px; margin-bottom: 6px; color: var(--text-strong); }
.guarantee p { color: var(--text-muted); font-size: 15px; }

/* === About === */
.about { padding: 120px 0; background: var(--bg-soft); }
.about__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}
.about__photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1;
}
.about__photo-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FED7AA 0%, #FEF3C7 50%, #FFEDD5 100%);
}
.about__photo-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  gap: 16px;
  text-align: center;
}
.about__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F97316, #EA580C);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: white;
  box-shadow: 0 12px 32px rgba(234, 88, 12, 0.3);
}
.about__name-text {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-strong);
}
.about__role { font-size: 15px; color: var(--text-muted); margin-top: 4px; }
.about__location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.7);
  padding: 6px 14px;
  border-radius: 999px;
}
.about__badges { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.about__badge {
  font-size: 13px;
  font-weight: 600;
  background: white;
  color: var(--text-strong);
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.about__content p { margin-bottom: 20px; color: var(--text-muted); font-size: 17px; }
.about__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.about__list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
  font-size: 16px;
}
.about__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.about__list strong { color: var(--text-strong); font-weight: 600; }
.about__quote {
  background: white;
  border-left: 4px solid var(--accent);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text);
  font-size: 16.5px;
  line-height: 1.55;
  box-shadow: var(--shadow);
}
.about__quote-author {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 500;
}

/* === FAQ === */
.faq { padding: 120px 0; }
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq-item:hover { border-color: var(--border); }
.faq-item[open] {
  border-color: var(--accent-soft);
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23EA580C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item__body {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
}

/* === Final CTA === */
.cta-section { padding: 80px 0 120px; }
.cta-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  padding: 80px 60px;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #C2410C 130%);
}
.cta-card__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.4), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.15), transparent 50%);
}
.cta-card__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-card__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  color: white;
}
.cta-card__title { color: white; margin-bottom: 16px; }
.cta-card__sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  margin-bottom: 36px;
}
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.cta-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cta-form input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
}
.cta-form input:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
}
.cta-form input::placeholder { color: var(--text-subtle); }
.cta-form__note {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}
.cta-card__direct {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-card__direct span { color: rgba(255, 255, 255, 0.7); font-size: 15px; }
.cta-card__contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.2s;
}
.cta-card__contact:hover { background: rgba(255, 255, 255, 0.2); }

/* === Channel subscribe card === */
.channel-card {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 720px;
  margin: 28px auto 0;
  padding: 22px 28px;
  background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 70%);
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
}
.channel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -22px rgba(37, 99, 235, 0.45);
  border-color: #93C5FD;
}
.channel-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #2563EB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.channel-card__text { flex: 1; min-width: 0; }
.channel-card__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 4px;
}
.channel-card__sub {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}
.channel-card__handle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: #2563EB;
}

/* === Footer === */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  padding: 64px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand .nav__logo { margin-bottom: 16px; }
.footer__desc { color: var(--text-muted); font-size: 15px; }
.footer__col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-strong);
}
.footer__col a {
  display: block;
  color: var(--text-muted);
  font-size: 15px;
  padding: 6px 0;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--accent); }
.footer__small { color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-subtle);
  font-size: 14px;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__content { max-width: none; text-align: center; }
  .hero__cta { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__phone { order: 2; display: flex; justify-content: center; }
  .pain__grid, .features__grid, .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .feature--big { grid-column: span 2; }
  .demo__wrapper { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .demo__cta { text-align: center; }
  .stat { justify-content: center; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__photo { max-width: 380px; margin: 0 auto; }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
}

/* Engage hamburger menu on tablet too — link list doesn't fit cleanly below ~1000px */
@media (max-width: 1000px) {
  .nav__links { white-space: nowrap; }
}

@media (max-width: 900px) {
  body { font-size: 16px; }
  .nav__links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 0;
    border-top: 1px solid var(--border-soft);
    z-index: 99;
  }
  .nav__links--open { display: flex; }
  .nav__links a {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-soft);
    font-size: 17px;
    color: var(--text-strong);
  }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero { padding: 60px 0 80px; }
  .hero__cta .btn { width: 100%; }
  .pain__grid, .features__grid, .pricing__grid { grid-template-columns: 1fr; }
  .feature--big { grid-column: span 1; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-4px); }
  .pain, .features, .demo, .how, .pricing, .about, .faq { padding: 80px 0; }
  .step { padding-left: 76px; }
  .step__num { width: 56px; height: 56px; font-size: 22px; }
  .timeline__line { left: 28px; }
  .cta-card { padding: 56px 24px; }
  .cta-form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .guarantee { flex-direction: column; text-align: center; }
  .custom-dev__inner { padding: 32px 24px; }
  .custom-dev__title { font-size: 24px; }
  .custom-dev__examples { grid-template-columns: 1fr; gap: 12px; margin-bottom: 24px; }
  .custom-dev__cta { flex-direction: column; align-items: stretch; gap: 16px; }
  .custom-dev__cta .btn { width: 100%; justify-content: center; }
  .custom-dev__sub { min-width: 0; text-align: center; }
  .channel-card { flex-direction: column; text-align: center; gap: 14px; padding: 20px; }
  .channel-card__handle { font-size: 14px; }
  .phone { width: 280px; height: 560px; }
  .phone--lg { width: 300px; height: 600px; }
  .section-head { margin-bottom: 48px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__title { font-size: 36px; }
  h2 { font-size: 28px; }
}

/* === Animations on scroll === */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================ */
/* === Showcase section (auto service photo) === */
/* ============================================ */

.showcase {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, #FAF7F2 100%);
}

.showcase__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.showcase__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(15, 23, 42, 0.35),
    0 0 0 1px rgba(15, 23, 42, 0.05);
  transform: rotate(-1deg);
  transition: transform 0.5s ease;
}
.showcase__photo:hover { transform: rotate(0deg) scale(1.01); }

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

.showcase__photo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0) 30%,
    rgba(15, 23, 42, 0.55) 60%,
    rgba(15, 23, 42, 0.92) 100%
  );
  padding: 28px;
}

.showcase__overlay-text {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase__overlay-text {
  color: #fff;
}

.showcase__overlay-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FB923C;
  margin-bottom: 8px;
}

.showcase__overlay-title {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  max-width: 380px;
}

.showcase__content {
  padding: 8px 0;
}

.section-title--sm {
  font-size: 36px;
  margin-bottom: 16px;
}

.showcase__sub {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* ============================================ */
/* === Brand logo strip (Avito, WA, TG, BX, MAX) === */
/* ============================================ */

.brands {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.brand-row.feature__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.brand-row .brand {
  flex-direction: row;
  padding: 8px 14px;
  gap: 8px;
  font-size: 13px;
  background: #FAF7F2;
}

.brand svg {
  flex: none;
  transition: transform 0.4s ease;
  animation: brand-float 4.5s ease-in-out infinite;
}
.brand:nth-child(2) svg { animation-delay: 0.4s; }
.brand:nth-child(3) svg { animation-delay: 0.8s; }
.brand:nth-child(4) svg { animation-delay: 1.2s; }
.brand:nth-child(5) svg { animation-delay: 1.6s; }

.brand span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-strong);
  letter-spacing: 0.01em;
}

.brand-row .brand span {
  font-size: 13px;
}

.brand:hover {
  transform: translateY(-3px);
  border-color: rgba(234, 88, 12, 0.4);
  box-shadow: 0 12px 24px -10px rgba(15, 23, 42, 0.18);
}

.brand:hover svg {
  animation-play-state: paused;
  transform: scale(1.1) rotate(-3deg);
}

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

/* Pulse halo on brand cards in showcase */
.brands .brand::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(234, 88, 12, 0.08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.brands .brand:hover::before { opacity: 1; }

/* ============================================ */
/* === Plan feature: muted "no return" note === */
/* ============================================ */

.plan__feature--muted {
  color: var(--text-muted);
  font-size: 14px;
  position: relative;
  padding-left: 30px;
}
.plan__feature--muted::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FEE2E2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M6 6l12 12M18 6L6 18' stroke='%23DC2626' stroke-width='3' stroke-linecap='round'/></svg>");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* override default check icon for the muted feature */
.plan__features li.plan__feature--muted {
  list-style: none;
}

.plan__feature-note {
  display: block;
  font-size: 13px;
  color: var(--text-muted, #94A3B8);
  margin-top: 2px;
  font-weight: 500;
}

/* Guarantee hint */
.guarantee__hint {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  display: inline-block;
  margin-left: 4px;
}

/* ============================================ */
/* === Mobile === */
/* ============================================ */

@media (max-width: 900px) {
  .showcase__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .showcase__photo {
    transform: none;
    aspect-ratio: 4 / 3;
    max-width: 560px;
    margin: 0 auto;
  }
  .section-title--sm {
    font-size: 28px;
  }
  .brands {
    grid-template-columns: repeat(3, 1fr);
  }
  .brands .brand:nth-child(4),
  .brands .brand:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .brands {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase__overlay-title {
    font-size: 18px;
  }
}

.plan__feature--choice strong {
  display: inline-block;
  margin-bottom: 4px;
}
.plan__choice {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 4px 10px;
  background: var(--accent-cream);
  border-radius: 8px;
  border: 1px solid var(--border-warm);
  margin-top: 4px;
}
.plan__choice em {
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
  font-size: 12px;
  padding: 0 4px;
}
