:root {
  --mds-primary: #20d7ff;
  --mds-accent: #ff7a18;
  --pv-cyan-rgb: 32, 215, 255;
  --pv-orange-rgb: 255, 122, 24;
  --pv-bg: #02070b;
  --pv-bg-2: #000306;
  --pv-surface: #061016;
  --pv-surface-2: #09141c;
  --pv-line: rgba(122, 185, 205, 0.22);
  --pv-line-soft: rgba(255, 255, 255, 0.09);
  --pv-text: #f5f8fb;
  --pv-muted: #a5b3bd;
  --pv-dim: #667681;
  --pv-cyan: var(--mds-primary);
  --pv-orange: var(--mds-accent);
  --pv-green: #8fe6a2;
  --pv-heading: "Bricolage Grotesque", "Aptos Display", "Segoe UI Variable Display", Arial, sans-serif;
  --pv-body: "Plus Jakarta Sans", Aptos, "Segoe UI Variable Text", Arial, sans-serif;
  --pv-max: 1216px;
  --pv-radius: 14px;
  --pv-shadow: 0 28px 90px rgba(0, 0, 0, 0.56);
  --pv-glow-cyan: 0 0 32px rgba(32, 215, 255, 0.26);
  --pv-glow-orange: 0 0 34px rgba(255, 122, 24, 0.22);
  --pv-hairline: linear-gradient(90deg, transparent, rgba(32, 215, 255, 0.44), rgba(255, 122, 24, 0.3), transparent);
  --pv-noise:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px);
  color-scheme: dark;
  font-family: var(--pv-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--pv-bg-2);
  text-rendering: geometricPrecision;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--pv-text);
  font-family: var(--pv-body);
  background:
    radial-gradient(circle at 22% 10%, rgba(0, 180, 255, 0.08), transparent 26rem),
    radial-gradient(circle at 86% 40%, rgba(255, 122, 24, 0.08), transparent 30rem),
    linear-gradient(180deg, #010407 0%, #02070b 38%, #03080b 100%);
}

::selection {
  background: rgba(32, 215, 255, 0.32);
  color: #ffffff;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.88) 52%, transparent 100%);
  animation: pv-grid-drift 28s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 16%, rgba(32, 215, 255, 0.18), transparent 23rem),
    radial-gradient(circle at 90% 82%, rgba(255, 122, 24, 0.1), transparent 18rem),
    linear-gradient(90deg, rgba(32, 215, 255, 0.07), transparent 22%, transparent 74%, rgba(255, 122, 24, 0.06));
  opacity: 0.85;
  mix-blend-mode: screen;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pv-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 78px;
  padding: 0 max(28px, calc((100vw - var(--pv-max)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 4, 8, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.pv-header::after {
  content: "";
  position: absolute;
  left: max(24px, calc((100vw - var(--pv-max)) / 2));
  right: max(24px, calc((100vw - var(--pv-max)) / 2));
  bottom: -1px;
  height: 1px;
  background: var(--pv-hairline);
  opacity: 0.5;
}

.pv-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.pv-brand img {
  width: 128px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 18px rgba(var(--pv-cyan-rgb), 0.16));
}

.pv-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(26px, 4vw, 54px);
}

.pv-header nav a {
  position: relative;
  color: #f7fbff;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.pv-header nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -10px;
  height: 1px;
  background: var(--pv-cyan);
  box-shadow: var(--pv-glow-cyan);
  transition: left 180ms ease, right 180ms ease, opacity 180ms ease;
  opacity: 0;
}

.pv-header nav a:hover {
  color: var(--pv-cyan);
}

.pv-header nav a:hover::after {
  left: 0;
  right: 0;
  opacity: 1;
}

.pv-header-cta,
.pv-button,
.pv-price-grid a,
.pv-form button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.pv-header-cta {
  min-width: 214px;
  border: 1px solid rgba(32, 215, 255, 0.82);
  background:
    linear-gradient(180deg, rgba(32, 215, 255, 0.12), rgba(32, 215, 255, 0.02)),
    rgba(0, 13, 19, 0.82);
  color: #ffffff;
  box-shadow: inset 0 0 24px rgba(32, 215, 255, 0.08), 0 0 28px rgba(32, 215, 255, 0.08);
}

.pv-header-cta::after,
.pv-button-primary::after,
.pv-price-grid a::after,
.pv-form button::after,
.pv-final-cta > a::after {
  content: "";
  width: 18px;
  height: 18px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M13.1 5.3a1 1 0 0 1 1.4 0l5.2 5.2a1 1 0 0 1 0 1.4l-5.2 5.2a1 1 0 1 1-1.4-1.4l3.5-3.5H5a1 1 0 1 1 0-2h11.6l-3.5-3.5a1 1 0 0 1 0-1.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pv-header-cta:hover,
.pv-button:hover,
.pv-price-grid a:hover,
.pv-form button:hover {
  transform: translateY(-2px);
}

.pv-header-cta:hover,
.pv-button-secondary:hover,
.pv-price-grid article:not(.is-featured) a:hover {
  border-color: rgba(var(--pv-cyan-rgb), 0.9);
  box-shadow: 0 0 32px rgba(var(--pv-cyan-rgb), 0.13), inset 0 0 22px rgba(var(--pv-cyan-rgb), 0.06);
}

.pv-button-primary:hover,
.pv-form button:hover,
.pv-final-cta > a:hover {
  box-shadow: 0 22px 64px rgba(var(--pv-cyan-rgb), 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.pv-button:active,
.pv-header-cta:active,
.pv-price-grid a:active,
.pv-form button:active {
  transform: translateY(0);
}

.pv-page {
  position: relative;
  overflow: hidden;
}

.pv-page::before,
.pv-page::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.pv-page::before {
  inset: 0;
  background-image: var(--pv-noise);
  background-size: 180px 180px, 240px 240px;
  opacity: 0.22;
}

.pv-page::after {
  left: 50%;
  top: 70px;
  width: min(1180px, 82vw);
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(var(--pv-cyan-rgb), 0.1), transparent 68%);
  filter: blur(22px);
}

.pv-hero,
.pv-problems,
.pv-machine,
.pv-offers,
.pv-capture,
.pv-final-cta,
.pv-footer {
  width: min(var(--pv-max), calc(100% - 56px));
  margin-inline: auto;
}

.pv-hero {
  position: relative;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(430px, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 40px;
  padding: 72px 0 58px;
}

.pv-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 1px;
  background: var(--pv-hairline);
  opacity: 0.4;
}

.pv-hero-copy {
  position: relative;
  z-index: 2;
}

.pv-kicker,
.pv-section-label {
  margin: 0;
  color: var(--pv-cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pv-hero h1 {
  max-width: 610px;
  margin: 26px 0 0;
  font-family: var(--pv-heading);
  font-size: clamp(3.05rem, 3.92vw, 3.86rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.94;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 84px rgba(0, 0, 0, 0.46);
}

.pv-hero h1 span,
.pv-capture h2 span,
.pv-final-cta h2 span {
  color: var(--pv-cyan);
  text-shadow: 0 0 34px rgba(32, 215, 255, 0.34);
}

.pv-hero-text {
  max-width: 505px;
  margin: 28px 0 0;
  color: #c5ced4;
  font-size: 1.02rem;
  line-height: 1.68;
}

.pv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.pv-button {
  min-width: 180px;
  padding: 0 25px;
}

.pv-button-primary {
  border: 1px solid rgba(32, 215, 255, 0.95);
  background: linear-gradient(180deg, #54eaff 0%, #20d7ff 55%, #10aacf 100%);
  color: #001015;
  box-shadow: 0 18px 50px rgba(32, 215, 255, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.pv-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.03);
  color: #ffffff;
}

.pv-button-secondary::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid currentColor;
  clip-path: polygon(34% 22%, 78% 50%, 34% 78%);
}

.pv-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 76px;
}

.pv-hero-proof article {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
}

.pv-hero-proof strong {
  color: #ffffff;
  font-size: 0.82rem;
  line-height: 1.2;
}

.pv-hero-proof small {
  grid-column: 2;
  color: #99a9b2;
  font-size: 0.7rem;
}

.pv-mini-icon {
  grid-row: span 2;
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  color: var(--pv-cyan);
  filter: drop-shadow(0 0 12px rgba(var(--pv-cyan-rgb), 0.35));
}

.pv-hero-visual {
  position: relative;
  min-height: 592px;
}

.pv-hero-visual::before {
  content: "";
  position: absolute;
  left: 18%;
  top: -18px;
  width: 410px;
  height: 410px;
  border-radius: 999px;
  background: rgba(32, 215, 255, 0.22);
  filter: blur(64px);
  opacity: 0.88;
}

.pv-hero-visual::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: 18px;
  width: 310px;
  height: 240px;
  background-image:
    radial-gradient(circle, rgba(255, 122, 24, 0.58) 1px, transparent 2px),
    linear-gradient(35deg, rgba(255, 122, 24, 0.17) 1px, transparent 1px),
    linear-gradient(145deg, rgba(32, 215, 255, 0.12) 1px, transparent 1px);
  background-size: 54px 54px, 34px 34px, 38px 38px;
  mask-image: radial-gradient(circle at 50% 60%, #000, transparent 72%);
  opacity: 0.52;
  pointer-events: none;
}

.pv-dashboard-window,
.pv-pipeline-card,
.pv-whatsapp-phone {
  position: absolute;
  border: 1px solid rgba(32, 215, 255, 0.44);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
    rgba(3, 10, 15, 0.9);
  box-shadow: var(--pv-shadow), var(--pv-glow-cyan), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.pv-dashboard-window {
  left: -8px;
  top: 6px;
  width: 560px;
  min-height: 334px;
  border-color: rgba(255, 122, 24, 0.46);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--pv-shadow), var(--pv-glow-orange), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: perspective(1200px) rotateX(0.8deg) rotateY(-1.6deg);
  transform-origin: center left;
}

.pv-dashboard-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 215, 255, 0.16), transparent 18%, transparent 78%, rgba(255, 122, 24, 0.16)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 30%);
  opacity: 0.64;
  pointer-events: none;
}

.pv-dashboard-window::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  height: 1px;
  background: var(--pv-hairline);
  opacity: 0.46;
}

.pv-window-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(90deg, rgba(255, 122, 24, 0.06), rgba(32, 215, 255, 0.035), transparent);
}

.pv-window-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.pv-window-top span:nth-child(1) {
  background: var(--pv-orange);
}

.pv-window-top span:nth-child(2) {
  background: #ffbb5c;
}

.pv-window-top span:nth-child(3) {
  background: #6de69b;
}

.pv-window-top i {
  width: 150px;
  height: 8px;
  margin-left: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.pv-window-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 24px 0;
  font-size: 0.64rem;
  color: #79909b;
}

.pv-window-nav b {
  color: #ffffff;
  margin-right: 14px;
}

.pv-window-nav b::before {
  content: "M";
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  color: #021014;
  border-radius: 4px;
  background: var(--pv-cyan);
}

.pv-window-nav em {
  margin-left: auto;
  border: 1px solid rgba(32, 215, 255, 0.42);
  border-radius: 999px;
  padding: 4px 14px;
  color: #ffffff;
  font-style: normal;
}

.pv-window-body {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 22px;
  padding: 34px 34px 18px;
}

.pv-window-copy strong {
  display: block;
  max-width: 270px;
  color: #ffffff;
  font-family: var(--pv-heading);
  font-size: 1.56rem;
  line-height: 1.05;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.08);
}

.pv-window-copy p {
  max-width: 270px;
  margin: 12px 0 16px;
  color: #96a7b0;
  font-size: 0.76rem;
  line-height: 1.55;
}

.pv-window-copy a {
  display: inline-flex;
  border-radius: 7px;
  padding: 9px 18px;
  background: #d8f0ff;
  color: #061017;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
}

.pv-window-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-content: center;
}

.pv-window-cards i {
  position: relative;
  overflow: hidden;
  min-height: 70px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(140deg, rgba(32, 215, 255, 0.15), transparent), rgba(255, 255, 255, 0.04);
}

.pv-window-cards i::before {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  right: 14px;
  top: 14px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(var(--pv-cyan-rgb), 0.65), rgba(var(--pv-cyan-rgb), 0.08)),
    rgba(255, 255, 255, 0.04);
  opacity: 0.72;
}

.pv-window-cards i::after {
  content: "";
  position: absolute;
  inset: auto 12px 12px 12px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.pv-window-cards i:nth-child(2),
.pv-window-cards i:nth-child(3) {
  background: linear-gradient(145deg, rgba(255, 122, 24, 0.26), rgba(255, 255, 255, 0.04));
}

.pv-window-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 34px 28px;
  color: #a7bac3;
  font-size: 0.68rem;
  font-weight: 700;
}

.pv-window-metrics span::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 7px;
  border-radius: 50%;
  border: 2px solid var(--pv-cyan);
  vertical-align: -2px;
}

.pv-pipeline-card {
  left: -62px;
  bottom: 42px;
  z-index: 3;
  width: 492px;
  min-height: 274px;
  border-color: rgba(32, 215, 255, 0.72);
  border-radius: 18px;
  padding: 18px 20px;
  overflow: hidden;
}

.pv-pipeline-card::before,
.pv-whatsapp-phone::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(32, 215, 255, 0.16), transparent 34%, rgba(255, 122, 24, 0.1));
  opacity: 0.64;
  pointer-events: none;
}

.pv-pipeline-card header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #ffffff;
  font-size: 0.9rem;
}

.pv-pipeline-card header span {
  color: #728693;
  font-size: 0.72rem;
}

.pv-pipeline-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.pv-pipeline-stats b,
.pv-pipeline-grid p {
  border-radius: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.045);
  color: #b9cbd4;
  font-size: 0.72rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pv-pipeline-stats span {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-size: 1rem;
}

.pv-pipeline-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.pv-pipeline-grid p {
  min-height: 54px;
  margin: 0;
  color: #77dff0;
}

.pv-pipeline-grid small {
  display: block;
  margin-top: 4px;
  color: #748894;
}

.pv-whatsapp-phone {
  right: 0;
  top: 108px;
  z-index: 4;
  width: 252px;
  min-height: 484px;
  border-color: rgba(32, 215, 255, 0.85);
  border-radius: 32px;
  padding: 18px;
  overflow: hidden;
}

.pv-phone-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pv-phone-head > span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pv-cyan), #1c66ff);
}

.pv-phone-head strong {
  display: block;
  font-size: 0.82rem;
}

.pv-phone-head small {
  color: #8ab2c0;
}

.pv-chat {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.pv-chat p {
  max-width: 172px;
  margin: 0;
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #e3ecef;
  font-size: 0.72rem;
  line-height: 1.45;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.pv-chat .sent {
  justify-self: end;
  background: #92db81;
  color: #112016;
}

.pv-phone-input {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 8px 8px 14px;
  color: #6f838d;
  font-size: 0.66rem;
}

.pv-phone-input b {
  width: 28px;
  height: 28px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--pv-cyan);
}

.pv-problems {
  padding: 58px 0 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pv-section-head {
  display: grid;
  justify-items: center;
  text-align: center;
}

.pv-section-head h2,
.pv-capture h2,
.pv-final-cta h2 {
  max-width: 1060px;
  margin: 14px 0 0;
  font-family: var(--pv-heading);
  font-size: clamp(2rem, 2.7vw, 2.72rem);
  font-weight: 800;
  line-height: 1.02;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.62);
}

.pv-problem-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.pv-problem-grid article,
.pv-price-grid article,
.pv-form,
.pv-final-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--pv-line);
  background:
    radial-gradient(circle at 20% 0%, rgba(32, 215, 255, 0.07), transparent 13rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(2, 8, 12, 0.84);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pv-problem-grid article::before,
.pv-price-grid article::before,
.pv-form::before,
.pv-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(32, 215, 255, 0.13), transparent 28%),
    radial-gradient(circle at 82% 0%, rgba(255, 122, 24, 0.12), transparent 11rem);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.pv-problem-grid article::after,
.pv-price-grid article::after,
.pv-form::after,
.pv-final-cta::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  opacity: 0.55;
  pointer-events: none;
}

.pv-problem-grid article:hover,
.pv-price-grid article:hover {
  border-color: rgba(32, 215, 255, 0.42);
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32), 0 0 28px rgba(32, 215, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pv-problem-grid article:hover::before,
.pv-price-grid article:hover::before,
.pv-form::before,
.pv-final-cta::before {
  opacity: 1;
}

.pv-problem-grid article {
  min-height: 228px;
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pv-card-icon {
  display: block;
  width: 40px;
  height: 40px;
  color: var(--pv-cyan);
  margin-bottom: 34px;
  filter: drop-shadow(0 0 16px rgba(32, 215, 255, 0.24));
}

.pv-card-icon svg {
  stroke-width: 1.55;
}

.pv-card-icon.is-orange {
  color: var(--pv-orange);
  filter: drop-shadow(0 0 18px rgba(255, 122, 24, 0.34));
}

.pv-problem-grid h3 {
  margin: 0;
  font-family: var(--pv-heading);
  font-size: 1.18rem;
  line-height: 1.07;
}

.pv-problem-grid p {
  margin: 16px 0 0;
  color: var(--pv-muted);
  font-size: 0.84rem;
  line-height: 1.62;
}

.pv-machine {
  position: relative;
  padding: 24px 0 66px;
}

.pv-machine .pv-section-head {
  position: relative;
}

.pv-machine .pv-section-head::after {
  content: "";
  width: 120px;
  height: 1px;
  margin-top: 20px;
  background: var(--pv-hairline);
  opacity: 0.7;
}

.pv-machine::before,
.pv-machine::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 280px;
  height: 220px;
  opacity: 0.4;
  background-image:
    linear-gradient(30deg, rgba(255, 122, 24, 0.22) 1px, transparent 1px),
    linear-gradient(150deg, rgba(255, 122, 24, 0.18) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at bottom, #000, transparent 72%);
}

.pv-machine::before {
  left: -160px;
}

.pv-machine::after {
  right: -160px;
}

.pv-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin-top: 54px;
}

.pv-timeline::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 6%;
  right: 6%;
  border-top: 1px dashed rgba(255, 122, 24, 0.86);
  filter: drop-shadow(0 0 10px rgba(255, 122, 24, 0.36));
}

.pv-timeline article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.pv-timeline article::after {
  content: "";
  position: absolute;
  top: 16px;
  right: -16px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--pv-cyan);
  border-radius: 50%;
  background: var(--pv-bg);
}

.pv-timeline article:last-child::after {
  display: none;
}

.pv-timeline span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--pv-orange);
  border-radius: 50%;
  background: #07090b;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 0 24px rgba(255, 122, 24, 0.45), inset 0 0 18px rgba(255, 122, 24, 0.08);
}

.pv-timeline i {
  position: relative;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-top: 28px;
  border: 2px solid var(--pv-orange);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 32px rgba(255, 122, 24, 0.22);
}

.pv-timeline i::before {
  content: "";
  position: absolute;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--pv-orange-rgb), 0.16), transparent 64%);
  z-index: -1;
}

.pv-timeline i svg {
  width: 34px;
  height: 34px;
}

.pv-timeline h3 {
  margin: 22px 0 0;
  font-family: var(--pv-heading);
  font-size: 1rem;
}

.pv-timeline p {
  max-width: 190px;
  margin: 10px 0 0;
  color: var(--pv-muted);
  font-size: 0.82rem;
  line-height: 1.56;
}

.pv-offers {
  padding: 36px 0 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pv-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  margin-top: 28px;
}

.pv-price-grid article {
  min-height: 368px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  padding: 30px 32px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pv-price-grid article.is-featured {
  min-height: 426px;
  border-color: rgba(255, 122, 24, 0.95);
  box-shadow: 0 0 52px rgba(255, 122, 24, 0.2), 0 28px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pv-price-grid article.is-featured::before {
  opacity: 1;
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 122, 24, 0.18), transparent 12rem),
    linear-gradient(180deg, rgba(255, 122, 24, 0.08), transparent 48%);
}

.pv-price-grid article.is-featured h3 {
  margin-top: 24px;
}

.pv-price-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.pv-price-head span,
.pv-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border: 1px solid var(--pv-cyan);
  border-radius: 6px;
  padding: 5px 11px;
  color: var(--pv-cyan);
  font-size: 0.72rem;
  font-weight: 800;
}

.pv-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  border-color: var(--pv-orange);
  color: var(--pv-orange);
}

.pv-price-grid h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--pv-heading);
  font-size: 1.34rem;
  line-height: 1.1;
}

.pv-price-grid p {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  color: var(--pv-muted);
  font-size: 0.88rem;
  line-height: 1.62;
}

.pv-price-grid strong {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  color: #ffffff;
  font-family: var(--pv-heading);
  font-size: 1.88rem;
  line-height: 1;
}

.pv-price-grid ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 24px;
  list-style: none;
}

.pv-price-grid li {
  position: relative;
  padding-left: 26px;
  color: #e2e9ed;
  font-size: 0.88rem;
}

.pv-price-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 16px;
  height: 16px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.pv-price-grid article:not(.is-featured) li::before {
  color: var(--pv-cyan);
}

.pv-price-grid article.is-featured li::before {
  color: var(--pv-orange);
}

.pv-price-grid a {
  position: relative;
  z-index: 1;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  color: var(--pv-cyan);
}

.pv-price-grid article.is-featured a {
  border-color: var(--pv-orange);
  background: linear-gradient(180deg, #ff9a36, #ff6b12);
  color: #100804;
  box-shadow: 0 18px 44px rgba(var(--pv-orange-rgb), 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.pv-offer-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 26px auto 0;
  width: min(860px, 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 24px;
}

.pv-offer-benefits span {
  position: relative;
  display: grid;
  justify-content: center;
  padding-left: 34px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  text-align: left;
}

.pv-offer-benefits span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(var(--pv-cyan-rgb), 0.78);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(var(--pv-cyan-rgb), 0.76) 0 3px, transparent 4px),
    rgba(var(--pv-cyan-rgb), 0.08);
  box-shadow: 0 0 18px rgba(var(--pv-cyan-rgb), 0.22);
}

.pv-offer-benefits span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.pv-offer-benefits small {
  margin-top: 4px;
  color: var(--pv-muted);
  font-size: 0.72rem;
  font-weight: 500;
}

.pv-capture {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  padding: 34px 0 30px;
}

.pv-capture::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: 46vw;
  height: 360px;
  transform: translateX(-2%);
  background: radial-gradient(ellipse at center, rgba(var(--pv-cyan-rgb), 0.09), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.pv-capture h2 {
  max-width: 470px;
  margin-top: 14px;
  font-size: clamp(2.24rem, 3.45vw, 3.28rem);
}

.pv-capture-copy ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.pv-capture-copy li {
  position: relative;
  padding-left: 28px;
  color: #dfe8ec;
  font-size: 0.95rem;
}

.pv-capture-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 16px;
  height: 16px;
  border: 1px solid var(--pv-cyan);
  border-radius: 4px;
}

.pv-avatar-row {
  display: grid;
  grid-template-columns: repeat(4, 26px) 1fr;
  align-items: center;
  gap: 0;
  margin-top: 48px;
}

.pv-avatar-row span {
  width: 34px;
  height: 34px;
  border: 2px solid #061017;
  border-radius: 50%;
  background: linear-gradient(135deg, #22d7ff, #ff7a18);
}

.pv-avatar-row span:nth-child(2) {
  background: linear-gradient(135deg, #f0b07c, #536dff);
}

.pv-avatar-row span:nth-child(3) {
  background: linear-gradient(135deg, #84e6a4, #1f7fff);
}

.pv-avatar-row span:nth-child(4) {
  background: linear-gradient(135deg, #d8f7ff, #ff8b2a);
}

.pv-avatar-row p {
  margin: 0 0 0 18px;
  color: var(--pv-muted);
  font-size: 0.86rem;
  line-height: 1.48;
}

.pv-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border-radius: 12px;
  padding: 28px;
}

.pv-form label {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
}

.pv-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.pv-field-full,
.pv-consent,
.pv-form button,
.pv-form-note {
  grid-column: 1 / -1;
}

.pv-form input,
.pv-form select {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  padding: 0 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(0, 0, 0, 0.24);
  color: #ffffff;
  font-size: 0.86rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.pv-form input:hover,
.pv-form select:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.pv-form input::placeholder {
  color: #8797a1;
}

.pv-form option {
  color: #101820;
}

.pv-form input:focus,
.pv-form select:focus {
  border-color: var(--pv-cyan);
  box-shadow: 0 0 0 3px rgba(32, 215, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(32, 215, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(0, 0, 0, 0.28);
}

.pv-consent {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  color: #c5d0d6;
  font-size: 0.76rem;
  line-height: 1.42;
}

.pv-form .pv-consent > span {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
}

.pv-consent input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--pv-cyan);
  box-shadow: 0 0 0 1px rgba(var(--pv-cyan-rgb), 0.24);
}

.pv-form button {
  position: relative;
  z-index: 1;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(180deg, #45e5ff, #18bee8);
  color: #001015;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(32, 215, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.pv-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.pv-form-note {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  margin: 2px 0 0;
  color: #81929c;
  font-size: 0.72rem;
  text-align: center;
}

.pv-form-note::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border: 1px solid currentColor;
  border-radius: 4px;
}

.pv-form-note.is-success {
  color: #8ff5b3;
}

.pv-form-note.is-error {
  color: #ffb39a;
}

.pv-honeypot {
  position: absolute;
  left: -10000px;
}

.pv-form .pv-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  z-index: -1;
}

.pv-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr) auto;
  gap: 30px;
  align-items: end;
  border-radius: 12px;
  margin-top: 22px;
  margin-bottom: 34px;
  padding: 34px;
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pv-final-cta::before {
  opacity: 1;
  background:
    radial-gradient(circle at 8% 20%, rgba(var(--pv-cyan-rgb), 0.16), transparent 18rem),
    radial-gradient(circle at 88% 14%, rgba(var(--pv-orange-rgb), 0.12), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 58%);
}

.pv-final-cta h2 {
  max-width: 420px;
  font-size: clamp(1.82rem, 2.82vw, 2.62rem);
}

.pv-final-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pv-final-metrics span {
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
}

.pv-final-metrics small {
  display: block;
  margin-top: 6px;
  color: var(--pv-muted);
  font-weight: 500;
}

.pv-final-cta > a {
  border-radius: 7px;
  padding: 0 34px;
  white-space: nowrap;
}

.pv-footer {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding-bottom: 28px;
  color: #87949c;
  font-size: 0.76rem;
}

.pv-footer .pv-brand img {
  width: 106px;
}

.pv-footer p {
  margin: 0;
  text-align: center;
}

.pv-footer nav {
  display: flex;
  gap: 26px;
}

.pv-footer a {
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid rgba(32, 215, 255, 0.55);
  outline-offset: 3px;
}

@keyframes pv-grid-drift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 80px 80px, 80px 80px;
  }
}

@media (max-width: 1120px) {
  .pv-header {
    grid-template-columns: auto 1fr;
  }

  .pv-header nav {
    display: none;
  }

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

  .pv-hero-visual {
    width: min(760px, 100%);
    margin-inline: auto;
  }

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

  .pv-problem-grid article:last-child {
    grid-column: 1 / -1;
  }

  .pv-price-grid,
  .pv-capture,
  .pv-final-cta {
    grid-template-columns: 1fr;
  }

  .pv-final-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .pv-header {
    position: relative;
    min-height: 86px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .pv-brand img {
    width: 124px;
  }

  .pv-header-cta {
    min-width: 0;
    padding: 0 14px;
    font-size: 0.76rem;
  }

  .pv-hero,
  .pv-problems,
  .pv-machine,
  .pv-offers,
  .pv-capture,
  .pv-final-cta,
  .pv-footer {
    width: min(100% - 28px, var(--pv-max));
  }

  .pv-hero {
    min-height: auto;
    padding-top: 46px;
    gap: 30px;
  }

  .pv-hero h1 {
    font-size: clamp(2.9rem, 12.2vw, 4.35rem);
    text-align: center;
  }

  .pv-kicker,
  .pv-hero-text {
    text-align: center;
  }

  .pv-actions {
    display: grid;
  }

  .pv-button,
  .pv-header-cta {
    width: 100%;
  }

  .pv-hero-proof {
    display: none;
  }

  .pv-hero-visual {
    min-height: 470px;
  }

  .pv-dashboard-window {
    position: relative;
    width: 100%;
    min-height: 310px;
  }

  .pv-window-nav {
    gap: 12px;
    overflow: hidden;
  }

  .pv-window-nav span:nth-of-type(n+3) {
    display: none;
  }

  .pv-window-body {
    grid-template-columns: 1fr;
    padding: 26px 24px 18px;
  }

  .pv-window-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .pv-window-metrics {
    display: none;
  }

  .pv-pipeline-card {
    left: 14px;
    right: 14px;
    bottom: 0;
    width: auto;
    min-height: 180px;
  }

  .pv-pipeline-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .pv-pipeline-grid {
    display: none;
  }

  .pv-whatsapp-phone {
    display: none;
  }

  .pv-section-head h2,
  .pv-capture h2,
  .pv-final-cta h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .pv-problem-grid,
  .pv-timeline,
  .pv-price-grid,
  .pv-offer-benefits,
  .pv-form,
  .pv-final-metrics,
  .pv-footer {
    grid-template-columns: 1fr;
  }

  .pv-problem-grid article:last-child {
    grid-column: auto;
  }

  .pv-timeline::before,
  .pv-timeline article::after {
    display: none;
  }

  .pv-timeline {
    gap: 30px;
  }

  .pv-price-grid article,
  .pv-price-grid article.is-featured {
    min-height: auto;
  }

  .pv-offer-benefits span + span {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 14px;
  }

  .pv-offer-benefits span {
    width: min(260px, 100%);
    margin-inline: auto;
    justify-content: start;
    text-align: left;
    padding-left: 42px;
  }

  .pv-offer-benefits span + span::before {
    top: 16px;
  }

  .pv-form {
    padding: 22px;
  }

  .pv-final-cta {
    align-items: start;
  }

  .pv-final-cta > a {
    width: 100%;
    white-space: normal;
  }

  .pv-footer {
    justify-items: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
