:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --surface-soft: #f1f3fb;
  --text: #111827;
  --muted: #667085;
  --line: #e6e8f0;
  --primary: #5b4ef5;
  --primary-dark: #4538df;
  --primary-soft: #eceafd;
  --secondary: #7c3aed;
  --success: #16a34a;
  --danger: #ef4444;
  --shadow-sm: 0 10px 30px rgba(30, 36, 70, .08);
  --shadow-lg: 0 28px 80px rgba(45, 38, 140, .16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1200px;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open { overflow: hidden; }

button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { border: 0; }

.page-shell { overflow: hidden; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 1040px); }
.section { position: relative; padding: 112px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(246, 248, 252, .86);
  border-bottom: 1px solid rgba(230, 232, 240, .75);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 10px 24px rgba(91, 78, 245, .28);
}
.brand-mark svg { width: 30px; height: 30px; fill: currentColor; }
.brand-mark .brand-mark-dot { fill: none; stroke: #6b57ef; stroke-width: 2.7; stroke-linecap: round; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.18; }
.brand-copy strong { font-size: 17px; letter-spacing: -.02em; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 11px; }

.desktop-nav { display: flex; align-items: center; gap: 25px; margin-left: auto; }
.desktop-nav a {
  color: #4b5563;
  font-size: 14px;
  font-weight: 600;
  transition: color .2s ease;
}
.desktop-nav a:hover { color: var(--primary); }
.header-cta { margin-left: 4px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 750;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #6c4cf6);
  box-shadow: 0 14px 34px rgba(91, 78, 245, .26);
}
.button-primary:hover { box-shadow: 0 18px 40px rgba(91, 78, 245, .34); }
.button-secondary { color: var(--text); background: rgba(255, 255, 255, .85); border: 1px solid var(--line); }
.button-secondary:hover { background: #fff; box-shadow: var(--shadow-sm); }
.button-white { color: var(--primary-dark); background: #fff; box-shadow: 0 16px 34px rgba(33, 25, 111, .2); }
.button-small { min-height: 42px; padding: 9px 18px; font-size: 14px; }
.button-large { min-height: 56px; padding: 15px 25px; border-radius: 16px; }
.button-full { width: 100%; }
.play-mini {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-soft);
  position: relative;
}
.play-mini::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 7px;
  border-left: 7px solid var(--primary);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border-radius: 12px; background: #fff; border: 1px solid var(--line); }
.menu-toggle span { display: block; height: 2px; background: var(--text); border-radius: 5px; margin: 5px 0; transition: .2s ease; }
.mobile-menu { border-top: 1px solid var(--line); background: rgba(255, 255, 255, .97); }
.mobile-menu-inner { padding: 18px 0 24px; display: grid; gap: 8px; }
.mobile-menu-inner > a:not(.button) { padding: 10px 4px; font-weight: 650; }

.hero { min-height: calc(100vh - var(--header-height)); display: flex; align-items: center; padding-top: 86px; padding-bottom: 90px; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: 72px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.eyebrow { padding: 9px 13px; border: 1px solid #ddd9ff; border-radius: 999px; background: rgba(255, 255, 255, .78); letter-spacing: .02em; text-transform: none; }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(22, 163, 74, .12); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 730px;
  margin: 24px 0 24px;
  font-size: clamp(44px, 5.4vw, 74px);
  line-height: .99;
  letter-spacing: -.055em;
}
h1 span { color: var(--primary); }
.hero-lead { max-width: 680px; margin-bottom: 30px; color: var(--muted); font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 28px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 0; padding: 0; list-style: none; color: #475467; font-size: 14px; font-weight: 650; }
.hero-points li { position: relative; padding-left: 22px; }
.hero-points li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--success); font-weight: 900; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(6px); pointer-events: none; }
.hero-glow-one { width: 520px; height: 520px; right: 1%; top: 40px; background: radial-gradient(circle, rgba(124, 58, 237, .15), transparent 66%); }
.hero-glow-two { width: 360px; height: 360px; left: -120px; bottom: -120px; background: radial-gradient(circle, rgba(59, 130, 246, .12), transparent 68%); }

.hero-visual { min-height: 650px; position: relative; display: grid; place-items: center; }
.phone {
  position: relative;
  width: 338px;
  height: 650px;
  border: 8px solid #14151e;
  border-radius: 48px;
  overflow: hidden;
  background: #eef0f5;
  box-shadow: 0 40px 100px rgba(28, 24, 92, .27), inset 0 0 0 1px rgba(255,255,255,.1);
  transform: rotate(1.2deg);
}
.phone-top { height: 34px; padding: 9px 18px 0; display: flex; align-items: flex-start; justify-content: space-between; color: #111827; font-size: 11px; font-weight: 800; background: #fff; }
.phone-notch { position: absolute; left: 50%; top: 7px; width: 102px; height: 24px; border-radius: 20px; background: #12131a; transform: translateX(-50%); }
.phone-icons { letter-spacing: 2px; font-size: 8px; }
.messenger-head { height: 67px; padding: 9px 16px; display: flex; align-items: center; gap: 10px; color: #fff; background: linear-gradient(135deg, #6052f5, #7b4cf3); }
.back-icon { font-size: 30px; line-height: 1; font-weight: 300; }
.bot-avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: var(--primary); background: #fff; font-weight: 900; }
.messenger-title { display: flex; flex-direction: column; line-height: 1.15; }
.messenger-title strong { font-size: 14px; }
.messenger-title small { color: rgba(255,255,255,.7); font-size: 11px; }
.dots { margin-left: auto; letter-spacing: 2px; }
.chat-area { position: relative; height: calc(100% - 101px); padding: 18px 12px; background: radial-gradient(circle at top right, rgba(124,58,237,.09), transparent 42%), #e9edf4; }
.chat-date { width: max-content; margin: 0 auto 12px; padding: 5px 10px; border-radius: 999px; color: #6b7280; background: rgba(255,255,255,.75); font-size: 10px; font-weight: 700; }
.message-card { position: relative; width: 94%; padding: 15px 15px 35px; border-radius: 18px 18px 18px 5px; background: #fff; box-shadow: 0 12px 28px rgba(62,68,94,.12); color: #293141; font-size: 11px; line-height: 1.48; }
.message-card p { margin: 0 0 5px; }
.message-label { display: flex; align-items: center; gap: 7px; margin-bottom: 12px; color: var(--primary); font-weight: 850; font-size: 13px; }
.message-label span { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.12); }
.message-card dl { margin: 0; }
.message-card dl div { display: flex; justify-content: space-between; gap: 10px; padding: 3px 0; }
.message-card dt { color: #8b93a4; }
.message-card dd { margin: 0; font-weight: 750; }
.message-divider { height: 1px; margin: 10px 0; background: #edf0f5; }
.message-text { margin: 10px 0 12px; padding: 10px; border-radius: 10px; background: #f7f8fb; }
.message-text b { display: block; margin-bottom: 3px; }
.message-actions { display: grid; gap: 7px; margin-top: 13px; }
.message-actions button { min-height: 34px; border-radius: 9px; color: #fff; background: var(--primary); font-size: 10px; font-weight: 800; }
.message-actions .ghost-action { color: var(--primary); background: var(--primary-soft); }
.message-card time { position: absolute; right: 12px; bottom: 10px; color: #a0a6b2; font-size: 9px; }
.typing-row { width: max-content; margin-top: 16px; padding: 9px 13px; display: flex; gap: 4px; border-radius: 15px 15px 15px 5px; background: #fff; }
.typing-row span { width: 5px; height: 5px; border-radius: 50%; background: #b7bcc8; animation: typing 1.2s infinite ease-in-out; }
.typing-row span:nth-child(2) { animation-delay: .15s; }
.typing-row span:nth-child(3) { animation-delay: .3s; }
@keyframes typing { 0%, 70%, 100% { transform: translateY(0); } 35% { transform: translateY(-4px); } }

.team-pill,
.delivery-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 17px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}
.team-pill { min-width: 170px; }
.team-pill-owner { left: -5px; top: 130px; }
.team-pill-manager { right: -12px; top: 260px; }
.avatar { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 13px; font-weight: 850; }
.avatar-violet { background: linear-gradient(135deg, #7c3aed, #5b4ef5); }
.avatar-blue { background: linear-gradient(135deg, #0ea5e9, #3b82f6); }
.team-pill > span:nth-child(2) { display: flex; flex-direction: column; line-height: 1.2; }
.team-pill strong { font-size: 12px; }
.team-pill small { color: var(--muted); font-size: 10px; margin-top: 3px; }
.status-dot { width: 9px; height: 9px; margin-left: auto; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.12); }
.delivery-card { left: 3px; bottom: 76px; min-width: 245px; }
.delivery-icon { width: 36px; height: 36px; border-radius: 12px; display: grid; place-items: center; color: #fff; background: var(--success); }
.delivery-icon svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2.5; }
.delivery-card > div:last-child { display: flex; flex-direction: column; line-height: 1.25; }
.delivery-card strong { font-size: 12px; }
.delivery-card span { margin-top: 4px; color: var(--muted); font-size: 10px; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.6); }
.trust-grid { min-height: 112px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-grid > div { min-height: 55px; padding: 0 26px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong { font-size: 24px; letter-spacing: -.04em; }
.trust-grid span { color: var(--muted); font-size: 13px; }

.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2,
.comparison-copy h2,
.integrations-copy h2,
.price-copy h2,
.faq-heading h2,
.safety-card h2,
.final-copy h2 {
  margin: 13px 0 17px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.section-heading p,
.comparison-copy p,
.integrations-copy > p,
.price-copy > p,
.faq-heading p,
.safety-card p,
.final-copy p { color: var(--muted); font-size: 18px; }

.video-section { background: #fff; }
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, #16112d, #35208a 52%, #5b4ef5);
  box-shadow: var(--shadow-lg);
}
.video-backdrop { position: absolute; inset: 0; display: grid; place-items: center; background: radial-gradient(circle at 75% 18%, rgba(255,255,255,.22), transparent 22%), linear-gradient(120deg, rgba(255,255,255,.04), transparent); }
.video-preview-window { width: 68%; height: 63%; padding: 24px; border: 1px solid rgba(255,255,255,.25); border-radius: 20px; background: rgba(255,255,255,.11); transform: perspective(900px) rotateX(4deg) rotateY(-8deg); box-shadow: 0 30px 70px rgba(0,0,0,.25); backdrop-filter: blur(6px); }
.preview-dot { display: inline-block; width: 9px; height: 9px; margin-right: 5px; border-radius: 50%; background: rgba(255,255,255,.6); }
.preview-lines { margin-top: 28px; width: 45%; display: grid; gap: 12px; }
.preview-lines span { height: 9px; border-radius: 999px; background: rgba(255,255,255,.37); }
.preview-lines span:nth-child(2) { width: 76%; }
.preview-lines span:nth-child(3) { width: 88%; }
.preview-lines span:nth-child(4) { width: 58%; }
.preview-card { position: absolute; width: 34%; height: 55%; right: 8%; top: 22%; border-radius: 16px; background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.72)); box-shadow: 0 20px 40px rgba(8,4,35,.25); }
.preview-card::before, .preview-card::after { content: ""; position: absolute; left: 12%; right: 12%; border-radius: 999px; background: #c7c4fa; }
.preview-card::before { top: 18%; height: 9%; }
.preview-card::after { top: 39%; height: 34%; background: #f0effc; border-radius: 10px; }
.video-play { position: absolute; left: 50%; top: 50%; width: 86px; height: 86px; display: grid; place-items: center; border-radius: 50%; color: var(--primary); background: #fff; box-shadow: 0 20px 50px rgba(0,0,0,.25); transform: translate(-50%, -50%); transition: transform .2s ease; }
.video-frame:hover .video-play { transform: translate(-50%, -50%) scale(1.07); }
.video-play svg { width: 34px; fill: currentColor; }
.video-caption { position: absolute; left: 30px; right: 30px; bottom: 24px; color: #fff; display: flex; justify-content: space-between; gap: 20px; }
.video-caption strong { font-size: 18px; }
.video-caption span { color: rgba(255,255,255,.72); font-size: 13px; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step-card, .feature-card, .platform-card, .price-card, .comparison-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 8px 26px rgba(34, 40, 76, .045);
}
.step-card { position: relative; min-height: 310px; padding: 28px; border-radius: var(--radius-md); overflow: hidden; }
.step-card::after { content: ""; position: absolute; inset: auto -40px -55px auto; width: 130px; height: 130px; border-radius: 50%; background: var(--surface-soft); }
.step-number { position: absolute; right: 22px; top: 18px; color: #eceef5; font-size: 52px; line-height: 1; font-weight: 900; letter-spacing: -.08em; }
.step-icon, .feature-icon { width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; }
.step-icon svg, .feature-icon svg, .platform-card svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.icon-purple { color: #6d5df7; background: #efedff; }
.icon-blue { color: #2589ee; background: #e8f4ff; }
.icon-pink { color: #d84c98; background: #fcebf5; }
.icon-green { color: #12a463; background: #e8f8f0; }
.icon-orange { color: #e88425; background: #fff1e4; }
.step-card h3 { margin: 28px 0 10px; font-size: 21px; letter-spacing: -.025em; }
.step-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); }

.comparison-section { background: linear-gradient(180deg, #f0f2fa, #f6f8fc); }
.comparison-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; }
.comparison-copy { max-width: 500px; }
.comparison-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.comparison-card { min-height: 350px; padding: 28px; border-radius: var(--radius-md); }
.comparison-before { background: #fffafa; border-color: #fde1e1; }
.comparison-after { background: #f7fff9; border-color: #d6f1df; }
.comparison-title { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; font-size: 18px; font-weight: 850; }
.comparison-symbol { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; }
.comparison-before .comparison-symbol { color: #d94141; background: #fee7e7; }
.comparison-after .comparison-symbol { color: #128246; background: #dcf7e6; }
.comparison-card ul, .price-card ul, .mini-list { margin: 0; padding: 0; list-style: none; }
.comparison-card li { position: relative; padding: 14px 0 14px 27px; color: #525a68; border-bottom: 1px solid rgba(0,0,0,.055); }
.comparison-card li:last-child { border-bottom: 0; }
.comparison-before li::before { content: "×"; position: absolute; left: 0; color: #e55a5a; font-weight: 900; }
.comparison-after li::before { content: "✓"; position: absolute; left: 0; color: #16a34a; font-weight: 900; }

.features-section { background: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { min-height: 250px; padding: 28px; border-radius: var(--radius-md); }
.feature-card h3 { margin: 22px 0 10px; font-size: 21px; letter-spacing: -.025em; }
.feature-card > p { margin: 0; color: var(--muted); }
.feature-wide { grid-column: span 3; min-height: 390px; display: grid; grid-template-columns: 1fr .85fr; gap: 40px; align-items: center; }
.feature-gradient { border: 0; color: #fff; background: linear-gradient(135deg, #4d42db, #6e45ee 55%, #8d4adf); box-shadow: 0 26px 70px rgba(91,78,245,.23); }
.feature-gradient p { color: rgba(255,255,255,.78); }
.feature-tag { display: inline-block; padding: 7px 11px; border-radius: 999px; color: #fff; background: rgba(255,255,255,.15); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.feature-copy h3 { max-width: 580px; margin: 17px 0 13px; font-size: clamp(28px, 3vw, 42px); line-height: 1.08; letter-spacing: -.04em; }
.mini-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.mini-list li { padding: 9px 12px; border-radius: 11px; background: rgba(255,255,255,.12); font-size: 13px; font-weight: 700; }
.invite-visual { display: grid; place-items: center; }
.invite-card { width: min(100%, 355px); padding: 26px; border-radius: 24px; color: var(--text); background: #fff; box-shadow: 0 30px 60px rgba(20,12,72,.28); transform: rotate(2deg); }
.invite-logo { width: 48px; height: 48px; margin-bottom: 18px; border-radius: 16px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--primary), var(--secondary)); font-weight: 900; }
.invite-card strong { font-size: 19px; }
.invite-card p { margin: 10px 0 18px; color: var(--muted); font-size: 14px; }
.invite-button { display: block; padding: 12px; border-radius: 12px; color: #fff; background: var(--primary); text-align: center; font-size: 13px; font-weight: 800; }

.integrations-section { background: #f2f4fa; }
.integrations-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; }
.integrations-copy { max-width: 500px; }
.integration-note { margin-top: 25px; padding: 15px 17px; display: flex; gap: 12px; border: 1px solid #dedcf7; border-radius: 15px; color: #4b4e67; background: rgba(255,255,255,.72); font-size: 14px; }
.integration-note svg { flex: 0 0 22px; width: 22px; fill: none; stroke: var(--primary); stroke-width: 2; }
.integration-doc-link { margin-top: 16px; }
.platform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.platform-card { min-height: 160px; padding: 22px; display: flex; gap: 16px; border-radius: 20px; }
.platform-logo { flex: 0 0 50px; width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; font-weight: 900; }
.platform-tilda { color: #fff; background: #ef4d4d; }
.platform-wp { color: #fff; background: #21759b; }
.platform-bitrix { color: #fff; background: #27a8e0; font-size: 14px; }
.platform-api { color: #fff; background: linear-gradient(135deg, #111827, #374151); font-size: 12px; }
.platform-card h3 { margin: 2px 0 5px; font-size: 18px; }
.platform-card p { margin: 0; color: var(--muted); font-size: 14px; }

.flow-section { background: #fff; }
.flow-track { display: flex; align-items: stretch; justify-content: space-between; gap: 14px; }
.flow-item { flex: 1; min-height: 210px; padding: 25px 18px; border: 1px solid var(--line); border-radius: 22px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: #fff; }
.flow-icon { width: 58px; height: 58px; margin-bottom: 18px; border-radius: 18px; display: grid; place-items: center; color: var(--primary); background: var(--primary-soft); }
.flow-icon svg { width: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.flow-item strong { font-size: 16px; }
.flow-item small { margin-top: 6px; color: var(--muted); }
.flow-arrow { align-self: center; color: #b2b5c4; font-size: 30px; font-weight: 300; }

.price-section { background: linear-gradient(180deg, #f0f2fa, #f7f8fc); }
.price-layout { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: center; }
.payment-options { display: grid; gap: 12px; margin-top: 30px; }
.payment-options > div { max-width: 470px; padding: 13px 15px; display: flex; align-items: center; gap: 13px; border-radius: 15px; background: rgba(255,255,255,.7); border: 1px solid var(--line); }
.payment-options > div > span { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; color: var(--primary); background: var(--primary-soft); font-weight: 850; }
.payment-options p { margin: 0; display: flex; flex-direction: column; line-height: 1.25; }
.payment-options strong { font-size: 14px; }
.payment-options small { margin-top: 4px; color: var(--muted); }
.price-card { padding: 38px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.price-badge { display: inline-block; padding: 8px 12px; border-radius: 999px; color: var(--primary); background: var(--primary-soft); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.price-value { display: flex; align-items: baseline; gap: 10px; margin: 24px 0 8px; }
.price-value strong { font-size: 50px; line-height: 1; letter-spacing: -.06em; }
.price-value span { color: var(--muted); }
.price-card > p { color: var(--muted); }
.price-card ul { margin: 24px 0 28px; display: grid; gap: 12px; }
.price-card li { position: relative; padding-left: 27px; color: #444c5c; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.manager-link { display: block; margin-top: 16px; color: var(--primary); text-align: center; font-size: 14px; font-weight: 750; }

.safety-section { background: #fff; }
.safety-card { padding: 50px 60px; border-radius: 30px; display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: center; background: linear-gradient(135deg, #edfff4, #f7fff9); border: 1px solid #d5f0df; }
.safety-card h2 { font-size: clamp(30px, 3.5vw, 46px); }
.safety-card p { margin-bottom: 0; }
.safety-icon { width: 82px; height: 82px; border-radius: 24px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, #16a34a, #27c76f); box-shadow: 0 20px 40px rgba(22,163,74,.2); }
.safety-icon svg { width: 42px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.faq-section { background: #f4f5fa; }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.faq-heading { position: sticky; top: calc(var(--header-height) + 32px); }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 18px; background: #fff; overflow: hidden; }
.faq-question { width: 100%; padding: 21px 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--text); background: transparent; text-align: left; font-weight: 780; cursor: pointer; }
.faq-question span { position: relative; flex: 0 0 26px; width: 26px; height: 26px; border-radius: 9px; background: var(--surface-soft); }
.faq-question span::before, .faq-question span::after { content: ""; position: absolute; left: 7px; right: 7px; top: 12px; height: 2px; border-radius: 5px; background: var(--primary); transition: transform .2s ease; }
.faq-question span::after { transform: rotate(90deg); }
.faq-item.is-open .faq-question span::after { transform: rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer p { min-height: 0; overflow: hidden; margin: 0; padding: 0 22px; color: var(--muted); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer p { padding-bottom: 21px; }

.final-cta { padding-top: 100px; padding-bottom: 100px; background: #fff; }
.final-card { position: relative; min-height: 450px; padding: 65px; border-radius: 34px; overflow: hidden; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; color: #fff; background: radial-gradient(circle at 76% 18%, rgba(255,255,255,.18), transparent 20%), linear-gradient(135deg, #392bbd, #5b4ef5 52%, #8b45d9); box-shadow: 0 32px 90px rgba(69,56,223,.25); }
.final-card::before { content: ""; position: absolute; width: 360px; height: 360px; right: -130px; bottom: -170px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.section-kicker.light { color: rgba(255,255,255,.72); }
.final-copy { position: relative; z-index: 2; max-width: 680px; }
.final-copy h2 { font-size: clamp(38px, 4.5vw, 60px); }
.final-copy p { color: rgba(255,255,255,.78); }
.final-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 30px; }
.final-actions > span { color: rgba(255,255,255,.78); font-weight: 700; }
.final-visual { position: relative; min-height: 300px; }
.final-circle { position: absolute; width: 190px; height: 190px; right: 40px; top: 70px; border: 1px solid rgba(255,255,255,.26); border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.11); backdrop-filter: blur(7px); }
.final-circle span { width: 92px; height: 92px; border-radius: 28px; display: grid; place-items: center; color: var(--primary); background: #fff; font-size: 38px; font-weight: 900; box-shadow: 0 18px 35px rgba(22,13,85,.25); }
.final-bubble { position: absolute; z-index: 2; padding: 13px 16px; border-radius: 15px; color: #312b6b; background: #fff; box-shadow: 0 16px 35px rgba(26,15,94,.24); font-size: 13px; font-weight: 800; }
.bubble-one { right: 165px; top: 25px; transform: rotate(-5deg); }
.bubble-two { right: 0; bottom: 35px; transform: rotate(4deg); }

.site-footer { padding: 72px 0 25px; color: #c8cbd7; background: #11131b; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .8fr; gap: 70px; }
.brand-footer .brand-copy strong { color: #fff; }
.brand-footer .brand-copy small { color: #8f94a4; }
.footer-brand > p { max-width: 430px; margin-top: 20px; color: #8f94a4; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong { margin-bottom: 8px; color: #fff; }
.footer-links a { color: #989dab; font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 25px; color: #747989; font-size: 12px; }
.mobile-sticky-cta { display: none; }

.video-modal { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 24px; opacity: 0; visibility: hidden; transition: .2s ease; }
.video-modal.is-open { opacity: 1; visibility: visible; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(8, 9, 17, .78); backdrop-filter: blur(7px); }
.video-modal-dialog { position: relative; z-index: 1; width: min(980px, 100%); aspect-ratio: 16/9; border-radius: 24px; overflow: hidden; background: #12131b; box-shadow: 0 40px 120px rgba(0,0,0,.45); }
.video-modal-close { position: absolute; right: 12px; top: 12px; z-index: 2; width: 42px; height: 42px; border-radius: 50%; color: #fff; background: rgba(0,0,0,.48); font-size: 28px; cursor: pointer; }
.video-modal-placeholder { height: 100%; display: grid; place-content: center; gap: 6px; color: #fff; text-align: center; background: linear-gradient(135deg, #18142b, #3e2d88); }
.video-modal-placeholder span { font-size: 26px; font-weight: 800; }
.video-modal-placeholder small { color: rgba(255,255,255,.62); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .09s; }
.reveal-delay-2 { transition-delay: .17s; }
.reveal-delay-3 { transition-delay: .25s; }

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

@media (max-width: 1080px) {
  .desktop-nav { gap: 16px; }
  .desktop-nav a { font-size: 13px; }
  .hero-grid { gap: 28px; }
  .hero-visual { transform: scale(.92); transform-origin: center right; }
  .team-pill-owner { left: -35px; }
  .team-pill-manager { right: -35px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison-grid, .integrations-grid, .price-layout, .faq-layout { gap: 45px; }
}

@media (max-width: 920px) {
  :root { --header-height: 70px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 70px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { max-width: 760px; margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .hero-visual { transform: none; max-width: 620px; margin: 10px auto 0; width: 100%; }
  .team-pill-owner { left: 0; }
  .team-pill-manager { right: 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); padding: 14px 0; }
  .trust-grid > div { min-height: 72px; border-bottom: 1px solid var(--line); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(3), .trust-grid > div:nth-child(4) { border-bottom: 0; }
  .comparison-grid, .integrations-grid, .price-layout, .faq-layout { grid-template-columns: 1fr; }
  .comparison-copy, .integrations-copy, .price-copy, .faq-heading { max-width: 720px; }
  .faq-heading { position: static; }
  .feature-wide { grid-template-columns: 1fr 1fr; }
  .flow-track { display: grid; grid-template-columns: 1fr 32px 1fr; }
  .flow-arrow:nth-of-type(2) { display: none; }
  .flow-item:nth-of-type(3), .flow-item:nth-of-type(4) { margin-top: 10px; }
  .final-card { grid-template-columns: 1fr; }
  .final-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 680px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 80px 0; }
  h1 { font-size: clamp(39px, 12vw, 54px); }
  .hero { padding-top: 54px; padding-bottom: 72px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .button-large { width: 100%; }
  .hero-points { display: grid; gap: 9px; text-align: left; margin-inline: auto; }
  .hero-visual { min-height: 585px; overflow: visible; }
  .phone { width: 294px; height: 570px; border-radius: 40px; }
  .team-pill { transform: scale(.88); }
  .team-pill-owner { left: -28px; top: 110px; }
  .team-pill-manager { right: -25px; top: 240px; }
  .delivery-card { left: -20px; bottom: 28px; transform: scale(.9); }
  .chat-area { padding: 13px 9px; }
  .message-card { font-size: 10px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div { padding: 12px; text-align: center; border-right: 0; }
  .trust-grid > div:nth-child(odd) { border-right: 1px solid var(--line); }
  .trust-grid > div:first-child { padding-left: 12px; }
  .trust-grid strong { font-size: 21px; }
  .video-frame { border-radius: 22px; }
  .video-preview-window { width: 82%; height: 58%; }
  .video-play { width: 68px; height: 68px; }
  .video-caption { left: 18px; right: 18px; bottom: 15px; flex-direction: column; gap: 2px; }
  .video-caption strong { font-size: 14px; }
  .steps-grid, .comparison-panels, .feature-grid, .platform-grid { grid-template-columns: 1fr; }
  .feature-wide { grid-column: span 1; grid-template-columns: 1fr; padding: 28px; }
  .invite-visual { margin-top: 10px; }
  .flow-track { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); }
  .flow-arrow:nth-of-type(2) { display: block; }
  .price-card { padding: 28px; }
  .price-value strong { font-size: 44px; }
  .safety-card { padding: 32px 25px; grid-template-columns: 1fr; }
  .safety-icon { width: 65px; height: 65px; border-radius: 20px; }
  .final-card { min-height: auto; padding: 40px 25px; border-radius: 26px; }
  .final-actions { align-items: stretch; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-sticky-cta { position: fixed; z-index: 120; left: 14px; right: 14px; bottom: 12px; min-height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 15px; color: #fff; background: linear-gradient(135deg, var(--primary), var(--secondary)); box-shadow: 0 16px 38px rgba(91,78,245,.36); font-weight: 800; }
  .site-footer { padding-bottom: 92px; }
}


/* Separate video instruction page */
.video-frame { display: block; }
.instruction-page { min-height: 100vh; background: radial-gradient(circle at 82% 5%, rgba(124,58,237,.13), transparent 28%), var(--bg); }
.instruction-header { position: relative; background: rgba(255,255,255,.9); }
.instruction-main { padding: 72px 0 110px; }
.instruction-intro { max-width: 850px; margin: 0 auto 38px; text-align: center; }
.instruction-intro h1 { margin: 15px 0 18px; font-size: clamp(38px, 6vw, 64px); line-height: 1.05; letter-spacing: -.055em; }
.instruction-intro p { max-width: 720px; margin: 0 auto; color: var(--muted); font-size: 18px; line-height: 1.65; }
.instruction-video-shell { max-width: 1120px; margin: 0 auto; padding: 14px; border: 1px solid rgba(91,78,245,.14); border-radius: 30px; background: rgba(255,255,255,.82); box-shadow: var(--shadow-lg); }
.instruction-video-placeholder { position: relative; aspect-ratio: 16 / 9; overflow: hidden; display: grid; place-items: center; border-radius: 21px; color: #fff; text-align: center; background: radial-gradient(circle at 74% 22%, rgba(255,255,255,.17), transparent 22%), linear-gradient(135deg, #171329, #423095 54%, #614ee6); }
.instruction-video-placeholder::before { content: ""; position: absolute; width: 460px; height: 460px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; transform: translate(50%, -45%); }
.instruction-placeholder-content { position: relative; z-index: 1; max-width: 620px; padding: 28px; }
.instruction-play-icon { width: 88px; height: 88px; margin: 0 auto 24px; display: grid; place-items: center; border-radius: 50%; color: var(--primary); background: #fff; box-shadow: 0 20px 55px rgba(0,0,0,.28); }
.instruction-play-icon svg { width: 37px; fill: currentColor; }
.instruction-placeholder-content strong { display: block; margin-bottom: 10px; font-size: clamp(22px, 3vw, 34px); }
.instruction-placeholder-content span { color: rgba(255,255,255,.72); line-height: 1.6; }
.instruction-note { max-width: 960px; margin: 26px auto 0; padding: 22px 24px; display: flex; align-items: flex-start; gap: 14px; border: 1px solid var(--line); border-radius: 18px; background: #fff; color: #4b5565; }
.instruction-note svg { flex: 0 0 auto; width: 22px; fill: none; stroke: var(--primary); stroke-width: 2; }
.instruction-note p { margin: 0; line-height: 1.65; }
.instruction-actions { margin-top: 34px; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.instruction-footer { padding-top: 0; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 750; }
.back-link svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.instruction-footer-links { display: flex; gap: 22px; }
.instruction-footer-links a:hover { color: #fff; }

@media (max-width: 700px) {
  .instruction-main { padding: 46px 0 86px; }
  .instruction-intro { text-align: left; }
  .instruction-intro p { font-size: 16px; }
  .instruction-video-shell { padding: 7px; border-radius: 20px; }
  .instruction-video-placeholder { border-radius: 14px; }
  .instruction-play-icon { width: 62px; height: 62px; margin-bottom: 15px; }
  .instruction-play-icon svg { width: 27px; }
  .instruction-placeholder-content { padding: 18px; }
  .instruction-placeholder-content span { font-size: 13px; }
  .instruction-note { padding: 18px; }
  .instruction-actions .button { width: 100%; }
  .instruction-footer-links { align-items: flex-start; flex-direction: column; gap: 8px; }
}
.instruction-video-frame { width: 100%; aspect-ratio: 16 / 9; display: block; border: 0; border-radius: 21px; background: #11131b; }
@media (max-width: 760px) {
  .instruction-header .header-inner { min-height: 76px; gap: 10px; }
  .instruction-header .back-link { margin-left: auto; font-size: 13px; }
  .instruction-header .header-cta { display: none; }
}
@media (max-width: 520px) {
  .instruction-header .brand-copy small { display: none; }
  .instruction-header .back-link { max-width: 120px; line-height: 1.25; }
  .instruction-video-frame { border-radius: 14px; }
}
.instruction-play-icon svg path { fill: currentColor; stroke: none; }
.instruction-play-icon svg { display: none; }
.instruction-play-icon::after { content: ""; width: 0; height: 0; margin-left: 6px; border-top: 13px solid transparent; border-bottom: 13px solid transparent; border-left: 20px solid var(--primary); }
@media (max-width: 700px) {
  .instruction-play-icon::after { margin-left: 4px; border-top-width: 10px; border-bottom-width: 10px; border-left-width: 16px; }
}
