:root {
  --navy-950: #041441;
  --navy-900: #061b4f;
  --navy-800: #0a286b;
  --blue: #0e6cff;
  --blue-bright: #55aaff;
  --sky: #b7ddff;
  --ink: #102344;
  --muted: #65738d;
  --paper: #f7f9fd;
  --line: #e3e8f1;
  --white: #ffffff;
  --shadow-soft: 0 18px 50px rgba(31, 59, 113, 0.09);
  --shadow-float: 0 22px 70px rgba(2, 19, 63, 0.28);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body, button, a { -webkit-tap-highlight-color: transparent; }

a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section-dark { color: var(--white); background: var(--navy-900); }
.section-light { color: var(--ink); background: var(--paper); }
.section-soft { color: var(--ink); background: #eef3fb; }

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  color: rgba(255, 255, 255, 0.78);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  border-bottom: 1px solid rgba(172, 209, 255, 0.13);
}

.official-logo { display: inline-flex; align-items: center; justify-content: center; width: 80px; height: 39px; padding: 0; border-radius: 0; background: transparent; box-shadow: none; transition: transform .25s var(--ease); }
.official-logo:hover { box-shadow: none; transform: translateY(-2px); }
.official-logo img { display: block; width: 80px; height: 39px; }
.official-logo--footer { width: 80px; height: 39px; padding: 0; box-shadow: none; background: transparent; }
.official-logo--footer:hover { box-shadow: none; }
.header-meta { display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 600; }
.live-dot { width: 7px; height: 7px; border-radius: 999px; background: #58dfab; box-shadow: 0 0 0 4px rgba(88, 223, 171, 0.12); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  overflow: hidden;
  background: radial-gradient(circle at 84% 47%, #0e377e 0, #071f5a 24%, var(--navy-900) 58%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -16%;
  bottom: -56%;
  width: 80%;
  height: 80%;
  content: "";
  background: radial-gradient(ellipse, rgba(20, 108, 255, 0.24), transparent 68%);
  filter: blur(20px);
}

.hero-grid, .final-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .33;
  background-image: linear-gradient(rgba(157, 201, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(157, 201, 255, .08) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

.hero-orb { position: absolute; z-index: -1; border: 1px solid rgba(112, 184, 255, .15); border-radius: 50%; transform: rotate(-22deg); }
.hero-orb--one { top: 4%; right: -7%; width: 680px; height: 680px; box-shadow: 0 0 120px rgba(58, 140, 255, .09), inset 0 0 90px rgba(58, 140, 255, .08); }
.hero-orb--two { right: 12%; bottom: -38%; width: 410px; height: 410px; border-color: rgba(112, 184, 255, .08); }

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, .91fr) minmax(0, 1.09fr);
  align-items: center;
  gap: 72px;
  min-height: 760px;
  padding-top: 84px;
  padding-bottom: 74px;
}

.hero-copy { position: relative; z-index: 1; max-width: 580px; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 20px; color: #5e83c3; font-size: 11px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow--dark { color: #a5c8f8; }
.eyebrow-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 0 5px rgba(85, 170, 255, .14); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.045em; }

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(3.3rem, 5.6vw, 5.1rem);
  font-weight: 600;
  line-height: .99;
}

.hero-title-accent { display: block; color: #85bfff; }
.hero-title-accent strong { color: #fff; font-weight: 700; }
.hero-lead { max-width: 510px; margin-bottom: 13px; color: #dceafe; font-size: 18px; line-height: 1.48; }
.hero-support { max-width: 480px; margin-bottom: 28px; color: #9cb9df; font-size: 14px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s ease, border-color .25s ease;
}

.button:hover { transform: translateY(-3px); }
.button:focus-visible, .text-link:focus-visible, .faq-question:focus-visible, .sticky-whatsapp:focus-visible { outline: 3px solid rgba(84, 169, 255, .58); outline-offset: 4px; }
.button-primary { color: #fff; background: linear-gradient(100deg, #0b64ed, #278cff); box-shadow: 0 10px 28px rgba(23, 119, 255, .28), inset 0 1px 0 rgba(255,255,255,.2); }
.button-primary:hover { box-shadow: 0 16px 36px rgba(23, 119, 255, .42), inset 0 1px 0 rgba(255,255,255,.2); }
.button-light { color: var(--navy-900); background: #fff; box-shadow: 0 14px 28px rgba(0, 12, 51, .2); }
.button-light:hover { box-shadow: 0 18px 36px rgba(0, 12, 51, .3); }
.button-outline { color: var(--navy-900); border-color: #b7c9e5; background: transparent; }
.button-outline:hover { border-color: var(--blue); background: #fff; box-shadow: 0 14px 25px rgba(28, 86, 166, .1); }
.button-large { min-height: 61px; padding: 17px 22px 17px 24px; font-size: 12px; }
.button-icon, .sticky-icon { display: grid; width: 24px; height: 24px; place-items: center; }
.button-icon svg, .sticky-icon svg { width: 100%; height: 100%; }
.button-arrow { font-size: 20px; font-weight: 400; line-height: .7; }
.cta-note { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 14px 0 0 2px; color: #91b0da; font-size: 11px; }
.check-icon { color: #5be0b0; font-size: 15px; font-weight: 800; }
.hero-disclaimer { margin-top: 26px; color: rgba(178, 206, 243, .54); font-size: 11px; }

.hero-visual { position: relative; min-width: 0; padding: 54px 0 40px; }
.visual-glow { position: absolute; inset: 12% 2% 2%; z-index: -1; border-radius: 50%; background: rgba(20, 120, 255, .22); filter: blur(62px); }
.dashboard-window { position: relative; overflow: hidden; border: 1px solid rgba(135, 197, 255, .45); border-radius: 26px; background: linear-gradient(142deg, rgba(21, 58, 123, .86), rgba(4, 21, 66, .96)); box-shadow: 0 34px 90px rgba(0, 10, 42, .42), inset 0 1px 0 rgba(255,255,255,.12); transform: perspective(1200px) rotateY(-3deg) rotateX(1.5deg); }
.dashboard-window::before { position: absolute; top: -50%; left: -8%; width: 75%; height: 100%; content: ""; background: linear-gradient(110deg, transparent, rgba(135, 207, 255, .1), transparent); transform: rotate(12deg); }
.dashboard-topbar { display: flex; align-items: center; gap: 14px; height: 48px; padding: 0 17px; border-bottom: 1px solid rgba(165, 207, 255, .14); background: rgba(5, 24, 70, .42); }
.window-dots { display: flex; gap: 5px; }
.window-dots i { display: block; width: 6px; height: 6px; border-radius: 50%; background: #577aaf; }
.window-dots i:first-child { background: #6bafff; }
.dashboard-title { overflow: hidden; flex: 1; color: #a3c9f5; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.dashboard-status { display: flex; align-items: center; gap: 5px; color: #73dbaf; font-size: 9px; font-weight: 700; }
.dashboard-status b { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.dashboard-body { display: flex; min-height: 405px; }
.dashboard-sidebar { display: flex; flex: 0 0 43px; flex-direction: column; align-items: center; gap: 18px; padding-top: 20px; border-right: 1px solid rgba(165, 207, 255, .1); background: rgba(3, 15, 48, .32); }
.side-logo { display: grid; width: 20px; height: 20px; place-items: center; color: #fff; background: #2e88ff; border-radius: 7px; font-size: 14px; font-weight: 900; }
.side-item { position: relative; display: block; width: 16px; height: 15px; opacity: .52; border: 1.5px solid #81afe3; border-radius: 4px; }
.side-item::after { position: absolute; bottom: 3px; left: 3px; width: 7px; height: 1px; content: ""; background: #81afe3; box-shadow: 0 -3px 0 #81afe3; }
.side-item.active { opacity: 1; border-color: #55aaff; background: rgba(74, 158, 255, .2); box-shadow: 0 0 16px rgba(74, 158, 255, .3); }
.side-item--last { margin-top: auto; margin-bottom: 24px; border-radius: 50%; }
.side-item--last::after { display: none; }
.dashboard-content { flex: 1; min-width: 0; padding: 25px 23px 24px; }
.dashboard-heading { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 22px; }
.micro-label { display: block; margin-bottom: 5px; color: #87a8d3; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.dashboard-heading h2 { margin: 0; color: #f3f8ff; font-size: 20px; font-weight: 600; line-height: 1.05; }
.profile-dot { display: grid; width: 27px; height: 27px; place-items: center; border: 1px solid rgba(130, 192, 255, .33); border-radius: 50%; color: #c6dffc; font-size: 6px; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-bottom: 12px; }
.metric-card { min-width: 0; padding: 13px 12px 12px; border: 1px solid rgba(147, 200, 255, .13); border-radius: 11px; background: rgba(68, 120, 194, .12); }
.metric-card--blue { border-color: rgba(94, 177, 255, .44); background: linear-gradient(135deg, rgba(41, 131, 255, .3), rgba(48, 90, 173, .14)); }
.metric-label, .metric-card strong, .metric-card small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.metric-label { margin-bottom: 7px; color: #9cbbe1; font-size: 8px; text-transform: uppercase; }
.metric-card strong { margin-bottom: 5px; color: #f4f9ff; font-size: 20px; font-weight: 650; line-height: 1; }
.metric-card small { color: #6cdbae; font-size: 8px; }
.metric-card small.muted { color: #7c9bc4; }
.up-arrow { font-size: 11px; }
.dashboard-lower { display: grid; grid-template-columns: 1.23fr .77fr; gap: 12px; }
.chart-card, .orders-card { min-width: 0; padding: 15px 14px 11px; border: 1px solid rgba(147, 200, 255, .13); border-radius: 13px; background: rgba(6, 24, 69, .46); }
.card-heading { display: flex; align-items: center; justify-content: space-between; gap: 6px; color: #d3e7fc; font-size: 9px; font-weight: 700; }
.select-faux { padding: 4px 6px; border: 1px solid rgba(147, 200, 255, .16); border-radius: 5px; color: #80a3d0; font-size: 7px; font-weight: 500; }
.chart-area { display: flex; align-items: stretch; height: 119px; margin-top: 10px; }
.chart-y { display: flex; flex: 0 0 24px; flex-direction: column; justify-content: space-between; padding: 4px 0 3px; color: #6689b7; font-size: 7px; }
.line-chart { width: 100%; min-width: 0; overflow: visible; border-bottom: 1px solid rgba(136, 177, 224, .12); background: repeating-linear-gradient(to bottom, transparent 0, transparent 38px, rgba(136, 177, 224, .1) 39px, transparent 40px); }
.chart-x { display: flex; justify-content: space-between; padding: 8px 1px 0 24px; color: #6689b7; font-size: 7px; }
.orders-card { display: flex; flex-direction: column; }
.dots { color: #6e91be; letter-spacing: 2px; }
.order-row { display: grid; grid-template-columns: 24px minmax(0, 1fr) auto; align-items: center; gap: 7px; min-width: 0; padding: 14px 0; border-bottom: 1px solid rgba(147, 200, 255, .1); }
.order-row:last-child { border-bottom: 0; }
.order-icon { display: grid; width: 23px; height: 23px; place-items: center; border-radius: 7px; color: #fff; font-size: 13px; }
.order-icon--pink { background: rgba(249, 105, 150, .6); }.order-icon--orange { background: rgba(247, 158, 70, .7); }.order-icon--green { background: rgba(84, 211, 156, .65); }
.order-row b, .order-row small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.order-row b { color: #e4effd; font-size: 9px; }.order-row small { margin-top: 3px; color: #7496c2; font-size: 7px; }
.order-row em { color: #cbe2fc; font-size: 8px; font-style: normal; }
.floating-label { position: absolute; z-index: 2; display: flex; align-items: center; gap: 7px; padding: 9px 12px; border: 1px solid rgba(172, 216, 255, .25); border-radius: 12px; color: #dceeff; background: rgba(10, 39, 94, .88); box-shadow: 0 12px 28px rgba(0, 13, 52, .22); backdrop-filter: blur(12px); font-size: 10px; font-weight: 700; letter-spacing: .02em; white-space: nowrap; }
.floating-label--offer { top: 7%; right: -4%; color: #fff; background: linear-gradient(135deg, #1f80ff, #0e55c8); transform: rotate(6deg); animation: float 5s ease-in-out infinite; }.floating-label--offer span { font-size: 18px; font-weight: 800; letter-spacing: -.06em; }.floating-label--orders { bottom: 5%; left: -4%; animation: float 5.5s .8s ease-in-out infinite; }.mini-spark { width: 8px; height: 8px; border: 2px solid #6fe1b1; border-radius: 50%; box-shadow: 0 0 0 3px rgba(111, 225, 177, .12); }
.visual-caption { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 18px; color: #87a9d7; font-size: 11px; letter-spacing: .04em; }.caption-icon { color: #5eb6ff; }

.trust-strip { position: relative; z-index: 2; margin-top: -1px; color: #d8e7fb; background: #0a255e; border-top: 1px solid rgba(145, 195, 255, .16); border-bottom: 1px solid rgba(145, 195, 255, .13); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 11px; min-height: 78px; padding: 12px 16px; border-right: 1px solid rgba(145, 195, 255, .13); font-size: 12px; font-weight: 650; text-align: center; }.trust-item:last-child { border-right: 0; }
.trust-icon { display: grid; width: 24px; height: 24px; flex: 0 0 24px; place-items: center; border: 1px solid rgba(151, 201, 255, .33); border-radius: 8px; color: #6cb7ff; font-size: 12px; }

.section { padding: 132px 0; }
.section-intro { max-width: 680px; }.section-intro h2, .split-heading h2, .faq-intro h2 { margin-bottom: 19px; font-size: clamp(2.35rem, 4.5vw, 4.2rem); font-weight: 550; line-height: 1.02; }.section-intro p, .split-heading p, .faq-intro p { max-width: 590px; margin-bottom: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 54px; }
.benefit-card { position: relative; min-height: 345px; overflow: hidden; padding: 24px 23px 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-soft); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease; }
.benefit-card::before { position: absolute; right: -38px; bottom: -50px; width: 150px; height: 150px; content: ""; border-radius: 50%; background: var(--card-glow, rgba(18, 108, 255, .1)); filter: blur(5px); transition: transform .35s var(--ease); }.benefit-card:hover { border-color: #bcd4f4; box-shadow: 0 24px 48px rgba(35, 81, 145, .14); transform: translateY(-8px); }.benefit-card:hover::before { transform: scale(1.25); }
.benefit-card--blue { --card-glow: rgba(18, 108, 255, .13); }.benefit-card--violet { --card-glow: rgba(122, 99, 255, .13); }.benefit-card--orange { --card-glow: rgba(255, 163, 69, .16); }.benefit-card--green { --card-glow: rgba(64, 197, 140, .16); }
.benefit-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; }.card-number { color: #8ca3c3; font-size: 12px; font-weight: 800; }.card-tag { padding: 5px 8px; border-radius: 99px; color: #637792; background: #f0f4fa; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.benefit-icon { display: grid; width: 44px; height: 44px; place-items: center; margin-bottom: 23px; border-radius: 13px; color: var(--card-accent, var(--blue)); background: var(--card-icon-bg, #e9f2ff); }.benefit-icon svg { width: 23px; height: 23px; }.benefit-card--blue { --card-accent: #1c77f4; --card-icon-bg: #eaf3ff; }.benefit-card--violet { --card-accent: #7466ef; --card-icon-bg: #efedff; }.benefit-card--orange { --card-accent: #ec8b2c; --card-icon-bg: #fff2e3; }.benefit-card--green { --card-accent: #25a974; --card-icon-bg: #e5f8f0; }
.benefit-card h3 { position: relative; max-width: 220px; margin-bottom: 12px; font-size: 20px; font-weight: 650; line-height: 1.12; }.benefit-card p { position: relative; margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }.card-arrow { position: absolute; right: 22px; bottom: 20px; color: #a2b3c9; font-size: 21px; transition: color .25s ease, transform .25s ease; }.benefit-card:hover .card-arrow { color: var(--blue); transform: translate(2px, -2px); }
.section-cta-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 40px; }.cta-context { display: flex; align-items: center; gap: 10px; color: #7c8da7; font-size: 12px; }.context-line { width: 24px; height: 1px; background: #9eb4d3; }.text-link { display: inline-flex; align-items: center; gap: 10px; color: #145dc9; font-size: 13px; font-weight: 800; }.text-link span { font-size: 20px; font-weight: 400; transition: transform .25s var(--ease); }.text-link:hover span { transform: translate(3px, -3px); }

.offer-section { position: relative; isolation: isolate; overflow: hidden; padding: 138px 0; background: radial-gradient(circle at 86% 54%, #124b9e 0, #0a2a6b 27%, #061b4f 64%); }.offer-noise { position: absolute; inset: 0; z-index: -1; opacity: .18; background-image: radial-gradient(rgba(255,255,255,.7) .5px, transparent .5px); background-size: 6px 6px; mask-image: linear-gradient(to right, transparent, black 55%, transparent); }.offer-orbit { position: absolute; z-index: -1; border: 1px solid rgba(109, 181, 255, .2); border-radius: 50%; transform: rotate(18deg); }.offer-orbit--one { top: -55%; right: -6%; width: 790px; height: 790px; }.offer-orbit--two { top: -25%; right: 5%; width: 610px; height: 610px; border-color: rgba(109, 181, 255, .11); }
.offer-inner { display: grid; grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr); align-items: center; gap: 78px; }.offer-copy { position: relative; z-index: 1; max-width: 520px; }.offer-copy h2 { display: flex; align-items: flex-end; gap: 16px; margin: 0; color: #fff; font-size: clamp(6rem, 12vw, 10.8rem); font-weight: 700; letter-spacing: -.095em; line-height: .75; }.offer-copy h2 strong { color: #65b4ff; font-weight: 700; }.offer-copy h2 span { max-width: 128px; margin-bottom: 7px; color: #fff; font-size: 17px; font-weight: 700; letter-spacing: -.02em; line-height: 1.05; text-transform: uppercase; }.offer-subtitle { margin: 19px 0 19px; color: #dcecff; font-size: 24px; font-weight: 550; letter-spacing: -.04em; }.offer-copy > p:not(.offer-subtitle) { max-width: 440px; margin-bottom: 29px; color: #a8c6ed; font-size: 14px; line-height: 1.65; }.offer-footnote { display: block; max-width: 370px; margin-top: 15px; color: #84a8d6; font-size: 10px; line-height: 1.5; }
.offer-art { position: relative; min-height: 418px; }.offer-art__halo { position: absolute; inset: 7% 7%; border: 1px solid rgba(104, 187, 255, .22); border-radius: 50%; box-shadow: 0 0 100px rgba(31, 135, 255, .22), inset 0 0 70px rgba(31, 135, 255, .1); transform: rotate(-16deg); }.offer-art__halo::before, .offer-art__halo::after { position: absolute; inset: 13%; border: 1px dashed rgba(104, 187, 255, .14); border-radius: 50%; content: ""; }.offer-art__halo::after { inset: 29%; border-style: solid; border-color: rgba(104, 187, 255, .1); }
.offer-card { position: absolute; border: 1px solid rgba(171, 218, 255, .4); box-shadow: 0 24px 60px rgba(0, 10, 43, .35), inset 0 1px 0 rgba(255,255,255,.18); backdrop-filter: blur(12px); }.offer-card--tag { top: 12%; left: 18%; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 136px; height: 114px; border-radius: 24px; color: #fff; background: linear-gradient(145deg, #207ff4, #0a49b0); transform: rotate(-12deg); animation: float 5s ease-in-out infinite; }.offer-card--tag span { font-size: 38px; font-weight: 800; letter-spacing: -.09em; line-height: 1; }.offer-card--tag small { margin-top: 3px; color: #bddcff; font-size: 12px; font-weight: 800; letter-spacing: .18em; }.offer-card--box { top: 28%; right: 16%; width: 161px; height: 153px; border: 0; box-shadow: none; transform: rotate(16deg); }.box-body, .box-lid, .box-tape { position: absolute; display: block; }.box-body { right: 12px; bottom: 16px; width: 125px; height: 97px; background: linear-gradient(135deg, #1976dd, #0a4caa); clip-path: polygon(0 14%, 71% 0, 100% 15%, 100% 83%, 26% 100%, 0 83%); filter: drop-shadow(0 20px 19px rgba(0, 7, 31, .32)); }.box-lid { top: 22px; left: 18px; width: 128px; height: 31px; background: #57aaff; clip-path: polygon(0 20%, 76% 0, 100% 34%, 24% 100%); }.box-tape { top: 30px; left: 77px; width: 17px; height: 101px; background: rgba(153, 213, 255, .45); transform: rotate(10deg); }.offer-card--chart { bottom: 8%; left: 10%; width: 216px; height: 130px; padding: 17px 18px; border-radius: 18px; background: rgba(13, 53, 118, .76); transform: rotate(4deg); }.mini-label { display: block; margin-bottom: 11px; color: #a9c7e9; font-size: 9px; font-weight: 650; text-transform: uppercase; }.mini-chart { display: flex; align-items: flex-end; gap: 7px; height: 44px; padding: 0 0 5px; border-bottom: 1px solid rgba(169, 211, 255, .26); }.mini-chart i { display: block; flex: 1; border-radius: 4px 4px 1px 1px; background: linear-gradient(to top, #236ed0, #65bcff); }.mini-chart i:nth-child(1) { height: 34%; }.mini-chart i:nth-child(2) { height: 48%; }.mini-chart i:nth-child(3) { height: 43%; }.mini-chart i:nth-child(4) { height: 68%; }.mini-chart i:nth-child(5) { height: 61%; }.mini-chart i:nth-child(6) { height: 90%; }.offer-card--chart strong { display: block; margin-top: 8px; color: #69e1af; font-size: 17px; letter-spacing: -.04em; }.offer-card--cursor { right: 14%; bottom: 16%; display: grid; width: 49px; height: 49px; place-items: center; border-radius: 50%; color: #fff; background: #0e6cff; font-size: 23px; transform: rotate(-12deg); }.offer-art__spark { position: absolute; color: #78c2ff; font-size: 21px; text-shadow: 0 0 16px #2b8fff; }.spark-one { top: 31%; right: 6%; animation: pulse 3s ease-in-out infinite; }.spark-two { bottom: 27%; left: 4%; color: #69e1af; font-size: 14px; animation: pulse 3s 1s ease-in-out infinite; }

.ecosystem-section { padding-bottom: 125px; }.split-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(270px, .85fr); align-items: end; gap: 60px; }.split-heading p { padding-bottom: 5px; }.solution-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr); align-items: center; gap: 80px; margin-top: 68px; }.solution-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }.solution-card { position: relative; display: flex; align-items: center; gap: 13px; min-height: 91px; padding: 17px; border: 1px solid var(--line); border-radius: 17px; background: #fff; box-shadow: 0 11px 27px rgba(30, 60, 112, .06); font-size: 13px; font-weight: 750; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }.solution-card:hover { box-shadow: 0 16px 30px rgba(30, 60, 112, .12); transform: translateY(-4px); }.solution-icon { display: grid; width: 39px; height: 39px; flex: 0 0 39px; place-items: center; border-radius: 12px; font-size: 19px; }.solution-card--blue .solution-icon { color: #237af6; background: #e9f2ff; }.solution-card--violet .solution-icon { color: #7666ef; background: #efedff; }.solution-card--orange .solution-icon { color: #ed8c2a; background: #fff0dd; }.solution-card--green .solution-icon { color: #25a873; background: #e5f8ef; }.solution-card--pink .solution-icon { color: #e95992; background: #ffebf2; }.solution-card--cyan .solution-icon { color: #1799b7; background: #e5f7fb; }.solution-arrow { position: absolute; right: 16px; top: 14px; color: #b6c2d4; font-size: 16px; font-weight: 400; }
.ecosystem-map { position: relative; min-height: 415px; overflow: hidden; border: 1px solid #d7e3f3; border-radius: var(--radius-lg); background: linear-gradient(145deg, #f4f8fd, #e8f0fb); box-shadow: var(--shadow-soft); }.map-grid-lines { position: absolute; inset: 0; opacity: .55; background-image: linear-gradient(rgba(95, 145, 208, .11) 1px, transparent 1px), linear-gradient(90deg, rgba(95, 145, 208, .11) 1px, transparent 1px); background-size: 42px 42px; mask-image: radial-gradient(circle, black 25%, transparent 80%); }.map-ring { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(69, 141, 230, .2); border-radius: 50%; transform: translate(-50%, -50%); }.map-ring--outer { width: 310px; height: 310px; }.map-ring--inner { width: 206px; height: 206px; border-style: dashed; border-color: rgba(69, 141, 230, .26); }.map-center { position: absolute; top: 50%; left: 50%; display: flex; width: 117px; height: 117px; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(91, 169, 255, .65); border-radius: 50%; color: #fff; background: radial-gradient(circle at 30% 25%, #2586ff, #0a4cba); box-shadow: 0 15px 35px rgba(20, 105, 223, .27), 0 0 0 10px rgba(90, 169, 255, .08); text-align: center; transform: translate(-50%, -50%); }.map-center span { font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }.map-center strong { margin: 1px 0 2px; font-size: 21px; font-weight: 800; letter-spacing: -.09em; }.map-center small { color: #c4e3ff; font-size: 8px; line-height: 1.1; }.map-node { position: absolute; display: grid; min-width: 80px; min-height: 32px; place-items: center; padding: 6px 10px; border: 1px solid #c4dcf6; border-radius: 99px; color: #47729f; background: rgba(255,255,255,.72); box-shadow: 0 6px 14px rgba(42, 98, 168, .07); font-size: 10px; font-weight: 750; }.map-node--top { top: 11%; left: 50%; transform: translateX(-50%); }.map-node--right { top: 50%; right: 7%; transform: translateY(-50%); }.map-node--bottom { bottom: 11%; left: 50%; transform: translateX(-50%); }.map-node--left { top: 50%; left: 7%; transform: translateY(-50%); }.map-dot { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: #3b98f8; box-shadow: 0 0 0 4px rgba(59, 152, 248, .1); }.dot-1 { top: 22%; left: 32%; }.dot-2 { top: 33%; right: 23%; background: #8e7df8; }.dot-3 { bottom: 24%; right: 29%; background: #f09a3e; }.dot-4 { bottom: 31%; left: 25%; background: #39ba88; }.section-cta-centered { display: flex; align-items: center; justify-content: center; gap: 23px; margin-top: 56px; }.section-cta-centered > span { color: #71839c; font-size: 11px; }

.steps-section { padding: 123px 0 133px; }.section-intro--center { max-width: 640px; margin-inline: auto; text-align: center; }.section-intro--center .eyebrow { justify-content: center; }.section-intro--center p { margin-inline: auto; }.steps-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; margin-top: 57px; }.steps-grid::before { position: absolute; top: 46px; right: 17%; left: 17%; height: 1px; content: ""; background: repeating-linear-gradient(to right, #b5c8e0 0 5px, transparent 5px 10px); }.step-card { position: relative; min-height: 260px; padding: 31px 29px 27px; border: 1px solid #dce6f3; border-radius: var(--radius-md); background: rgba(255,255,255,.72); box-shadow: 0 12px 27px rgba(46, 82, 141, .06); }.step-number { position: absolute; top: 27px; right: 27px; color: #98acc6; font-size: 11px; font-weight: 800; }.step-icon { display: grid; width: 42px; height: 42px; margin-bottom: 35px; place-items: center; border-radius: 13px; font-size: 21px; }.step-icon--blue { color: #247df4; background: #e8f2ff; }.step-icon--violet { color: #7666ef; background: #efedff; }.step-icon--green { color: #23a674; background: #e6f8ef; }.step-card h3 { margin-bottom: 10px; font-size: 20px; font-weight: 650; line-height: 1.1; }.step-card p { max-width: 245px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.faq-section { padding: 130px 0; }.faq-layout { display: grid; grid-template-columns: minmax(240px, .78fr) minmax(0, 1.22fr); gap: 100px; }.faq-intro { padding-top: 5px; }.faq-intro h2 { font-size: clamp(2.3rem, 4vw, 3.55rem); }.faq-intro p { margin-bottom: 27px; font-size: 14px; }.faq-list { border-top: 1px solid #d6e0ed; }.faq-item { border-bottom: 1px solid #d6e0ed; }.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; padding: 24px 0; border: 0; color: var(--ink); background: transparent; cursor: pointer; font-size: 16px; font-weight: 650; letter-spacing: -.02em; text-align: left; }.faq-plus { position: relative; display: block; width: 25px; height: 25px; flex: 0 0 25px; border: 1px solid #b7c9e0; border-radius: 50%; transition: background-color .25s ease, border-color .25s ease, transform .3s var(--ease); }.faq-plus::before, .faq-plus::after { position: absolute; top: 50%; left: 50%; width: 9px; height: 1.5px; content: ""; background: #5481b9; transform: translate(-50%, -50%); }.faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .3s var(--ease); }.faq-item.is-open .faq-plus { border-color: var(--blue); background: #eaf3ff; transform: rotate(90deg); }.faq-item.is-open .faq-plus::after { transform: translate(-50%, -50%) rotate(0deg); }.faq-answer { display: grid; grid-template-rows: 0fr; overflow: hidden; transition: grid-template-rows .35s var(--ease); }.faq-answer p { min-height: 0; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }.faq-item.is-open .faq-answer p { padding: 0 48px 24px 0; }

.final-section { position: relative; isolation: isolate; overflow: hidden; padding: 142px 0 155px; background: radial-gradient(circle at 50% 110%, #113f8d 0, #061b4f 60%); text-align: center; }.final-glow { position: absolute; z-index: -1; bottom: -60%; left: 50%; width: 750px; height: 750px; border-radius: 50%; background: rgba(44, 147, 255, .22); filter: blur(12px); transform: translateX(-50%); }.final-grid { opacity: .24; mask-image: radial-gradient(ellipse at 50% 55%, black, transparent 74%); }.final-inner { display: flex; align-items: center; flex-direction: column; }.final-inner .eyebrow { margin-bottom: 22px; }.final-inner h2 { margin-bottom: 20px; color: #fff; font-size: clamp(3rem, 6vw, 5.65rem); font-weight: 570; line-height: .98; }.final-inner h2 span { color: #75baff; }.final-inner > p { max-width: 450px; margin-bottom: 28px; color: #b4ceed; font-size: 16px; }.final-note { display: flex; align-items: center; gap: 7px; margin-top: 15px; color: #92b2db; font-size: 11px; }

.site-footer { color: #6b7c95; background: #f1f5fb; border-top: 1px solid #dae4f1; }.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; padding-top: 50px; padding-bottom: 42px; }.footer-brand { max-width: 290px; }.footer-brand p { margin: 17px 0 0; color: #7b8ba1; font-size: 12px; line-height: 1.55; }.footer-links { display: flex; flex-wrap: wrap; gap: 24px; padding-top: 7px; color: #355783; font-size: 12px; font-weight: 700; }.footer-links a:hover { color: var(--blue); }.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 19px 0; border-top: 1px solid #dce5f1; color: #8493a8; font-size: 10px; }

.sticky-whatsapp { position: fixed; z-index: 20; right: 18px; bottom: 18px; display: none; align-items: center; gap: 9px; min-height: 52px; padding: 10px 16px; border: 1px solid rgba(155, 214, 255, .34); border-radius: 99px; color: #fff; background: #0b6bea; box-shadow: 0 15px 28px rgba(2, 24, 70, .32); font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }.sticky-whatsapp:hover { background: #1678fb; transform: translateY(-3px); }.sticky-icon { width: 22px; height: 22px; }.sticky-arrow { font-size: 19px; font-weight: 400; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }.reveal-delay-1 { transition-delay: .1s; }.reveal-delay-2 { transition-delay: .18s; }.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes float { 0%, 100% { transform: translateY(0) rotate(6deg); } 50% { transform: translateY(-9px) rotate(6deg); } }
@keyframes pulse { 0%, 100% { opacity: .55; transform: scale(.92); } 50% { opacity: 1; transform: scale(1.12); } }

@media (max-width: 1100px) {
  .hero-inner { gap: 42px; }
  .offer-inner { gap: 45px; }
  .solution-layout { gap: 44px; }
  .faq-layout { gap: 62px; }
}

@media (max-width: 900px) {
  .hero { min-height: 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 28px; padding-top: 138px; padding-bottom: 70px; }
  .hero-copy { max-width: 700px; }
  .hero-visual { width: min(100%, 680px); margin-inline: auto; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-inner { grid-template-columns: 1fr; gap: 25px; }
  .offer-copy { max-width: 670px; }
  .offer-art { width: min(100%, 600px); margin-inline: auto; }
  .solution-layout { grid-template-columns: 1fr; }
  .ecosystem-map { min-height: 390px; }
  .faq-layout { grid-template-columns: 1fr; gap: 47px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .header-inner { min-height: 70px; }
  .official-logo { width: 80px; height: 39px; padding: 0; }.official-logo img { width: 80px; height: 39px; }.official-logo--footer { width: 80px; height: 39px; padding: 0; }.header-meta { max-width: 150px; font-size: 10px; line-height: 1.2; text-align: right; }
  .hero-inner { padding-top: 115px; padding-bottom: 48px; }
  h1 { max-width: 400px; margin-bottom: 20px; font-size: clamp(3rem, 13vw, 4.05rem); line-height: .98; }.hero-lead { font-size: 16px; }.hero-support { font-size: 13px; }.button-large { width: 100%; font-size: 11px; }
  .hero-disclaimer { margin-top: 20px; line-height: 1.45; }.hero-visual { padding-top: 38px; padding-bottom: 22px; }.dashboard-window { border-radius: 20px; transform: none; }.dashboard-topbar { height: 39px; padding-inline: 12px; }.dashboard-body { min-height: 325px; }.dashboard-sidebar { flex-basis: 30px; gap: 14px; padding-top: 14px; }.side-logo { width: 16px; height: 16px; font-size: 11px; }.side-item { width: 13px; height: 12px; }.side-item::after { bottom: 2px; left: 2px; width: 6px; box-shadow: 0 -3px 0 #81afe3; }.dashboard-content { padding: 17px 12px 13px; }.micro-label { font-size: 6px; }.dashboard-heading h2 { font-size: 15px; }.profile-dot { width: 23px; height: 23px; font-size: 5px; }.metric-grid { gap: 5px; margin-bottom: 7px; }.metric-card { padding: 9px 7px; border-radius: 8px; }.metric-label { margin-bottom: 5px; font-size: 6px; }.metric-card strong { font-size: 14px; }.metric-card small { font-size: 6px; }.dashboard-lower { grid-template-columns: 1fr; gap: 7px; }.chart-card, .orders-card { padding: 10px; border-radius: 9px; }.chart-area { height: 85px; }.chart-y { flex-basis: 18px; font-size: 6px; }.chart-x { padding-top: 5px; padding-left: 18px; font-size: 6px; }.card-heading { font-size: 7px; }.select-faux { padding: 3px 4px; font-size: 6px; }.orders-card { display: none; }.floating-label { padding: 7px 9px; font-size: 8px; }.floating-label--offer { top: 3%; right: -3%; }.floating-label--offer span { font-size: 14px; }.floating-label--orders { bottom: 1%; left: -2%; }.visual-caption { margin-top: 12px; font-size: 9px; }
  .trust-grid { grid-template-columns: 1fr; }.trust-item { justify-content: flex-start; min-height: 55px; padding: 10px 0; border-right: 0; border-bottom: 1px solid rgba(145, 195, 255, .13); font-size: 11px; text-align: left; }.trust-item:last-child { border-bottom: 0; }.trust-icon { width: 21px; height: 21px; flex-basis: 21px; }
  .section { padding: 84px 0; }.section-intro h2, .split-heading h2, .faq-intro h2 { font-size: clamp(2.25rem, 11vw, 3.4rem); }.section-intro p, .split-heading p { font-size: 14px; }.benefit-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 35px; }.benefit-card { min-height: 254px; padding: 20px; }.benefit-top { margin-bottom: 30px; }.benefit-icon { width: 38px; height: 38px; margin-bottom: 17px; }.benefit-card h3 { font-size: 19px; }.benefit-card p { max-width: 290px; font-size: 12px; }.section-cta-row { align-items: flex-start; flex-direction: column; gap: 16px; margin-top: 28px; }.cta-context { font-size: 11px; }
  .offer-section { padding: 84px 0 76px; }.offer-copy h2 { gap: 10px; font-size: clamp(6rem, 29vw, 9rem); }.offer-copy h2 span { max-width: 96px; font-size: 13px; }.offer-subtitle { margin-top: 16px; font-size: 19px; }.offer-copy > p:not(.offer-subtitle) { font-size: 13px; }.offer-art { min-height: 310px; margin-top: 4px; }.offer-art__halo { inset: 4% 4%; }.offer-card--tag { top: 10%; left: 9%; width: 100px; height: 86px; border-radius: 18px; }.offer-card--tag span { font-size: 28px; }.offer-card--tag small { font-size: 9px; }.offer-card--box { top: 27%; right: 6%; transform: scale(.75) rotate(16deg); transform-origin: top right; }.offer-card--chart { bottom: 1%; left: 3%; width: 170px; height: 103px; padding: 12px; }.mini-label { margin-bottom: 6px; font-size: 7px; }.mini-chart { height: 33px; gap: 5px; }.offer-card--chart strong { margin-top: 5px; font-size: 13px; }.offer-card--cursor { right: 3%; bottom: 8%; width: 38px; height: 38px; font-size: 17px; }.spark-one { top: 31%; right: 0; }.spark-two { bottom: 23%; left: 0; }
  .ecosystem-section { padding-bottom: 84px; }.split-heading { display: block; }.split-heading p { margin-top: 18px; }.solution-layout { margin-top: 35px; }.solution-grid { gap: 9px; }.solution-card { min-height: 76px; padding: 12px; gap: 9px; font-size: 11px; }.solution-icon { width: 33px; height: 33px; flex-basis: 33px; border-radius: 10px; font-size: 16px; }.solution-arrow { top: 10px; right: 10px; font-size: 14px; }.ecosystem-map { min-height: 315px; border-radius: 22px; }.map-ring--outer { width: 235px; height: 235px; }.map-ring--inner { width: 157px; height: 157px; }.map-center { width: 93px; height: 93px; }.map-center strong { font-size: 17px; }.map-center small { font-size: 7px; }.map-node { min-width: 66px; min-height: 28px; padding: 4px 8px; font-size: 8px; }.map-node--right { right: 3%; }.map-node--left { left: 3%; }.section-cta-centered { align-items: flex-start; flex-direction: column; gap: 14px; margin-top: 30px; }.section-cta-centered .button { width: 100%; }.section-cta-centered > span { font-size: 10px; }
  .steps-section { padding: 84px 0; }.steps-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 35px; }.steps-grid::before { top: 21%; bottom: 21%; right: auto; left: 36px; width: 1px; height: auto; background: repeating-linear-gradient(to bottom, #b5c8e0 0 5px, transparent 5px 10px); }.step-card { min-height: 0; padding: 20px 18px 20px 75px; }.step-number { top: 20px; right: 18px; }.step-icon { position: absolute; top: 20px; left: 19px; width: 36px; height: 36px; margin: 0; font-size: 17px; }.step-card h3 { margin-bottom: 7px; font-size: 18px; }.step-card p { font-size: 12px; }
  .faq-section { padding: 84px 0; }.faq-layout { gap: 34px; }.faq-intro p { font-size: 13px; }.faq-question { padding: 20px 0; font-size: 14px; }.faq-plus { width: 23px; height: 23px; flex-basis: 23px; }.faq-item.is-open .faq-answer p { padding: 0 32px 20px 0; font-size: 13px; }
  .final-section { padding: 91px 0 115px; }.final-inner h2 { font-size: clamp(3rem, 14vw, 4rem); }.final-inner > p { font-size: 14px; }.final-inner .button { width: 100%; }.site-footer { padding-bottom: 70px; }.footer-top { align-items: flex-start; flex-direction: column; gap: 27px; padding-top: 38px; padding-bottom: 28px; }.footer-links { gap: 13px 20px; font-size: 11px; }.footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; font-size: 9px; line-height: 1.45; }.sticky-whatsapp { right: 12px; bottom: 12px; left: 12px; display: flex; justify-content: center; min-height: 50px; }
}

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