:root {
  --blue-100: #c8ebfa;
  --blue-200: #94d3f6;
  --blue-300: #5caee4;
  --blue-400: #3386ca;
  --blue-500: #0154a7;
  --blue-600: #00418f;
  --blue-700: #003078;
  --blue-800: #002260;
  --blue-900: #001850;
  --white: #ffffff;
  --black: #000000;
  --primary: var(--blue-500);
  --primary-foreground: var(--white);
  --primary-hover: var(--blue-600);
  --background: var(--white);
  --foreground: var(--blue-900);
  --card: var(--white);
  --card-foreground: var(--blue-900);
  --popover: var(--white);
  --popover-foreground: var(--blue-900);
  --secondary: var(--blue-100);
  --secondary-foreground: var(--blue-900);
  --muted: #eef8fd;
  --muted-foreground: var(--blue-700);
  --accent: var(--blue-100);
  --accent-foreground: var(--blue-900);
  --border: var(--blue-200);
  --input: #6a93ba;
  --ring: var(--blue-400);
  --destructive: #b42318;
  --radius: 0.875rem;
  --paper: var(--white);
  --ink: var(--blue-900);
  --text-body: var(--black);
  --text-secondary: var(--blue-700);
  --surface-accent: var(--blue-100);
  --line: var(--blue-200);
  --page-progress: 0;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

.svg-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text-body);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

img,
video {
  display: block;
  max-width: 100%;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
[role="combobox"]:focus-visible,
[role="checkbox"]:focus-visible {
  outline: 3px solid var(--blue-300);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
blockquote {
  text-wrap: pretty;
}

h1,
h2 {
  margin-top: 0;
  margin-bottom: 24px;
  color: var(--ink);
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(58px, 6vw, 86px);
}

h2 {
  font-size: clamp(42px, 4.4vw, 60px);
}

h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-shell {
  position: relative;
  isolation: isolate;
}

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

.section {
  position: relative;
  padding-block: 112px;
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: calc(var(--page-progress) * 100%);
  height: 3px;
  background: var(--blue-300);
  box-shadow: 0 0 16px rgb(92 174 228 / 65%);
  pointer-events: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--blue-500);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--blue-200);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 54px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered h2 {
  width: 100%;
  max-width: 1050px;
  margin-inline: auto;
}

.section-heading > p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 19px;
}

.section-heading.centered > p:last-child {
  margin-inline: auto;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  height: auto;
  padding: 13px 22px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 12px;
  cursor: pointer;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  white-space: normal;
  box-shadow: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover svg:last-child {
  transform: translateX(3px);
}

.button-primary {
  border: 1px solid var(--blue-500);
  background: var(--blue-500);
  color: var(--white);
  box-shadow: 0 10px 28px rgb(1 84 167 / 20%);
}

.button-primary:hover {
  border-color: var(--blue-600);
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 14px 34px rgb(1 65 143 / 27%);
}

.button-secondary {
  border: 1px solid var(--blue-500);
  background: transparent;
  color: var(--blue-500);
}

.button-secondary:hover {
  border-color: var(--blue-500);
  background: var(--blue-100);
  color: var(--blue-900);
}

.button-on-blue {
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--blue-500);
  box-shadow: 0 12px 36px rgb(0 24 80 / 22%);
}

.button-on-blue:hover {
  border-color: var(--blue-100);
  background: var(--blue-100);
  color: var(--blue-900);
}

.button-outline-light {
  border: 1px solid rgb(255 255 255 / 64%);
  background: transparent;
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: rgb(255 255 255 / 10%);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-500);
  font-weight: 600;
}

.text-link svg {
  width: 20px;
}

.text-link:hover {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgb(148 211 246 / 58%);
  background: rgb(255 255 255 / 90%);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  min-height: 86px;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.brand-link img {
  width: 166px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 44px);
}

.desktop-nav a {
  position: relative;
  color: var(--blue-900);
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a::after {
  position: absolute;
  right: 100%;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue-500);
  content: "";
  transition: right 180ms ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-cta {
  min-height: 46px;
  padding: 11px 18px;
  font-size: 14px;
}

.mobile-menu-button {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue-300);
  border-radius: 12px;
  background: var(--white);
  border-color: var(--blue-300);
  color: var(--blue-700);
  cursor: pointer;
}

.mobile-menu-button svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  padding: 10px 20px 22px;
  border-top: 1px solid var(--blue-200);
  background: var(--white);
  box-shadow: 0 18px 36px rgb(0 48 120 / 12%);
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  padding: 15px 0;
  border-bottom: 1px solid var(--blue-200);
  color: var(--blue-900);
  font-weight: 600;
}

.mobile-menu .button {
  width: 100%;
  margin-top: 18px;
}

.mobile-sheet {
  border-color: var(--blue-200);
  background: var(--white);
  color: var(--blue-900);
}

.mobile-sheet [data-slot="sheet-title"] {
  color: var(--blue-900);
  font-family: "Anton", Impact, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}

.mobile-sheet [data-slot="sheet-description"] {
  color: var(--blue-700);
  font-size: 15px;
}

.mobile-nav {
  display: grid;
  padding: 12px 16px;
}

.mobile-nav a {
  padding: 18px 0;
  border-bottom: 1px solid var(--blue-200);
  color: var(--blue-900);
  font-size: 18px;
  font-weight: 600;
}

.mobile-sheet-cta {
  display: grid;
  gap: 22px;
  margin-top: auto;
  padding: 20px 16px 28px;
}

.hero {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 82% 23%, rgb(200 235 250 / 62%), transparent 27%),
    linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
}

.hero-grid {
  display: grid;
  min-height: 730px;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: 76px;
  padding-block: 76px 90px;
}

.hero-copy,
.hero-media {
  min-width: 0;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 28px;
}

.hero h1 strong {
  display: block;
  color: var(--blue-500);
  font: inherit;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--blue-900);
  font-size: 18px;
  line-height: 1.5;
}

.hero-text strong {
  color: var(--blue-500);
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 28px;
}

.hero-assurances li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 600;
}

.hero-assurances svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-600);
  stroke-width: 3;
}

.hero-media {
  position: relative;
  min-height: 560px;
}

.hero-video-frame {
  position: absolute;
  top: 12px;
  right: 14px;
  width: min(92%, 540px);
  aspect-ratio: 0.96;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 38% 18% 32% 14% / 22% 30% 16% 34%;
  background: var(--blue-100);
  box-shadow: 0 30px 70px rgb(0 48 120 / 22%);
  transform: rotate(1.25deg);
}

.hero-video-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 24 80 / 5%), transparent 46%, rgb(0 24 80 / 34%));
  content: "";
  pointer-events: none;
}

.hero-video-frame video,
.hero-phone video,
.product-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-chip,
.viewer-chip,
.comment-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgb(255 255 255 / 70%);
  background: rgb(255 255 255 / 91%);
  box-shadow: 0 10px 30px rgb(0 24 80 / 16%);
  backdrop-filter: blur(12px);
}

.live-chip {
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--blue-900);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.live-chip span,
.studio-photo figcaption span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f04438;
  box-shadow: 0 0 0 5px rgb(240 68 56 / 17%);
  animation: livePulse 1.8s ease-in-out infinite;
}

.viewer-chip {
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--blue-800);
  font-size: 11px;
  font-weight: 600;
}

.viewer-chip svg {
  width: 16px;
  color: var(--blue-500);
}

.comment-card {
  width: 220px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--blue-900);
  font-size: 12px;
  font-weight: 500;
}

.comment-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-500);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comment-one {
  top: 112px;
  right: -10px;
  animation: floatCard 5s ease-in-out infinite;
}

.comment-two {
  bottom: 90px;
  left: -18px;
  animation: floatCard 5s ease-in-out 1.4s infinite;
}

.hero-phone {
  position: absolute;
  z-index: 3;
  right: -14px;
  bottom: 8px;
  width: 29%;
  min-width: 142px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 6px solid var(--blue-900);
  border-radius: 30px;
  background: var(--blue-900);
  box-shadow: 0 24px 44px rgb(0 24 80 / 34%);
  transform: rotate(2.5deg);
}

.hero-phone::before {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 50%;
  width: 42%;
  height: 14px;
  border-radius: 999px;
  background: var(--blue-900);
  content: "";
  transform: translateX(-50%);
}

.organic-stroke {
  position: absolute;
  z-index: -1;
  top: -18px;
  left: -16px;
  width: 94%;
  height: 94%;
  border: 18px solid var(--blue-500);
  border-color: var(--blue-500) transparent var(--blue-300) var(--blue-500);
  border-radius: 54% 27% 48% 22% / 34% 56% 24% 45%;
  transform: rotate(-5deg);
}

.hero-grid-pattern,
.final-grid-pattern {
  position: absolute;
  width: 170px;
  height: 136px;
  opacity: 0.62;
  background-image: radial-gradient(var(--blue-200) 34%, transparent 36%);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-grid-pattern {
  top: 116px;
  right: 2.5vw;
}

.speed-lines {
  position: absolute;
  display: grid;
  gap: 8px;
  pointer-events: none;
}

.speed-lines span {
  display: block;
  height: 2px;
  background: var(--blue-300);
}

.speed-lines span:nth-child(1) { width: 88px; }
.speed-lines span:nth-child(2) { width: 132px; }
.speed-lines span:nth-child(3) { width: 64px; }

.hero-speed-lines {
  bottom: 134px;
  left: 1.8vw;
}

.platform-ribbon {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--blue-600);
  background: var(--blue-500);
  color: var(--white);
}

.platform-ribbon-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 26px;
  padding-block: 16px;
  animation: ribbonMove 28s linear infinite;
}

.platform-ribbon span {
  font-family: "Anton", Impact, sans-serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.platform-ribbon i {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--blue-200);
  transform: rotate(45deg);
}

.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.mechanism-card {
  position: relative;
  min-width: 0;
  min-height: 310px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--blue-200);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 16px 40px rgb(0 48 120 / 7%);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.mechanism-card:hover {
  border-color: var(--blue-400);
  box-shadow: 0 22px 48px rgb(0 48 120 / 12%);
  transform: translateY(-6px);
}

.card-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: var(--blue-200);
  font-family: "Anton", Impact, sans-serif;
  font-size: 34px;
}

.icon-box {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 42px;
  border-radius: 18px;
  background: var(--blue-100);
  color: var(--blue-500);
  place-items: center;
}

.icon-box svg {
  width: 29px;
  height: 29px;
  stroke-width: 1.8;
}

.mechanism-card h3 {
  margin-bottom: 16px;
}

.mechanism-card p {
  margin-bottom: 0;
  color: var(--blue-700);
  font-size: 16px;
}

.comparison-panel {
  display: grid;
  margin-top: 52px;
  padding: 12px;
  grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
  align-items: stretch;
  gap: 12px;
  border: 1px solid var(--blue-200);
  border-radius: 28px;
  background: #f3faff;
}

.comparison-side {
  min-width: 0;
  padding: 34px;
  border-radius: 20px;
}

.comparison-static {
  color: #415f7c;
}

.comparison-live {
  background: var(--blue-500);
  color: var(--white);
  box-shadow: 0 18px 42px rgb(1 84 167 / 22%);
}

.comparison-label {
  margin-bottom: 13px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-static .comparison-label {
  color: #5c7186;
}

.comparison-live .comparison-label {
  color: var(--blue-100);
}

.comparison-side h3 {
  margin-bottom: 24px;
  font-size: 24px;
}

.comparison-live h3 {
  color: var(--white);
}

.comparison-side ul {
  display: grid;
  gap: 14px;
}

.comparison-side li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.comparison-static li::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8097ad;
  content: "";
}

.comparison-live li svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-500);
  stroke-width: 3;
}

.comparison-arrow {
  display: grid;
  color: var(--blue-500);
  place-items: center;
}

.comparison-arrow svg {
  width: 26px;
}

.reality-section {
  overflow: clip;
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-700) 62%, var(--blue-900) 100%);
  color: var(--white);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
  gap: 84px;
}

.reality-section h2 {
  max-width: 620px;
  color: var(--white);
}

.lead-light {
  margin-bottom: 30px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.55;
}

.fomo-card {
  display: grid;
  margin-bottom: 30px;
  padding: 24px;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  border: 1px solid rgb(200 235 250 / 27%);
  border-radius: 18px;
  background: rgb(255 255 255 / 9%);
  backdrop-filter: blur(8px);
}

.fomo-card > svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 13px;
  background: var(--white);
  color: var(--blue-500);
}

.fomo-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 18px;
}

.fomo-card p {
  margin: 0;
  color: var(--blue-100);
  font-size: 15px;
  line-height: 1.5;
}

.reality-orb {
  position: absolute;
  border: 1px solid rgb(148 211 246 / 27%);
  border-radius: 50%;
  pointer-events: none;
}

.reality-orb-one {
  top: -180px;
  right: -120px;
  width: 480px;
  height: 480px;
}

.reality-orb-two {
  bottom: -220px;
  left: -120px;
  width: 520px;
  height: 520px;
}

.platforms-section {
  background: var(--white);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.platform-card {
  min-width: 0;
  min-height: 340px;
  padding: 30px;
  border-radius: 22px;
  background: var(--blue-900);
  color: var(--white);
  box-shadow: 0 20px 50px rgb(0 24 80 / 16%);
  transition: transform 220ms ease;
}

.platform-card:hover {
  transform: translateY(-6px);
}

.platform-card.tiktok {
  background: linear-gradient(145deg, #001850, #003078);
}

.platform-card.mercado {
  background: linear-gradient(145deg, #0154a7, #003078);
}

.platform-card.shopee {
  background: linear-gradient(145deg, #3386ca, #0154a7);
}

.platform-top {
  display: flex;
  margin-bottom: 56px;
  align-items: center;
  justify-content: space-between;
}

.platform-top svg {
  width: 46px;
  height: 46px;
  padding: 11px;
  border-radius: 14px;
  background: rgb(255 255 255 / 12%);
}

.platform-top span {
  color: rgb(255 255 255 / 38%);
  font-family: "Anton", Impact, sans-serif;
  font-size: 34px;
}

.platform-card h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 28px;
}

.platform-card p {
  min-height: 84px;
  margin-bottom: 26px;
  color: rgb(255 255 255 / 82%);
  font-size: 15px;
  line-height: 1.5;
}

.platform-tag {
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid rgb(255 255 255 / 23%);
  border-radius: 999px;
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.process-section {
  background: #eef8fd;
}

.process-section .section-heading {
  max-width: 980px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  position: relative;
  min-width: 0;
  padding: 28px 24px 26px;
  border: 1px solid var(--blue-200);
  border-radius: 20px;
  background: var(--white);
}

.process-card:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 55px;
  right: -19px;
  width: 20px;
  height: 2px;
  background: var(--blue-300);
  content: "";
}

.process-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  border-radius: 15px;
  background: var(--blue-500);
  color: var(--white);
  place-items: center;
}

.process-icon svg {
  width: 25px;
}

.process-card > span {
  position: absolute;
  top: 28px;
  right: 24px;
  color: var(--blue-200);
  font-family: "Anton", Impact, sans-serif;
  font-size: 26px;
}

.process-card h3 {
  margin-bottom: 14px;
  font-size: 21px;
}

.process-card p {
  margin: 0;
  color: var(--blue-700);
  font-size: 14px;
  line-height: 1.5;
}

.structure-section {
  background: var(--white);
}

.structure-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 84px;
}

.structure-copy,
.media-mosaic {
  min-width: 0;
}

.structure-copy > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--blue-700);
  font-size: 18px;
  line-height: 1.55;
}

.structure-list {
  display: grid;
  margin-bottom: 32px;
  gap: 16px;
}

.structure-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  color: var(--blue-800);
  font-size: 15px;
}

.structure-list svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 12px;
  background: var(--blue-100);
  color: var(--blue-500);
}

.media-mosaic {
  position: relative;
  display: grid;
  min-height: 670px;
  grid-template-columns: 1.12fr 0.72fr;
  grid-template-rows: 1fr 0.42fr;
  gap: 18px;
}

.media-mosaic figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 6px solid var(--white);
  background: var(--blue-100);
  box-shadow: 0 22px 55px rgb(0 48 120 / 17%);
}

.studio-photo {
  grid-row: 1 / 3;
  border-radius: 26% 12% 24% 10% / 18% 22% 14% 28%;
}

.studio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-photo figcaption,
.product-video figcaption {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgb(255 255 255 / 56%);
  background: rgb(255 255 255 / 91%);
  color: var(--blue-900);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.studio-photo figcaption {
  right: 18px;
  bottom: 18px;
  padding: 10px 12px;
  border-radius: 999px;
}

.product-video {
  border-radius: 18px 30% 18px 18px;
}

.product-video figcaption {
  right: 10px;
  bottom: 10px;
  left: 10px;
  justify-content: center;
  padding: 10px;
  border-radius: 10px;
}

.mosaic-stat {
  display: flex;
  min-width: 0;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
  border-radius: 22px;
  background: var(--blue-500);
  color: var(--white);
  box-shadow: 0 20px 45px rgb(1 84 167 / 22%);
}

.mosaic-stat svg {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
}

.mosaic-stat strong {
  font-family: "Anton", Impact, sans-serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}

.mosaic-stat span {
  margin-top: 5px;
  color: var(--blue-100);
  font-size: 12px;
}

.fit-section {
  background: #eef8fd;
}

.fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 24px;
}

.fit-panel {
  min-width: 0;
  padding: 46px;
  border-radius: 26px;
}

.fit-positive {
  border: 1px solid var(--blue-200);
  background: var(--white);
}

.fit-positive p:not(.eyebrow) {
  color: var(--blue-700);
}

.fit-positive ul {
  display: grid;
  margin-top: 30px;
  gap: 18px;
}

.fit-positive li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: var(--blue-900);
  font-size: 16px;
  font-weight: 500;
}

.fit-positive li svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--blue-500);
}

.fit-relief {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: linear-gradient(145deg, var(--blue-500), var(--blue-800));
  color: var(--white);
  box-shadow: 0 24px 60px rgb(0 48 120 / 20%);
}

.relief-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 30px;
  border-radius: 18px;
  background: var(--white);
  color: var(--blue-500);
  place-items: center;
}

.relief-icon svg {
  width: 31px;
}

.fit-relief h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 30px;
}

.fit-relief > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--blue-100);
  font-size: 16px;
  line-height: 1.55;
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 84px;
}

.faq-heading > p:not(.eyebrow) {
  color: var(--blue-700);
}

.faq-accordion {
  border-top: 1px solid var(--blue-200);
}

.faq-item {
  border-color: var(--blue-200);
  border-bottom: 1px solid var(--blue-200);
}

.faq-question {
  display: flex;
  width: 100%;
  padding-block: 23px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  background: transparent;
  color: var(--blue-900);
  cursor: pointer;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  text-decoration: none;
}

.faq-question:hover {
  color: var(--blue-500);
  text-decoration: none;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--blue-500);
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 48px 23px 0;
  color: var(--blue-700);
  font-size: 15px;
  line-height: 1.6;
}

.faq-answer p {
  margin: 0;
}

.final-cta {
  overflow: clip;
  background:
    radial-gradient(circle at 15% 105%, rgb(92 174 228 / 35%), transparent 28%),
    linear-gradient(135deg, var(--blue-600), var(--blue-900));
  color: var(--white);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  text-align: center;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  color: var(--white);
}

.final-cta-inner > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto 32px;
  color: var(--blue-100);
  font-size: 18px;
  line-height: 1.55;
}

.centered-row {
  justify-content: center;
}

.final-grid-pattern {
  top: 30px;
  right: 5vw;
  opacity: 0.18;
}

.final-speed-lines {
  bottom: 50px;
  left: 5vw;
  opacity: 0.55;
}

.site-footer {
  padding-top: 72px;
  background: #000d36;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.9fr;
  gap: 90px;
}

.footer-brand img {
  width: 166px;
  height: auto;
  margin: 0;
  filter: none;
}

.footer-logo-box {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 11px 15px;
  align-items: center;
  border: 1px solid rgb(200 235 250 / 34%);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 32px rgb(0 0 0 / 18%);
}

.footer-brand p {
  max-width: 430px;
  margin: 0;
  color: var(--blue-200);
  font-size: 15px;
  line-height: 1.55;
}

.footer-title {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  gap: 13px;
}

.footer-nav a {
  width: fit-content;
  color: var(--blue-200);
  font-size: 14px;
}

.footer-nav a:hover,
.footer-contact:hover {
  color: var(--white);
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-200);
  font-size: 15px;
  font-weight: 600;
}

.footer-contact svg {
  width: 20px;
}

.footer-bottom {
  display: flex;
  margin-top: 58px;
  padding-block: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgb(148 211 246 / 18%);
  color: rgb(200 235 250 / 68%);
  font-size: 12px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 45;
  bottom: 24px;
  left: 24px;
  display: flex;
  min-height: 54px;
  padding: 12px 18px;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: #1fa855;
  color: var(--white);
  box-shadow: 0 14px 34px rgb(0 50 20 / 30%);
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease;
}

.floating-whatsapp::before {
  position: absolute;
  inset: -8px;
  z-index: -1;
  border: 1px solid rgb(31 168 85 / 45%);
  border-radius: inherit;
  content: "";
  animation: whatsappPulse 2.4s ease-out infinite;
}

.floating-whatsapp:hover {
  background: #168b45;
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 23px;
  height: 23px;
}

.lead-dialog {
  position: fixed;
  inset: 0;
  width: min(760px, calc(100% - 32px));
  max-width: 760px;
  max-height: min(90vh, 860px);
  padding: 34px;
  overflow-y: auto;
  border: 1px solid var(--blue-200);
  border-radius: 24px;
  background: var(--white);
  color: var(--blue-900);
  box-shadow: 0 30px 90px rgb(0 24 80 / 30%);
}

.lead-dialog[open] {
  display: block;
  margin: auto;
  animation: dialogIn 220ms ease both;
}

.lead-dialog::backdrop {
  background: rgb(0 13 54 / 72%);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue-100);
  color: var(--blue-700);
  border: 0;
  cursor: pointer;
  place-items: center;
}

.dialog-close svg {
  width: 20px;
  height: 20px;
}

.lead-dialog-header {
  padding-right: 40px;
  text-align: left;
}

.lead-dialog-header .eyebrow,
.success-state .eyebrow {
  margin-bottom: 14px;
}

.lead-dialog-header h2,
.success-state h2 {
  margin-bottom: 12px;
  color: var(--blue-900);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
  text-wrap: balance;
}

.lead-dialog-header > p:last-child,
.success-state > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--blue-700);
  font-size: 15px;
  line-height: 1.5;
}

.form-progress {
  display: grid;
  margin-block: 22px 4px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.form-progress > div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6d8297;
  font-size: 12px;
  font-weight: 600;
}

.form-progress > div span {
  display: grid;
  width: 26px;
  height: 26px;
  border: 1px solid #8aa7c3;
  border-radius: 50%;
  color: #526b83;
  place-items: center;
}

.form-progress > div.active {
  color: var(--blue-700);
}

.form-progress > div.active span {
  border-color: var(--blue-500);
  background: var(--blue-500);
  color: var(--white);
}

.form-progress i {
  height: 2px;
  background: var(--blue-200);
}

.form-progress i.active {
  background: var(--blue-500);
}

.form-step {
  display: grid;
  padding-top: 20px;
  gap: 18px;
  animation: formStepIn 250ms ease both;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-grid.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  display: grid;
  min-width: 0;
  gap: 8px;
  color: var(--blue-900);
  font-size: 13px;
  font-weight: 600;
}

.form-field span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.form-field em {
  color: #667b8f;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
}

.form-control {
  width: 100%;
  min-height: 50px;
  height: 50px;
  padding: 0 14px;
  border: 1px solid #6f98bc;
  border-radius: 11px;
  background: var(--white);
  color: var(--blue-900);
  font-size: 14px;
  box-shadow: none;
}

select.form-control {
  cursor: pointer;
}

.form-control::placeholder {
  color: #6f8294;
}

.form-control:hover {
  border-color: var(--blue-500);
}

.form-control:focus,
.form-control[data-state="open"] {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgb(51 134 202 / 16%);
}

.select-control {
  display: flex;
  justify-content: space-between;
  white-space: normal;
}

.form-textarea {
  min-height: 106px;
  height: auto;
  padding-block: 13px;
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  margin: 0;
  padding: 11px 13px;
  border: 1px solid #f3aaa5;
  border-radius: 10px;
  background: #fff1f0;
  color: #8b1a13;
  font-size: 13px;
}

.form-next {
  width: 100%;
}

.form-note {
  display: flex;
  margin: -4px 0 0;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #526b83;
  font-size: 11px;
  text-align: center;
}

.form-note svg {
  width: 15px;
  height: 15px;
  color: var(--blue-500);
}

.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 11px;
}

.consent-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-color: #688fb2;
}

.consent-row label {
  color: #425f7b;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.button-back {
  border-color: var(--blue-300);
  background: var(--white);
  color: var(--blue-700);
}

.button-back:hover {
  background: var(--blue-100);
  color: var(--blue-900);
}

.success-state {
  display: flex;
  min-height: 450px;
  padding: 32px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.success-icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: #e9f9ef;
  color: #168b45;
  box-shadow: 0 0 0 10px #f3fcf6;
  place-items: center;
}

.success-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 3;
}

.success-state > p:not(.eyebrow) {
  margin: 0 auto 28px;
  text-align: center;
}

.button-whatsapp {
  border: 1px solid #1fa855;
  background: #1fa855;
  color: var(--white);
}

.button-whatsapp:hover {
  background: #168b45;
  color: var(--white);
}

.success-close {
  margin-top: 10px;
  border: 0;
  background: transparent;
  color: var(--blue-700);
  cursor: pointer;
  font: inherit;
}

@keyframes dialogIn {
  from { opacity: 0; transform: translateY(14px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes livePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.72); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes ribbonMove {
  to { transform: translateX(-50%); }
}

@keyframes whatsappPulse {
  0% { opacity: 0.75; transform: scale(0.94); }
  75%, 100% { opacity: 0; transform: scale(1.15); }
}

@keyframes formStepIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1120px) {
  .hero-grid,
  .split-layout,
  .structure-grid,
  .faq-grid {
    gap: 48px;
  }

  .header-inner {
    grid-template-columns: 178px 1fr auto;
  }

  .desktop-nav {
    gap: 22px;
  }

  .hero-grid {
    min-height: 680px;
  }

  .hero-media {
    min-height: 500px;
  }

  .comment-card {
    width: 196px;
  }

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

  .process-card:nth-child(2)::after {
    display: none;
  }

  .media-mosaic {
    min-height: 590px;
  }

  .fit-panel {
    padding: 38px;
  }
}

@media (max-width: 920px) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .hero-grid,
  .split-layout,
  .structure-grid,
  .fit-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 68px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-media {
    width: min(100%, 720px);
    min-height: 600px;
    margin-inline: auto;
  }

  .hero-video-frame {
    right: 5%;
    width: 86%;
  }

  .hero-phone {
    right: 1%;
    width: 25%;
  }

  .comparison-panel {
    grid-template-columns: 1fr;
  }

  .comparison-arrow {
    height: 42px;
    transform: rotate(90deg);
  }

  .platform-grid {
    grid-template-columns: 1fr;
  }

  .platform-card {
    min-height: 0;
  }

  .platform-top {
    margin-bottom: 40px;
  }

  .platform-card p {
    min-height: 0;
  }

  .media-mosaic {
    width: min(100%, 690px);
    margin-inline: auto;
  }

  .faq-heading {
    max-width: 720px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr;
    gap: 48px;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / 3;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(40px, 11.5vw, 60px);
  }

  h2 {
    font-size: clamp(34px, 9vw, 46px);
  }

  h3 {
    font-size: 24px;
  }

  .container {
    width: calc(100% - 40px);
  }

  .section {
    padding-block: 80px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading > p:last-child,
  .hero-text,
  .structure-copy > p:not(.eyebrow),
  .final-cta-inner > p:not(.eyebrow) {
    font-size: 16px;
  }

  .header-inner {
    min-height: 74px;
    grid-template-columns: 1fr auto;
  }

  .brand-link img {
    width: 142px;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-button {
    width: 44px;
    height: 44px;
  }

  .hero-grid {
    min-height: auto;
    gap: 60px;
    padding-block: 58px 78px;
  }

  .hero .eyebrow {
    font-size: 12px;
  }

  .hero .button-row,
  .final-cta .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero .button,
  .final-cta .button {
    width: 100%;
  }

  .hero-assurances {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-video-frame {
    top: 0;
    right: 5%;
    width: 92%;
    aspect-ratio: 1;
    border-width: 5px;
    border-radius: 30% 14% 28% 12% / 18% 26% 14% 30%;
  }

  .hero-phone {
    right: -1%;
    bottom: 0;
    width: 31%;
    min-width: 112px;
    border-width: 4px;
    border-radius: 22px;
  }

  .live-chip {
    top: 15px;
    left: 15px;
    padding: 7px 9px;
    font-size: 9px;
  }

  .viewer-chip {
    right: 14px;
    bottom: 14px;
    font-size: 9px;
  }

  .comment-card {
    width: 168px;
    padding: 10px 11px;
    font-size: 10px;
  }

  .comment-one {
    top: 86px;
    right: -4px;
  }

  .comment-two {
    bottom: 70px;
    left: -8px;
  }

  .organic-stroke {
    border-width: 12px;
  }

  .hero-grid-pattern {
    top: 95px;
    right: -60px;
  }

  .platform-ribbon-track {
    gap: 18px;
    padding-block: 13px;
  }

  .platform-ribbon span {
    font-size: 16px;
  }

  .mechanism-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .mechanism-card {
    min-height: 0;
    padding: 28px;
  }

  .icon-box {
    margin-bottom: 34px;
  }

  .comparison-panel {
    margin-top: 38px;
  }

  .comparison-side {
    padding: 26px;
  }

  .lead-light {
    font-size: 18px;
  }

  .fomo-card {
    grid-template-columns: 40px 1fr;
    padding: 20px;
    gap: 14px;
  }

  .fomo-card > svg {
    width: 40px;
    height: 40px;
  }

  .platform-card {
    padding: 26px;
  }

  .process-card:not(:last-child)::after {
    display: none;
  }

  .structure-list > div {
    grid-template-columns: 40px 1fr;
  }

  .media-mosaic {
    min-height: 520px;
    grid-template-columns: 1fr 0.72fr;
  }

  .studio-photo {
    border-radius: 24% 10% 22% 9% / 16% 20% 12% 26%;
  }

  .mosaic-stat {
    padding: 18px;
  }

  .mosaic-stat strong {
    font-size: 25px;
  }

  .fit-panel {
    padding: 28px 24px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-answer {
    padding-right: 12px;
    font-size: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .floating-whatsapp {
    bottom: 18px;
    left: 18px;
    min-height: 52px;
    padding: 11px 15px;
    font-size: 12px;
  }

  .lead-dialog {
    width: calc(100% - 24px);
    max-height: 92vh;
    padding: 24px;
    border-radius: 18px;
  }

  .lead-dialog-header {
    padding-right: 22px;
  }

  .lead-dialog-header h2,
  .success-state h2 {
    font-size: 34px;
  }

  .form-grid.two-columns {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column-reverse;
  }

  .form-actions .button {
    width: 100%;
  }

  .success-state {
    min-height: 410px;
    padding: 22px 4px;
  }
}

@media (max-width: 390px) {
  .hero-assurances {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 390px;
  }

  .comment-two {
    display: none;
  }

  .media-mosaic {
    min-height: 460px;
  }

  .mosaic-stat span {
    display: none;
  }

  .form-progress > div {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
