:root {
  --primary: #6f31e8;
  --primary-light: #a34bff;
  --primary-dark: #2b1269;
  --navy: #10083d;
  --text: #19172b;
  --muted: #6b687e;
  --surface: #ffffff;
  --surface-soft: #f7f5fc;
  --border: rgba(26, 12, 69, 0.10);
  --green: #20b65a;
  --shadow: 0 24px 70px rgba(36, 17, 94, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #fbfaff;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section { padding: 110px 0; position: relative; }
.section--light { background: var(--surface); }
.section--dark {
  background: linear-gradient(145deg, #10072e, #1d0a52 65%, #2c0f6b);
  color: #fff;
  overflow: hidden;
}
.section--dark::before {
  content: "";
  position: absolute;
  inset: -200px auto auto 60%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(143, 70, 255, .18);
  filter: blur(20px);
}

.page-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
  z-index: -1;
}
.page-glow--one {
  width: 440px; height: 440px;
  top: 70px; right: -170px;
  background: rgba(156, 78, 255, 0.18);
}
.page-glow--two {
  width: 320px; height: 320px;
  top: 560px; left: -210px;
  background: rgba(80, 38, 220, 0.12);
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 18px 0;
  transition: .25s ease;
}
.header.scrolled {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 35px rgba(23, 10, 62, .08);
  padding: 12px 0;
}
.header__content { display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Manrope", sans-serif; font-weight: 800; font-size: 24px; }
.brand img { width: 42px; height: 42px; object-fit: cover; object-position: top; border-radius: 13px; }
.brand > span > span { color: var(--primary); }
.nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 600; }
.nav > a:not(.button) { position: relative; color: #3c3950; }
.nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--primary); transition: .25s; }
.nav > a:not(.button):hover::after { right: 0; }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; }
.menu-button span { display: block; width: 24px; height: 2px; margin: 5px; background: var(--navy); transition: .25s; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 44px; padding: 0 18px; color: white !important; background: var(--navy); }
.button--primary { color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-light)); box-shadow: 0 16px 35px rgba(111,49,232,.26); }
.button--primary:hover { box-shadow: 0 20px 42px rgba(111,49,232,.34); }
.button--ghost { border: 1px solid var(--border); background: rgba(255,255,255,.7); }
.button--white { background: #fff; color: var(--primary-dark); white-space: nowrap; box-shadow: 0 16px 30px rgba(14, 6, 45, .18); }

.hero { min-height: 800px; display: flex; align-items: center; padding-top: 150px; }
.hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 55px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--primary); font-weight: 700; font-size: 13px; letter-spacing: .02em; text-transform: uppercase; }
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(32,182,90,.12); }
.eyebrow--light { color: #7d36e7; }
.hero h1, .section-heading h2, .split-section h2, .cta-card h2 { font-family: "Manrope", sans-serif; letter-spacing: -.04em; margin: 0; }
.hero h1 { margin-top: 22px; max-width: 680px; font-size: clamp(44px, 5vw, 70px); line-height: 1.04; color: var(--navy); }
.hero h1 span { color: transparent; background: linear-gradient(135deg, #5f24d1, #a74fff); background-clip: text; -webkit-background-clip: text; }
.hero__content > p { max-width: 620px; margin: 24px 0 0; font-size: 18px; line-height: 1.75; color: var(--muted); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 35px; }
.trust-row { display: flex; gap: 34px; margin-top: 42px; }
.trust-row div { display: grid; gap: 4px; }
.trust-row strong { font-family: "Manrope"; font-size: 22px; color: var(--navy); }
.trust-row span { color: var(--muted); font-size: 12px; }

.hero__visual { position: relative; min-height: 580px; display: grid; place-items: center; }
.visual-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(116, 51, 232, .13); }
.visual-orbit--one { width: 520px; height: 520px; }
.visual-orbit--two { width: 420px; height: 420px; border-style: dashed; animation: rotate 30s linear infinite; }
.chat-card { position: relative; z-index: 2; width: min(420px, 92%); border: 1px solid rgba(255,255,255,.7); background: rgba(255,255,255,.94); border-radius: 26px; box-shadow: var(--shadow); overflow: hidden; transform: rotate(1.2deg); }
.chat-card__header { display: flex; align-items: center; gap: 12px; padding: 18px; color: white; background: linear-gradient(135deg, #2d146a, #7130df); }
.assistant-avatar { width: 47px; height: 47px; border-radius: 50%; overflow: hidden; background: #fff; border: 2px solid rgba(255,255,255,.35); }
.assistant-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.chat-card__header strong, .chat-card__header span { display: block; }
.chat-card__header span { margin-top: 4px; font-size: 11px; color: rgba(255,255,255,.75); }
.chat-card__header span i { display: inline-block; width: 7px; height: 7px; margin-right: 4px; border-radius: 50%; background: #52e17e; }
.chat-card__dots { margin-left: auto; letter-spacing: 2px; opacity: .6; }
.chat-card__body { min-height: 410px; padding: 24px 20px; background-color: #f6f1fb; background-image: radial-gradient(rgba(83, 39, 145, .05) 1px, transparent 1px); background-size: 18px 18px; }
.message { position: relative; max-width: 82%; padding: 12px 13px 20px; border-radius: 13px; font-size: 13px; line-height: 1.55; box-shadow: 0 6px 16px rgba(24, 10, 61, .06); }
.message small { position: absolute; right: 9px; bottom: 5px; color: #8b8798; font-size: 9px; }
.message--received { background: #fff; border-top-left-radius: 4px; }
.message--sent { margin: 16px 0 0 auto; color: #fff; background: linear-gradient(135deg, #6730d5, #8c43ed); border-top-right-radius: 4px; }
.message--sent small { color: rgba(255,255,255,.72); }
.options { display: grid; gap: 8px; width: 78%; margin-top: 12px; }
.options button { cursor: default; text-align: left; border: 1px solid rgba(111,49,232,.16); border-radius: 9px; padding: 9px 11px; color: #5222b6; background: #fff; font-size: 11px; font-weight: 600; }
.typing { display: flex; gap: 4px; width: max-content; margin-top: 15px; padding: 12px 16px; background: #fff; border-radius: 13px; box-shadow: 0 6px 16px rgba(24,10,61,.06); }
.typing span { width: 6px; height: 6px; border-radius: 50%; background: #8d879b; animation: typing 1.2s ease-in-out infinite; }
.typing span:nth-child(2) { animation-delay: .15s; }
.typing span:nth-child(3) { animation-delay: .3s; }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.7); background: rgba(255,255,255,.9); backdrop-filter: blur(10px); border-radius: 14px; box-shadow: 0 15px 35px rgba(28, 12, 71, .13); }
.floating-card--top { top: 115px; right: -15px; }
.floating-card--bottom { bottom: 85px; left: -5px; }
.floating-card__icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; color: white; background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { color: var(--navy); font-size: 12px; }
.floating-card small { margin-top: 3px; color: var(--muted); font-size: 10px; }

.logos-strip { padding: 25px 0; border-block: 1px solid var(--border); background: rgba(255,255,255,.6); }
.logos-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.logos-strip .container > span { color: var(--muted); font-size: 12px; font-weight: 600; }
.business-types { display: flex; align-items: center; gap: 22px; color: #4d495e; font-size: 13px; font-weight: 700; }
.business-types i { width: 4px; height: 4px; border-radius: 50%; background: var(--primary-light); }

.section-heading { max-width: 760px; margin: 0 auto 54px; text-align: center; }
.section-heading h2, .split-section h2 { margin-top: 16px; font-size: clamp(36px, 4.3vw, 54px); line-height: 1.12; color: var(--navy); }
.section-heading p, .split-section__content > p { margin: 18px auto 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.section-heading--dark h2 { color: #fff; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { padding: 34px; border: 1px solid var(--border); border-radius: var(--radius-md); background: #fff; box-shadow: 0 18px 45px rgba(35, 18, 83, .05); transition: .25s ease; }
.feature-card:hover { transform: translateY(-7px); border-color: rgba(111,49,232,.24); box-shadow: var(--shadow); }
.feature-card__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 15px; font-size: 23px; background: linear-gradient(135deg, #f1eaff, #faf7ff); }
.feature-card h3 { margin: 22px 0 10px; font-size: 19px; color: var(--navy); }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 14px; }

.split-section { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 85px; }
.benefits-visual { position: relative; min-height: 440px; display: grid; place-items: center; }
.benefits-visual::before { content: ""; position: absolute; width: 390px; height: 390px; border-radius: 50%; background: linear-gradient(135deg, rgba(114,49,232,.13), rgba(172,79,255,.06)); }
.dashboard-card { position: relative; z-index: 2; width: 390px; padding: 28px; border: 1px solid rgba(255,255,255,.9); border-radius: 24px; background: rgba(255,255,255,.95); box-shadow: var(--shadow); }
.dashboard-card__top { display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; }
.dashboard-card__top strong { color: var(--green); }
.dashboard-card__number { margin-top: 12px; font: 800 46px "Manrope"; color: var(--navy); }
.dashboard-card__chart { height: 145px; margin-top: 20px; display: flex; align-items: end; gap: 13px; }
.dashboard-card__chart span { flex: 1; min-height: 18px; border-radius: 7px 7px 3px 3px; background: linear-gradient(180deg, #9e4cff, #5a27c7); }
.mini-card { position: absolute; z-index: 3; width: 125px; padding: 16px; border-radius: 16px; background: #fff; box-shadow: 0 18px 40px rgba(28, 12, 71, .14); }
.mini-card strong, .mini-card span { display: block; }
.mini-card strong { font: 800 24px "Manrope"; color: var(--primary); }
.mini-card span { margin-top: 4px; color: var(--muted); font-size: 11px; }
.mini-card--one { left: -5px; top: 65px; }
.mini-card--two { right: -10px; bottom: 55px; }
.check-list { display: grid; gap: 16px; padding: 0; margin: 30px 0 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; color: #373349; }
.check-list span { display: grid; place-items: center; flex: 0 0 28px; height: 28px; border-radius: 50%; color: var(--primary); background: #eee8ff; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 1; }
.step { min-height: 260px; padding: 30px; border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius-md); background: rgba(255,255,255,.055); backdrop-filter: blur(10px); }
.step__number { display: inline-flex; color: #b375ff; font: 800 14px "Manrope"; }
.step h3 { margin: 50px 0 12px; font-size: 20px; }
.step p { margin: 0; color: rgba(255,255,255,.66); font-size: 14px; line-height: 1.75; }

.cta-section { padding: 90px 0; }
.cta-card { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 56px; border-radius: var(--radius-lg); color: white; background: linear-gradient(135deg, #351278, #702cdb 60%, #9e4bff); box-shadow: 0 30px 70px rgba(72, 27, 163, .25); }
.cta-card__glow { position: absolute; width: 330px; height: 330px; right: 10%; bottom: -260px; border-radius: 50%; background: rgba(255,255,255,.17); }
.cta-card > *:not(.cta-card__glow) { position: relative; z-index: 1; }
.cta-card .eyebrow { color: #e2caff; }
.cta-card h2 { max-width: 720px; margin-top: 13px; font-size: clamp(32px, 4vw, 48px); line-height: 1.12; }
.cta-card p { max-width: 660px; margin: 15px 0 0; color: rgba(255,255,255,.72); line-height: 1.7; }

.footer { padding: 28px 0 35px; }
.footer__content { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand--footer { font-size: 19px; }
.brand--footer img { width: 34px; height: 34px; }
.footer p { color: var(--muted); font-size: 12px; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; color: white; background: #22c55e; box-shadow: 0 13px 30px rgba(34,197,94,.35); transition: .2s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 30px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay { transition-delay: .16s; }
.reveal--delay-sm { transition-delay: .1s; }
.reveal--delay-md { transition-delay: .2s; }

@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: .45; } 30% { transform: translateY(-4px); opacity: 1; } }

@media (max-width: 980px) {
  .nav { position: fixed; inset: 76px 18px auto; display: grid; gap: 5px; padding: 18px; border: 1px solid var(--border); border-radius: 18px; background: rgba(255,255,255,.97); box-shadow: var(--shadow); transform: translateY(-18px); opacity: 0; pointer-events: none; transition: .25s; }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 12px; }
  .menu-button { display: block; }
  .menu-button.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button.active span:nth-child(2) { opacity: 0; }
  .menu-button.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 130px; }
  .hero__grid, .split-section { grid-template-columns: 1fr; }
  .hero__content { text-align: center; }
  .hero__content > p, .hero h1 { margin-inline: auto; }
  .hero__actions, .trust-row { justify-content: center; }
  .hero__visual { min-height: 530px; }
  .logos-strip .container { flex-direction: column; }
  .business-types { flex-wrap: wrap; justify-content: center; }
  .feature-grid, .steps { grid-template-columns: 1fr; }
  .feature-card, .step { max-width: 660px; width: 100%; margin-inline: auto; }
  .split-section { gap: 50px; }
  .split-section__content { text-align: center; }
  .check-list { max-width: 480px; margin-inline: auto; text-align: left; }
  .cta-card { flex-direction: column; text-align: center; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .hero { min-height: auto; padding-top: 120px; }
  .hero h1 { font-size: 41px; }
  .hero__content > p { font-size: 16px; }
  .hero__actions { display: grid; }
  .trust-row { gap: 16px; justify-content: space-between; }
  .trust-row strong { font-size: 18px; }
  .trust-row span { font-size: 10px; }
  .hero__visual { min-height: 485px; margin-top: 20px; }
  .visual-orbit--one { width: 390px; height: 390px; }
  .visual-orbit--two { width: 315px; height: 315px; }
  .chat-card { width: 92%; }
  .chat-card__body { min-height: 370px; padding: 20px 15px; }
  .floating-card { transform: scale(.88); }
  .floating-card--top { right: -17px; top: 55px; }
  .floating-card--bottom { left: -17px; bottom: 30px; }
  .business-types i { display: none; }
  .business-types { gap: 12px 18px; }
  .feature-card { padding: 28px; }
  .benefits-visual { min-height: 370px; }
  .benefits-visual::before { width: 300px; height: 300px; }
  .dashboard-card { width: 90%; padding: 22px; }
  .mini-card { transform: scale(.86); }
  .mini-card--one { left: -18px; }
  .mini-card--two { right: -18px; }
  .cta-card { padding: 40px 24px; }
  .cta-card .button { width: 100%; }
  .footer__content { flex-direction: column; text-align: center; }
}
