:root {
  --ink: #07152f;
  --ink-soft: #25314a;
  --blue: #0b63f6;
  --blue-bright: #2f7dff;
  --blue-pale: #edf4ff;
  --yellow: #ffc93c;
  --white: #ffffff;
  --cloud: #f6f8fc;
  --line: #dfe6f1;
  --muted: #647089;
  --green: #25d366;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shadow: 0 22px 70px rgba(7, 21, 47, 0.14);
  --container: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible,
video:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}
.container { width: var(--container); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled,
.site-header.menu-open {
  background: rgba(7, 21, 47, .96);
  box-shadow: 0 10px 35px rgba(1, 8, 24, .16);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -.045em;
  white-space: nowrap;
}
.brand > span:last-child > span { color: var(--blue-bright); }
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: var(--blue);
}
.brand-mark svg { width: 28px; height: 28px; }
.brand-mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
}
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, .76);
  font-size: .9rem;
  font-weight: 600;
  transition: color .2s ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--blue-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  cursor: pointer;
}
.menu-button span { width: 20px; height: 2px; background: currentColor; transition: transform .2s ease; }
.site-header.menu-open .menu-button span:first-child { transform: translateY(4.5px) rotate(45deg); }
.site-header.menu-open .menu-button span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
.mobile-nav { display: none; }

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .96rem;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 35px rgba(11, 99, 246, .28);
}
.button-primary:hover { background: #0757dc; box-shadow: 0 18px 40px rgba(11, 99, 246, .36); }
.button-light { color: var(--ink); background: var(--white); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: .88rem; }
.button-wide { width: 100%; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 8px;
  color: var(--ink);
  font-weight: 800;
  border-bottom: 1px solid rgba(7, 21, 47, .25);
}
.text-link span { color: var(--blue); }
.text-link-light { color: var(--white); border-bottom-color: rgba(255, 255, 255, .35); }
.text-link-light span { color: var(--white); }

.hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .2;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one {
  width: 560px;
  height: 560px;
  top: -220px;
  right: -120px;
  background: radial-gradient(circle, rgba(47, 125, 255, .42), rgba(47, 125, 255, 0) 69%);
}
.hero-glow-two {
  width: 460px;
  height: 460px;
  bottom: 20px;
  left: -260px;
  background: radial-gradient(circle, rgba(11, 99, 246, .28), rgba(11, 99, 246, 0) 68%);
}
.hero-grid {
  min-height: 760px;
  padding-top: 126px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, .76fr);
  align-items: center;
  gap: clamp(54px, 8vw, 108px);
}
.hero-copy { padding-bottom: 26px; }
.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow > span { width: 24px; height: 2px; background: currentColor; }
.eyebrow-light { color: #78a8ff; }
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.35rem, 5.7vw, 5.8rem);
  line-height: .96;
  letter-spacing: -.065em;
  text-wrap: balance;
}
.hero h1 em { color: #72a3ff; font-style: normal; }
.hero-text {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .73);
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero .text-link { color: var(--white); border-bottom-color: rgba(255,255,255,.35); }
.hero .text-link span { color: #78a8ff; }
.hero-price { margin-top: 42px; display: flex; align-items: center; gap: 22px; }
.hero-price > div { display: grid; }
.hero-price small { color: rgba(255,255,255,.58); font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.hero-price strong { font-size: 2.15rem; letter-spacing: -.05em; line-height: 1.08; }
.hero-price > span { width: 1px; height: 48px; background: rgba(255,255,255,.18); }
.hero-price p { margin: 0; color: rgba(255,255,255,.67); font-size: .9rem; }
.hero-visual { align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.hero-photo-wrap {
  position: relative;
  height: min(610px, 66vw);
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 190px 190px 28px 28px;
  box-shadow: 0 34px 90px rgba(0,0,0,.34);
  background: #143460;
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: 48% 53%; }
.photo-shade { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 48%, rgba(2,10,25,.72) 100%); }
.location-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 16px;
  background: rgba(7,21,47,.72);
  backdrop-filter: blur(14px);
}
.location-card div { display: grid; }
.location-card strong { font-size: .86rem; }
.location-card small { color: rgba(255,255,255,.65); font-size: .72rem; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(37,211,102,.14); }
.tap-card {
  position: absolute;
  top: 54%;
  right: 16px;
  width: 126px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.tap-card div { display: grid; line-height: 1.2; }
.tap-card strong { font-size: .84rem; }
.tap-card small { color: var(--muted); font-size: .72rem; }
.tap-icon { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 12px; color: var(--white); background: var(--blue); }
.tap-icon svg { width: 30px; }
.tap-icon path { fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; }
.image-caption { margin: 13px 0 0; color: rgba(255,255,255,.48); font-size: .76rem; text-align: center; }
.proof-strip {
  min-height: 120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.12);
}
.proof-strip > div { padding: 28px 28px 26px 0; display: grid; align-content: center; gap: 2px; }
.proof-strip > div + div { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.12); }
.proof-strip strong { font-size: 1.02rem; }
.proof-strip span { color: rgba(255,255,255,.5); font-size: .82rem; }

.section { padding-block: 120px; }
.section h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.4vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.section-lead { margin: 24px 0 0; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.how { background: var(--white); }
.how-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .67fr); align-items: center; gap: clamp(60px, 10vw, 130px); }
.steps-list { margin: 44px 0 0; padding: 0; list-style: none; }
.steps-list li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.steps-list li:last-child { border-bottom: 1px solid var(--line); }
.steps-list > li > span { color: var(--blue); font-size: .74rem; font-weight: 900; letter-spacing: .08em; }
.steps-list strong { font-size: 1.08rem; }
.steps-list p { margin: 5px 0 0; color: var(--muted); font-size: .92rem; }
.demo-shell { padding: 22px; border-radius: var(--radius-lg); color: var(--white); background: var(--ink); box-shadow: var(--shadow); }
.demo-topline { padding: 2px 4px 18px; display: flex; align-items: center; justify-content: space-between; font-size: .8rem; font-weight: 800; }
.demo-duration { color: rgba(255,255,255,.48); font-weight: 600; }
.video-frame { max-width: 350px; margin-inline: auto; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 24px; background: #000; }
.video-frame video { width: 100%; max-height: 590px; object-fit: cover; }
.demo-shell > p { margin: 18px 0 2px; color: rgba(255,255,255,.62); font-size: .82rem; text-align: center; }

.advantages { color: var(--white); background: #0a1b3b; }
.section-heading { max-width: 750px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading > p:last-child { margin: 22px auto 0; max-width: 650px; color: rgba(255,255,255,.6); font-size: 1.05rem; }
.advantage-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.advantage-card { position: relative; min-height: 350px; padding: 30px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); background: rgba(255,255,255,.045); }
.advantage-card::after { content: ""; position: absolute; width: 190px; height: 190px; top: -96px; right: -80px; border-radius: 50%; background: rgba(47,125,255,.11); }
.card-number { position: absolute; top: 28px; right: 28px; color: rgba(255,255,255,.3); font-size: .75rem; font-weight: 900; }
.icon-box { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; color: #8bb5ff; background: rgba(47,125,255,.14); }
.icon-box svg { width: 26px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.advantage-card h3 { margin: 84px 0 12px; font-size: 1.45rem; letter-spacing: -.03em; }
.advantage-card p { margin: 0; color: rgba(255,255,255,.58); }

.real-life { background: var(--cloud); }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.2fr .65fr; align-items: end; gap: 80px; }
.split-heading > p { margin: 0 0 6px; color: var(--muted); font-size: 1.03rem; }
.photo-grid { margin-top: 58px; display: grid; grid-template-columns: 1.08fr .88fr .72fr; align-items: stretch; gap: 18px; }
.business-photo { position: relative; min-height: 520px; margin: 0; overflow: hidden; border-radius: var(--radius-md); background: #d9e2ef; }
.business-photo img { width: 100%; height: 100%; object-fit: cover; }
.business-photo-main img { object-position: 50% 55%; }
.business-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 52%, rgba(4,13,31,.82) 100%); }
.business-photo figcaption { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; display: grid; color: var(--white); }
.business-photo figcaption strong { font-size: 1.08rem; }
.business-photo figcaption span { color: rgba(255,255,255,.65); font-size: .8rem; }
.business-list { padding: 32px; border-radius: var(--radius-md); color: var(--white); background: var(--blue); }
.list-label { font-size: .74rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; opacity: .72; }
.business-list ul { margin: 42px 0 0; padding: 0; list-style: none; }
.business-list li { padding: 15px 0; border-top: 1px solid rgba(255,255,255,.22); font-weight: 750; }
.business-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.22); }

.product { background: var(--white); }
.product-grid { display: block; }
.product-copy { width: min(100%, 760px); margin-inline: auto; }
.included-list { margin: 35px 0 0; padding: 0; list-style: none; }
.included-list li { display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding: 17px 0; border-top: 1px solid var(--line); }
.included-list li > span { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; color: var(--blue); background: var(--blue-pale); font-size: .8rem; font-weight: 900; }
.included-list li div { display: grid; }
.included-list strong { font-size: .98rem; }
.included-list small { margin-top: 3px; color: var(--muted); font-size: .8rem; }
.price-card { margin-top: 28px; padding: 24px; border: 1px solid #cfe0ff; border-radius: var(--radius-md); background: var(--blue-pale); }
.price-head { margin-bottom: 18px; display: flex; align-items: end; justify-content: space-between; gap: 18px; }
.price-head > div { display: grid; }
.price-head small { color: var(--muted); font-size: .77rem; font-weight: 700; }
.price-head strong { margin-top: -3px; font-size: 3rem; line-height: 1; letter-spacing: -.06em; }
.price-head sup { margin-right: 4px; color: var(--blue); font-size: .95rem; vertical-align: 1.25em; }
.price-head > span { margin-bottom: 7px; color: var(--blue); font-size: .73rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.price-card > p { margin: 13px 0 0; color: var(--muted); font-size: .73rem; text-align: center; }

.custom-uses { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.custom-uses::before { content: ""; position: absolute; width: 680px; height: 680px; right: -260px; bottom: -340px; border-radius: 50%; background: radial-gradient(circle, rgba(47,125,255,.34), transparent 65%); }
.custom-grid { position: relative; display: grid; grid-template-columns: 1fr .7fr; align-items: center; gap: clamp(70px, 12vw, 150px); }
.custom-copy > p:not(.eyebrow) { max-width: 600px; margin: 24px 0 0; color: rgba(255,255,255,.63); font-size: 1.05rem; }
.custom-copy ul { margin: 38px 0 28px; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.custom-copy li { padding: 16px 0; display: grid; border-top: 1px solid rgba(255,255,255,.14); }
.custom-copy li span { font-weight: 800; }
.custom-copy li small { color: rgba(255,255,255,.48); font-size: .75rem; }
.custom-photo { max-width: 330px; margin: 0 auto; transform: rotate(2deg); }
.custom-photo img { width: 100%; border: 9px solid var(--white); border-radius: 28px; box-shadow: 0 35px 80px rgba(0,0,0,.4); }
.custom-photo figcaption { margin-top: 16px; color: rgba(255,255,255,.5); font-size: .72rem; text-align: center; }

.faq { background: var(--cloud); }
.faq-grid { display: grid; grid-template-columns: .68fr 1fr; gap: clamp(70px, 10vw, 130px); align-items: start; }
.faq-intro { position: sticky; top: 116px; }
.faq-intro > p:not(.eyebrow) { margin: 22px 0 18px; color: var(--muted); }
.faq-list details { border-top: 1px solid #cad4e3; }
.faq-list details:last-child { border-bottom: 1px solid #cad4e3; }
.faq-list summary { padding: 24px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 1.02rem; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--blue); background: var(--white); transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -7px 48px 24px 4px; color: var(--muted); font-size: .94rem; }

.final-cta { padding-block: 76px; color: var(--white); background: var(--blue); }
.final-cta-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 70px; }
.final-cta h2 { max-width: 790px; margin: 0; font-size: clamp(2.25rem, 4.3vw, 4.15rem); line-height: 1.02; letter-spacing: -.055em; text-wrap: balance; }
.final-action { min-width: 250px; display: grid; justify-items: center; gap: 12px; }
.final-action .button { color: var(--ink); background: var(--white); box-shadow: 0 16px 36px rgba(2,31,83,.2); }
.final-action small { color: rgba(255,255,255,.68); font-size: .72rem; }

.site-footer { padding-block: 58px; color: rgba(255,255,255,.58); background: #041025; }
.footer-grid { display: grid; grid-template-columns: 1fr auto .8fr; align-items: start; gap: 70px; }
.brand-footer { color: var(--white); }
.footer-grid > div:first-child > p { max-width: 360px; margin: 18px 0 0; font-size: .82rem; }
.footer-links { display: grid; gap: 10px; color: rgba(255,255,255,.77); font-size: .82rem; font-weight: 700; }
.footer-links a:hover { color: var(--white); }
.footer-note { font-size: .72rem; }
.footer-note p { margin: 0 0 8px; }

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  min-height: 52px;
  padding: 0 20px 0 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #062d17;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
  font-size: .88rem;
  font-weight: 900;
  transition: transform .2s ease;
}
.floating-whatsapp:hover { transform: translateY(-3px); }
.floating-whatsapp svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-two { transition-delay: .22s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  :root { --container: min(100% - 40px, 920px); }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: flex; }
  .mobile-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 12px max(20px, calc((100vw - 920px) / 2)) 24px;
    display: grid;
    gap: 4px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    background: rgba(7,21,47,.98);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .site-header.menu-open .mobile-nav { visibility: visible; opacity: 1; transform: translateY(0); }
  .mobile-nav > a:not(.button) { padding: 13px 6px; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.75); font-weight: 700; }
  .mobile-nav .button { margin-top: 12px; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr 390px; gap: 48px; }
  .hero h1 { font-size: clamp(3.15rem, 7vw, 4.55rem); }
  .hero-photo-wrap { min-height: 510px; }
  .proof-strip > div { padding-right: 16px; }
  .proof-strip > div + div { padding-left: 16px; }
  .how-grid { gap: 60px; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .business-list { grid-column: 1 / -1; }
  .business-list ul { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
  .footer-grid { grid-template-columns: 1fr auto; }
  .footer-note { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; }
}

@media (max-width: 780px) {
  :root { --container: min(100% - 32px, 640px); --radius-lg: 28px; }
  html { scroll-padding-top: 80px; }
  .header-inner { min-height: 70px; }
  .mobile-nav { top: 70px; padding-inline: 16px; }
  .hero-grid { min-height: auto; padding-top: 118px; padding-bottom: 46px; grid-template-columns: 1fr; gap: 52px; }
  .hero h1 { font-size: clamp(3rem, 13vw, 4.5rem); }
  .hero-text { font-size: 1.02rem; }
  .hero-visual { width: min(100%, 430px); margin-inline: auto; }
  .hero-photo-wrap { height: 570px; min-height: auto; border-radius: 150px 150px 24px 24px; }
  .tap-card { right: 12px; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-strip > div { padding: 22px 12px 22px 0; border-top: 1px solid rgba(255,255,255,.1); }
  .proof-strip > div + div { padding-left: 18px; }
  .proof-strip > div:nth-child(3) { padding-left: 0; border-left: 0; }
  .section { padding-block: 86px; }
  .section h2 { font-size: clamp(2.35rem, 10vw, 3.55rem); }
  .how-grid, .custom-grid, .faq-grid { grid-template-columns: 1fr; gap: 56px; }
  .demo-shell { max-width: 440px; width: 100%; margin-inline: auto; }
  .advantage-grid { grid-template-columns: 1fr; }
  .advantage-card { min-height: 280px; }
  .advantage-card h3 { margin-top: 54px; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .photo-grid { grid-template-columns: 1fr; }
  .business-photo { min-height: 480px; }
  .business-list { grid-column: auto; }
  .custom-photo { width: min(78%, 320px); }
  .faq-intro { position: static; }
  .final-cta-inner { grid-template-columns: 1fr; gap: 36px; }
  .final-action { justify-items: stretch; }
  .final-action small { text-align: center; }
}

@media (max-width: 540px) {
  :root { --container: calc(100% - 28px); }
  .brand { font-size: 1rem; }
  .brand-mark { width: 32px; height: 32px; }
  .hero-grid { padding-top: 104px; }
  .hero h1 { font-size: clamp(2.85rem, 14.7vw, 4rem); line-height: .98; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: center; }
  .hero-price { gap: 15px; }
  .hero-price strong { font-size: 1.9rem; }
  .hero-price p { font-size: .8rem; }
  .hero-photo-wrap { height: 510px; }
  .location-card { left: 13px; bottom: 13px; }
  .location-card small { max-width: 165px; }
  .tap-card { top: 51%; width: 117px; padding: 11px; }
  .proof-strip strong { font-size: .91rem; }
  .proof-strip span { font-size: .74rem; }
  .section { padding-block: 72px; }
  .section h2 { font-size: clamp(2.25rem, 11vw, 3rem); }
  .steps-list li { grid-template-columns: 43px 1fr; gap: 12px; }
  .demo-shell { padding: 15px; }
  .advantage-card { padding: 24px; }
  .business-photo { min-height: 440px; }
  .business-list ul, .custom-copy ul { grid-template-columns: 1fr; }
  .price-head { align-items: start; flex-direction: column; gap: 5px; }
  .price-head > span { margin-bottom: 0; }
  .faq-list summary { font-size: .95rem; }
  .final-cta { padding-block: 62px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-note { grid-column: auto; }
  .floating-whatsapp { right: 14px; bottom: 14px; min-height: 50px; padding-right: 16px; }
}

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