:root {
  --navy-950: #061a36;
  --navy-900: #082d61;
  --navy-850: #0a376f;
  --blue-700: #075fae;
  --blue-600: #087bc1;
  --blue-500: #1496db;
  --blue-100: #dcefff;
  --blue-50: #f1f8ff;
  --green-700: #0b8f2c;
  --green-600: #19a83b;
  --green-500: #24bd47;
  --green-100: #dcf7e3;
  --purple-700: #5e2a9f;
  --purple-600: #743bc1;
  --purple-100: #ede3fb;
  --orange-600: #f25a24;
  --orange-100: #ffeadf;
  --cyan-600: #0b9bb9;
  --cyan-100: #ddf8fc;
  --ink: #13253d;
  --muted: #5d6c80;
  --line: #dce5ef;
  --surface: #ffffff;
  --surface-soft: #f6f9fc;
  --surface-blue: #edf6ff;
  --success: #16a13a;
  --danger: #dc4351;
  --shadow-xs: 0 4px 12px rgba(8, 45, 97, 0.06);
  --shadow-sm: 0 10px 28px rgba(8, 45, 97, 0.09);
  --shadow-md: 0 20px 55px rgba(8, 45, 97, 0.14);
  --shadow-lg: 0 32px 90px rgba(8, 45, 97, 0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --container: 1180px;
  --header-height: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

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

body.nav-open {
  overflow: hidden;
}

::selection {
  color: #fff;
  background: var(--blue-600);
}

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

img {
  height: auto;
}

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

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

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

p,
h1,
h2,
h3,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-950);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 6vw, 5.15rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.1vw, 3.65rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

p {
  color: var(--muted);
}

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

summary {
  cursor: pointer;
}

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

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

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(20, 150, 219, 0.35);
  outline-offset: 3px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 12px 28px rgba(8, 123, 193, 0.25);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(8, 123, 193, 0.34);
}

.button-ghost {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(8, 45, 97, 0.15);
  box-shadow: var(--shadow-xs);
}

.button-ghost:hover,
.button-outline:hover {
  border-color: var(--blue-600);
  background: var(--blue-50);
}

.button-outline {
  color: var(--navy-900);
  background: #fff;
  border-color: rgba(8, 45, 97, 0.2);
}

.button-light {
  color: var(--navy-900);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.button-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #0c9f35, #29c655);
  box-shadow: 0 12px 30px rgba(25, 168, 59, 0.28);
}

.button-large {
  min-height: 58px;
  padding: 16px 26px;
  border-radius: 15px;
  font-size: 1rem;
}

.button-small {
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 11px;
  font-size: 0.9rem;
}

.button-full {
  width: 100%;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue-700);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 12px;
  background: rgba(237, 246, 255, 0.9);
  border: 1px solid rgba(20, 150, 219, 0.14);
  border-radius: 999px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(36, 189, 71, 0.14);
}

.light-kicker {
  color: #8bdfff;
}

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

.section-heading p {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

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

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

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 72px;
}

.split-heading h2,
.split-heading p {
  margin-bottom: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(8, 45, 97, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  width: 190px;
  height: 54px;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
}

.brand img {
  width: 190px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 29px;
}

.main-nav a {
  position: relative;
  color: #34445a;
  font-size: 0.91rem;
  font-weight: 750;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--blue-600);
  border-radius: 999px;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-cta {
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle .icon {
  width: 24px;
  height: 24px;
}

.menu-close {
  display: none;
}

/* Hero */
.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding-block: 78px 94px;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 12%, rgba(20, 150, 219, 0.1), transparent 27%),
    radial-gradient(circle at 92% 75%, rgba(25, 168, 59, 0.1), transparent 25%),
    linear-gradient(180deg, #fff, #f8fbff 68%, #fff);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(8, 123, 193, 0.16) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  opacity: 0.24;
  mask-image: linear-gradient(90deg, transparent, #000 76%, #000);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  top: -160px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(20, 150, 219, 0.17), transparent 68%);
}

.hero-glow-two {
  right: 25%;
  bottom: -180px;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(25, 168, 59, 0.12), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(510px, 1.06fr);
  align-items: center;
  gap: 58px;
}

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

.hero-copy h1 span {
  display: block;
  color: var(--blue-600);
}

.hero-lead {
  max-width: 605px;
  margin-bottom: 30px;
  color: #4c5e74;
  font-size: clamp(1.04rem, 1.4vw, 1.19rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 24px;
  color: #32445c;
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-proof div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-proof .icon {
  width: 17px;
  height: 17px;
  padding: 2px;
  color: #fff;
  background: var(--green-600);
  border-radius: 50%;
  stroke-width: 2.5;
}

.hero-price-line {
  display: flex;
  max-width: 570px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(8, 45, 97, 0.11);
}

.hero-price-line strong {
  color: var(--navy-900);
  font-size: 0.98rem;
}

.hero-price-line span {
  color: var(--muted);
  font-size: 0.84rem;
  text-align: right;
}

.product-stage {
  position: relative;
  min-height: 630px;
}

.stage-orbit {
  position: absolute;
  border: 1px solid rgba(20, 150, 219, 0.16);
  border-radius: 50%;
}

.stage-orbit-one {
  top: 5%;
  right: 2%;
  width: 540px;
  height: 540px;
}

.stage-orbit-two {
  top: 14%;
  right: 10%;
  width: 430px;
  height: 430px;
  border-color: rgba(25, 168, 59, 0.15);
}

.laptop {
  position: absolute;
  z-index: 2;
  top: 60px;
  right: -12px;
  width: 96%;
  transform: perspective(1300px) rotateY(-5deg) rotateX(1deg);
  transform-origin: center;
}

.laptop-screen {
  position: relative;
  padding: 9px;
  overflow: hidden;
  background: linear-gradient(145deg, #0e1825, #26384d);
  border: 1px solid #415062;
  border-radius: 22px 22px 12px 12px;
  box-shadow: var(--shadow-lg);
}

.browser-bar {
  display: flex;
  height: 27px;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  color: #91a0b1;
  background: #0b1522;
  border-radius: 13px 13px 5px 5px;
  font-size: 0.55rem;
}

.browser-bar i {
  width: 6px;
  height: 6px;
  background: #536172;
  border-radius: 50%;
}

.browser-bar span {
  margin-left: 8px;
}

.laptop-screen img {
  width: 100%;
  aspect-ratio: 1.852 / 1;
  margin-top: 7px;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
}

.laptop-base {
  position: relative;
  width: 111%;
  height: 30px;
  margin-left: -5.5%;
  background: linear-gradient(180deg, #dce3eb, #9aa7b5 58%, #e5ebf0);
  border-radius: 0 0 45% 45% / 0 0 100% 100%;
  box-shadow: 0 22px 30px rgba(4, 24, 53, 0.17);
}

.laptop-base::after {
  position: absolute;
  top: 0;
  left: 42%;
  width: 16%;
  height: 6px;
  background: rgba(87, 102, 118, 0.5);
  border-radius: 0 0 10px 10px;
  content: "";
}

.phone-card {
  position: absolute;
  z-index: 5;
  right: 53%;
  bottom: 4px;
  width: 154px;
  padding: 9px;
  overflow: hidden;
  background: #111b29;
  border: 1px solid #384659;
  border-radius: 30px;
  box-shadow: 0 24px 50px rgba(6, 26, 54, 0.28);
  transform: rotate(-2deg);
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 11px;
  left: 50%;
  width: 42px;
  height: 5px;
  background: #111b29;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-card img {
  width: 100%;
  aspect-ratio: 0.491 / 1;
  object-fit: cover;
  border-radius: 22px;
}

.ai-float {
  position: absolute;
  z-index: 6;
  right: 1%;
  bottom: 10px;
  width: 270px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(116, 59, 193, 0.22);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.ai-float-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--purple-700);
  font-weight: 900;
}

.ai-float-title .icon {
  width: 22px;
  height: 22px;
}

.ai-message {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.74rem;
  line-height: 1.45;
}

.ai-question {
  width: 80%;
  margin-left: auto;
  color: #fff;
  background: var(--purple-600);
}

.ai-answer {
  margin-top: 8px;
  color: #3f4d60;
  background: #f1edf9;
}

.support-float {
  position: absolute;
  z-index: 7;
  top: 5px;
  left: 5%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-900), var(--blue-600));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.support-float > .icon {
  width: 32px;
  height: 32px;
  padding: 6px;
  color: #fff;
  background: var(--green-600);
  border-radius: 50%;
}

.support-float div {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.support-float small {
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
}

.support-float strong {
  color: #9ff5b0;
  font-size: 0.8rem;
}

.price-float {
  position: absolute;
  z-index: 7;
  right: 4%;
  top: 55%;
  display: flex;
  min-width: 165px;
  flex-direction: column;
  padding: 13px 17px;
  color: #fff;
  background: linear-gradient(145deg, var(--green-700), var(--green-500));
  border: 4px solid #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  transform: rotate(2deg);
}

.price-float small {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-float strong {
  font-size: 2.1rem;
  line-height: 1;
}

.price-float span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Trust */
.trust-strip {
  position: relative;
  z-index: 10;
  padding-block: 25px;
  background: var(--navy-950);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid article {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 7px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid article:first-child {
  padding-left: 0;
}

.trust-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-icon {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  place-items: center;
  color: #8be3ff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 13px;
}

.trust-icon .icon {
  width: 24px;
  height: 24px;
}

.trust-grid article div:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.trust-grid strong {
  color: #fff;
  font-size: 0.86rem;
}

.trust-grid span {
  color: #aabbd0;
  font-size: 0.72rem;
  line-height: 1.4;
}

/* Transformation */
.transformation {
  background: #fff;
}

.transformation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
  align-items: stretch;
  gap: 22px;
}

.state-card {
  position: relative;
  padding: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}

.before-card {
  background: linear-gradient(145deg, #fff, #fff8f8);
}

.after-card {
  background: linear-gradient(145deg, #fff, #f2fbf5);
  border-color: rgba(25, 168, 59, 0.24);
}

.state-label {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 6px 11px;
  color: var(--muted);
  background: #eef2f6;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.after-card .state-label {
  color: var(--green-700);
  background: var(--green-100);
}

.state-card h3 {
  max-width: 440px;
  margin-bottom: 25px;
  font-size: 1.65rem;
}

.state-list {
  display: grid;
  gap: 14px;
}

.state-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #4d5b6e;
}

.negative-list li span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--danger);
  border-radius: 50%;
  font-weight: 900;
  line-height: 1;
}

.positive-list .icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  padding: 3px;
  color: #fff;
  background: var(--green-600);
  border-radius: 50%;
  stroke-width: 2.5;
}

.transformation-arrow {
  display: grid;
  align-self: center;
  width: 64px;
  height: 64px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.transformation-arrow .icon {
  width: 27px;
  height: 27px;
}

/* Benefits */
.benefits-section {
  background: var(--surface-soft);
}

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

.benefit-card {
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(8, 45, 97, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefit-card:hover {
  border-color: rgba(8, 123, 193, 0.22);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.feature-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 23px;
  place-items: center;
  border-radius: 15px;
}

.feature-icon .icon {
  width: 27px;
  height: 27px;
}

.feature-icon.blue { color: var(--blue-700); background: var(--blue-100); }
.feature-icon.green { color: var(--green-700); background: var(--green-100); }
.feature-icon.purple { color: var(--purple-700); background: var(--purple-100); }
.feature-icon.cyan { color: var(--cyan-600); background: var(--cyan-100); }
.feature-icon.orange { color: var(--orange-600); background: var(--orange-100); }
.feature-icon.navy { color: #fff; background: var(--navy-900); }

.benefit-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

/* Feature showcase */
.feature-showcase {
  overflow: hidden;
  background: #fff;
}

.spotlight {
  display: grid;
  min-height: 540px;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  align-items: center;
  gap: 68px;
  margin-bottom: 36px;
  padding: 58px;
  overflow: hidden;
  background: var(--surface-soft);
  border: 1px solid rgba(8, 45, 97, 0.08);
  border-radius: var(--radius-xl);
}

.spotlight:last-child {
  margin-bottom: 0;
}

.spotlight-ai {
  grid-template-columns: minmax(500px, 1.15fr) minmax(0, 0.85fr);
  background: linear-gradient(135deg, #f7f3fd, #f6faff 58%, #fff);
}

.spotlight-dashboard {
  background: linear-gradient(135deg, #f1fbf4, #f5fbff 68%, #fff);
}

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

.spotlight-number {
  position: absolute;
  top: -53px;
  right: 2px;
  color: rgba(8, 45, 97, 0.07);
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
}

.spotlight-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.purple-tag { color: var(--purple-700); background: var(--purple-100); }
.blue-tag { color: var(--blue-700); background: var(--blue-100); }
.green-tag { color: var(--green-700); background: var(--green-100); }

.spotlight-copy h3 {
  max-width: 500px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.spotlight-copy > p {
  max-width: 500px;
  margin-bottom: 25px;
  font-size: 1.04rem;
}

.mini-checks {
  display: grid;
  gap: 10px;
  margin-bottom: 25px;
}

.mini-checks li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #405166;
  font-weight: 700;
}

.mini-checks .icon {
  width: 19px;
  height: 19px;
  padding: 3px;
  color: #fff;
  background: var(--green-600);
  border-radius: 50%;
  stroke-width: 2.5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-weight: 900;
}

.text-link .icon {
  transition: transform 0.2s ease;
}

.text-link:hover .icon {
  transform: translateX(4px);
}

.spotlight-visual {
  position: relative;
  min-height: 420px;
}

.yape-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen-card {
  position: absolute;
  top: 48px;
  right: 0;
  width: 86%;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(8, 45, 97, 0.1);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transform: rotate(1.4deg);
}

.screen-card img {
  width: 100%;
  border-radius: 10px;
}

.phone-mini {
  position: absolute;
  z-index: 3;
  bottom: -10px;
  left: 0;
  width: 156px;
  padding: 8px;
  overflow: hidden;
  background: #121b27;
  border-radius: 27px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-4deg);
}

.phone-mini img {
  width: 100%;
  border-radius: 20px;
}

.ai-visual {
  display: grid;
  place-items: center;
}

.ai-window {
  position: relative;
  width: 88%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(116, 59, 193, 0.18);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  transform: rotate(-1deg);
}

.ai-window-bar {
  display: flex;
  height: 40px;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  color: var(--purple-700);
  background: #f4effb;
  font-size: 0.72rem;
}

.ai-window-bar span {
  width: 7px;
  height: 7px;
  background: #d9c8ef;
  border-radius: 50%;
}

.ai-window-bar strong {
  margin-left: 8px;
}

.ai-window img {
  width: 100%;
}

.ai-prompt {
  position: absolute;
  z-index: 4;
  padding: 10px 14px;
  color: #fff;
  background: var(--purple-600);
  border: 3px solid #fff;
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
  font-size: 0.77rem;
  font-weight: 800;
}

.prompt-one {
  top: 28px;
  right: -8px;
}

.prompt-two {
  bottom: 12px;
  left: 6px;
  background: var(--blue-700);
}

.prompt-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.prompt-list span,
.metric-chips span {
  padding: 8px 11px;
  color: #415166;
  background: #fff;
  border: 1px solid rgba(8, 45, 97, 0.12);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 750;
}

.dashboard-visual {
  display: flex;
  align-items: center;
}

.dashboard-frame {
  width: 100%;
  padding: 12px;
  background: #0d1d31;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-4deg);
}

.dashboard-frame img {
  width: 100%;
  border-radius: 11px;
}

.dashboard-badge {
  position: absolute;
  display: flex;
  min-width: 168px;
  flex-direction: column;
  padding: 13px 15px;
  color: var(--navy-900);
  background: #fff;
  border: 1px solid rgba(8, 45, 97, 0.12);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.dashboard-badge strong {
  font-size: 0.84rem;
}

.dashboard-badge span {
  color: var(--muted);
  font-size: 0.69rem;
}

.badge-one {
  top: 14px;
  left: -14px;
}

.badge-two {
  right: -12px;
  bottom: 16px;
}

.metric-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

/* Commerce solutions */
.commerce-section {
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbff 0%, #fff 52%, #f6f9fb 100%);
}

.commerce-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 56px;
  margin-bottom: 34px;
  padding: 48px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.commerce-panel:last-child {
  margin-bottom: 0;
}

.commerce-store {
  background: #fff;
  border: 1px solid rgba(116, 59, 193, 0.13);
  box-shadow: var(--shadow-sm);
}

.commerce-self-service {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 1fr);
  color: #d9e6f3;
  background: linear-gradient(135deg, #082d61, #101c2f 58%, #0f243d);
  box-shadow: var(--shadow-md);
}

.commerce-copy h2 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
}

.commerce-copy p {
  max-width: 610px;
  margin-bottom: 24px;
  font-size: 1.04rem;
}

.commerce-copy p strong {
  color: var(--purple-700);
  font-weight: 900;
}

.commerce-self-service .commerce-copy h2 {
  color: #fff;
}

.commerce-self-service .commerce-copy p {
  color: #b9c8da;
}

.commerce-media {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
}

.commerce-media img {
  width: min(100%, 520px);
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

.commerce-store .commerce-media img {
  border-radius: 20px;
  filter: drop-shadow(0 28px 45px rgba(116, 59, 193, 0.16));
}

.self-service-media img {
  max-height: 560px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
}

.commerce-light-checks li {
  color: #d5e2ef;
}

.commerce-light-checks .icon {
  background: var(--blue-500);
}

/* Operations */
.operation-section {
  background: var(--navy-950);
  overflow: hidden;
}

.operation-section::before {
  position: absolute;
  top: -250px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(20, 150, 219, 0.25), transparent 68%);
  border-radius: 50%;
  content: "";
}

.operation-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(540px, 1.16fr);
  align-items: center;
  gap: 70px;
}

.operation-copy h2,
.operation-copy h3 {
  color: #fff;
}

.operation-copy > p {
  max-width: 540px;
  color: #aabbd0;
  font-size: 1.04rem;
}

.operation-list {
  display: grid;
  gap: 16px;
  margin: 30px 0;
}

.operation-list > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #c2d0df;
  font-size: 0.92rem;
}

.operation-list .icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  padding: 3px;
  color: #fff;
  background: var(--green-600);
  border-radius: 50%;
  stroke-width: 2.4;
}

.operation-list strong {
  display: block;
  color: #fff;
}

.operation-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.operation-gallery figure {
  position: relative;
  min-height: 180px;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 5px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.operation-gallery .gallery-large {
  grid-column: 1 / -1;
  min-height: 290px;
}

.operation-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.operation-gallery figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 10px;
  color: #fff;
  background: rgba(6, 26, 54, 0.82);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(5px);
}

/* Industries */
.industries {
  background: var(--surface-soft);
}

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

.industry-card {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(8, 45, 97, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.industry-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.industry-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 21px;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 16px;
}

.industry-card:nth-child(even) .industry-icon {
  color: var(--green-700);
  background: var(--green-100);
}

.industry-icon .icon {
  width: 29px;
  height: 29px;
}

.industry-card p {
  margin-bottom: 0;
  font-size: 0.91rem;
}

.industries-note {
  margin: 28px auto 0;
  color: #506076;
  font-size: 0.92rem;
  text-align: center;
}

/* Why */
.why-section {
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 75px;
}

.why-media {
  position: relative;
  min-height: 520px;
}

.why-image-wrap {
  position: absolute;
  inset: 20px 0 0 0;
  overflow: hidden;
  background: var(--navy-950);
  border: 12px solid var(--navy-950);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateY(5deg);
}

.why-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 15px;
}

.why-stat {
  position: absolute;
  right: -18px;
  bottom: -10px;
  display: flex;
  width: 245px;
  flex-direction: column;
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border: 6px solid #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.why-stat strong {
  font-size: 2.2rem;
  line-height: 1;
}

.why-stat span {
  margin-top: 8px;
  color: #d9efff;
  font-size: 0.82rem;
}

.why-lead {
  font-size: 1.05rem;
}

.why-list {
  display: grid;
  gap: 19px;
  margin-top: 28px;
}

.why-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
}

.why-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 14px;
}

.why-list article:nth-child(even) .why-icon {
  color: var(--green-700);
  background: var(--green-100);
}

.why-icon .icon {
  width: 25px;
  height: 25px;
}

.why-list h3 {
  margin: 2px 0 5px;
  font-size: 1.04rem;
  letter-spacing: -0.015em;
}

.why-list p {
  margin-bottom: 0;
  font-size: 0.89rem;
}

/* Pricing */
.pricing-section {
  background: linear-gradient(180deg, var(--surface-soft), #fff);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(8, 45, 97, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.price-card.featured {
  border: 2px solid var(--blue-600);
  box-shadow: 0 24px 55px rgba(8, 123, 193, 0.18);
  transform: translateY(-12px);
}

.featured-label {
  position: absolute;
  top: -15px;
  left: 50%;
  padding: 7px 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.price-card-top {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.plan-name {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-700);
  font-weight: 900;
}

.price-card h3 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2px;
  font-size: 3.7rem;
  letter-spacing: -0.065em;
}

.price-card h3 small {
  margin: 9px 6px 0 0;
  font-size: 1.3rem;
  letter-spacing: 0;
}

.price-card-top p {
  margin-bottom: 0;
  font-size: 0.84rem;
}

.plan-limit {
  margin: 23px 0;
  padding: 14px 16px;
  color: #3e4e62;
  background: var(--surface-soft);
  border-radius: 12px;
  font-size: 0.89rem;
}

.plan-limit strong {
  color: var(--navy-900);
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #45566b;
  font-size: 0.89rem;
}

.price-card li .icon {
  width: 18px;
  height: 18px;
  padding: 3px;
  color: #fff;
  background: var(--green-600);
  border-radius: 50%;
  stroke-width: 2.5;
}

.price-card .button {
  margin-top: auto;
}

.pricing-note {
  display: flex;
  max-width: 850px;
  align-items: flex-start;
  gap: 12px;
  margin: 34px auto 0;
  padding: 16px 20px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 14px;
}

.pricing-note .icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  padding: 3px;
  color: #fff;
  background: var(--blue-600);
  border-radius: 50%;
  stroke-width: 2.5;
}

.pricing-note p {
  margin-bottom: 0;
  font-size: 0.87rem;
}

/* Access */
.access-section {
  padding-block: 0 112px;
  background: #fff;
}

.access-panel {
  position: relative;
  padding: 60px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 15%, rgba(20, 150, 219, 0.36), transparent 25%),
    linear-gradient(135deg, var(--navy-950), var(--navy-850));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.access-panel::after {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(25, 168, 59, 0.2), transparent 65%);
  border-radius: 50%;
  content: "";
}

.access-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 45px;
  margin-bottom: 34px;
}

.access-copy h2 {
  color: #fff;
  margin-bottom: 0;
}

.access-copy p {
  margin-bottom: 3px;
  color: #b8c8d9;
}

.access-options {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.access-card {
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
}

.cloud-card {
  background: linear-gradient(145deg, #fff, #effcf3);
  border-color: rgba(36, 189, 71, 0.24);
}

.access-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 14px;
}

.cloud-card .access-icon {
  color: var(--green-700);
  background: var(--green-100);
}

.access-icon .icon {
  width: 27px;
  height: 27px;
}

.access-label {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cloud-card .access-label {
  color: var(--green-700);
}

.access-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.access-card p {
  min-height: 76px;
  margin-bottom: 15px;
  font-size: 0.88rem;
}

.access-value {
  color: var(--navy-900);
  font-size: 1.1rem;
}

.cloud-card .access-value {
  color: var(--green-700);
}

.device-row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 25px;
  margin: 30px 0 26px;
}

.device-row span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #c9d8e8;
  font-size: 0.86rem;
  font-weight: 700;
}

.device-row .icon {
  color: #8bdfff;
}

.access-panel > .button {
  position: relative;
  z-index: 2;
}

/* Process */
.process-section {
  background: var(--surface-soft);
}

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

.process-card {
  position: relative;
  padding: 27px 22px;
  background: #fff;
  border: 1px solid rgba(8, 45, 97, 0.09);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.process-card::after {
  position: absolute;
  z-index: 1;
  top: 30px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--blue-100);
  content: "";
}

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

.process-card > span {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border-radius: 12px;
  font-weight: 900;
}

.process-card:nth-child(even) > span {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
}

.process-card h3 {
  min-height: 52px;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.process-card p {
  margin-bottom: 0;
  font-size: 0.82rem;
}

.documents-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  padding: 22px 25px;
  background: #fff;
  border: 1px solid rgba(8, 45, 97, 0.09);
  border-radius: 18px;
  box-shadow: var(--shadow-xs);
}

.documents-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 14px;
}

.documents-icon .icon {
  width: 25px;
  height: 25px;
}

.documents-banner > div:nth-child(2) {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
}

.documents-banner strong {
  color: var(--navy-900);
}

.documents-banner span {
  color: var(--muted);
  font-size: 0.85rem;
}

.format-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.format-tags span {
  padding: 6px 10px;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 900;
}

/* Testimonials */
.testimonials-section {
  background: #fff;
}

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

.testimonial-card {
  position: relative;
  padding: 30px;
  background: linear-gradient(145deg, #fff, #f8fbff);
  border: 1px solid rgba(8, 45, 97, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.quote-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 20px;
  fill: none;
  stroke: var(--blue-500);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonial-card blockquote {
  min-height: 126px;
  margin-bottom: 25px;
  color: #3e5065;
  font-size: 0.96rem;
  line-height: 1.7;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-placeholder {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

.testimonial-person > div:last-child {
  display: flex;
  flex-direction: column;
}

.testimonial-person strong {
  color: var(--navy-900);
  font-size: 0.88rem;
}

.testimonial-person span {
  color: var(--muted);
  font-size: 0.75rem;
}

.placeholder-card {
  border-style: dashed;
}

/* FAQ */
.faq-section {
  background: var(--surface-soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(520px, 1.15fr);
  align-items: start;
  gap: 78px;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.faq-intro p {
  margin-bottom: 28px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(8, 45, 97, 0.1);
  border-radius: 14px;
  box-shadow: var(--shadow-xs);
}

.faq-list summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 21px;
  color: var(--navy-900);
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 21px 21px;
  font-size: 0.91rem;
}

/* Contact */
.contact-section {
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(20, 150, 219, 0.25), transparent 25%),
    linear-gradient(135deg, var(--navy-950), var(--navy-850));
  overflow: hidden;
}

.contact-section::after {
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(25, 168, 59, 0.22), transparent 66%);
  border-radius: 50%;
  content: "";
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1fr);
  align-items: center;
  gap: 75px;
}

.contact-copy h2 {
  color: #fff;
}

.contact-copy > p {
  color: #b9c9da;
  font-size: 1.04rem;
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-points > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.contact-points > div > .icon {
  width: 44px;
  height: 44px;
  padding: 10px;
  color: #8bdfff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 13px;
}

.contact-points span {
  display: flex;
  flex-direction: column;
  color: #c6d4e2;
  font-size: 0.84rem;
}

.contact-points strong {
  color: #fff;
  font-size: 0.95rem;
}

.lead-form {
  padding: 34px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.form-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.form-heading strong {
  color: var(--navy-900);
  font-size: 1.25rem;
}

.form-heading span {
  color: var(--muted);
  font-size: 0.86rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.lead-form label > span {
  color: #33445a;
  font-size: 0.79rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  color: var(--ink);
  background: var(--surface-soft);
  border: 1px solid #d9e2ec;
  border-radius: 11px;
  outline: 0;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input,
.lead-form select {
  height: 49px;
  padding: 0 13px;
}

.lead-form textarea {
  min-height: 105px;
  padding: 12px 13px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  background: #fff;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(20, 150, 219, 0.1);
}

.lead-form .field-error {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(220, 67, 81, 0.08);
}

.consent-check {
  display: flex !important;
  align-items: flex-start;
  grid-template-columns: 20px 1fr;
  gap: 10px !important;
}

.consent-check input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--blue-600);
}

.consent-check span {
  font-weight: 500 !important;
  line-height: 1.5;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--danger);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.form-status.success {
  color: var(--green-700);
}

.lead-form small {
  display: block;
  color: #7a8798;
  font-size: 0.72rem;
  text-align: center;
}

/* Payment */
.payment-section {
  padding-block: 72px;
  background: #fff;
}

.payment-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr) auto;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background: var(--surface-soft);
  border: 1px solid rgba(8, 45, 97, 0.09);
  border-radius: 24px;
}

.payment-intro {
  display: flex;
  align-items: center;
  gap: 17px;
}

.payment-icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 16px;
}

.payment-icon .icon {
  width: 29px;
  height: 29px;
}

.payment-intro .section-kicker {
  margin-bottom: 5px;
}

.payment-intro h2 {
  margin-bottom: 6px;
  font-size: 1.42rem;
  letter-spacing: -0.02em;
}

.payment-intro p {
  margin-bottom: 0;
  font-size: 0.82rem;
}

.payment-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.payment-details article {
  display: flex;
  flex-direction: column;
  padding: 13px 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.payment-details span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-details strong {
  color: var(--navy-900);
  font-size: 0.95rem;
}

.payment-details small {
  color: var(--muted);
  font-size: 0.68rem;
}

.payment-panel .button {
  white-space: nowrap;
}

/* Final CTA */
.final-cta {
  padding-block: 84px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 55px;
}

.final-cta-inner > div:first-child > span {
  display: block;
  margin-bottom: 9px;
  color: #bfeaff;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 780px;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
}

.final-cta p {
  margin-bottom: 0;
  color: #d9f1ff;
}

.final-actions {
  display: grid;
  gap: 10px;
}

/* Footer */
.site-footer {
  padding-top: 64px;
  color: #b5c3d3;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 0.65fr));
  gap: 45px;
  padding-bottom: 48px;
}

.footer-brand img {
  width: 205px;
  height: auto;
  margin-top: -8px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.18));
}

.footer-brand p {
  max-width: 280px;
  margin: 8px 0 0;
  color: #a9b8ca;
  font-size: 0.88rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-grid strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 0.88rem;
}

.footer-grid a,
.footer-grid span {
  color: #a9b8ca;
  font-size: 0.82rem;
}

.footer-grid small {
  color: #7f8ea0;
  font-size: 0.69rem;
  line-height: 1.4;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.footer-bottom a {
  color: #d3e0ec;
}

/* Floating actions */
.floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  color: #fff;
  background: linear-gradient(135deg, #0d9f35, #2bc85a);
  border: 3px solid #fff;
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(13, 159, 53, 0.32);
  font-size: 0.86rem;
  font-weight: 900;
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.floating-whatsapp .icon {
  width: 25px;
  height: 25px;
}

.mobile-cta {
  display: none;
}

/* Responsive */
@media (max-width: 1120px) {
  :root {
    --container: 1040px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
    gap: 35px;
  }

  .product-stage {
    min-height: 590px;
  }

  .ai-float {
    right: -2%;
    width: 238px;
  }

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

  .trust-grid article:nth-child(2) {
    border-right: 0;
  }

  .trust-grid article:nth-child(3) {
    padding-left: 0;
  }

  .spotlight {
    gap: 42px;
    padding: 46px;
  }

  .commerce-panel {
    gap: 38px;
    padding: 40px;
  }

  .operation-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
    gap: 45px;
  }

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

  .process-card::after {
    display: none;
  }

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

  .payment-panel .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 930px) {
  :root {
    --header-height: 74px;
  }

  .section {
    padding-block: 72px;
  }

  .brand {
    width: 164px;
    height: 46px;
  }

  .brand img {
    width: 164px;
    height: auto;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .menu-toggle[aria-expanded="true"] .menu-open {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] .menu-close {
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 17px 5px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 70px 86px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    max-width: 760px;
    text-align: center;
    margin-inline: auto;
  }

  .hero-copy h1 span {
    display: inline;
  }

  .hero-lead,
  .hero-price-line {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .product-stage {
    width: min(720px, 100%);
    min-height: 570px;
    margin-inline: auto;
  }

  .laptop {
    right: 0;
  }

  .phone-card {
    right: auto;
    left: 8%;
  }

  .ai-float {
    right: 3%;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .spotlight,
  .spotlight-ai {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .spotlight-ai .spotlight-visual {
    order: 2;
  }

  .spotlight-visual {
    min-height: 390px;
  }

  .commerce-panel,
  .commerce-self-service {
    grid-template-columns: 1fr;
  }

  .commerce-self-service .commerce-media {
    order: 2;
  }

  .commerce-self-service .commerce-copy {
    order: 1;
  }

  .commerce-media {
    min-height: 320px;
  }

  .commerce-media img {
    width: min(100%, 460px);
  }

  .self-service-media img {
    max-height: 520px;
  }

  .operation-grid,
  .why-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .operation-copy {
    max-width: 700px;
  }

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

  .why-copy {
    max-width: 720px;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 18px 4px 25px;
  }

  .price-card {
    scroll-snap-align: center;
  }

  .access-copy {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .faq-intro {
    position: static;
  }

  .contact-copy {
    max-width: 660px;
  }

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

  .payment-details {
    max-width: 640px;
  }

  .payment-panel .button {
    grid-column: auto;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .final-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(2, 1fr);
  }

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

@media (max-width: 700px) {
  :root {
    --radius-lg: 24px;
    --radius-xl: 28px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 10px);
  }

  body {
    padding-bottom: 66px;
  }

  .container {
    width: min(100% - 30px, var(--container));
  }

  .section {
    padding-block: 58px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.7rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

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

  .section-heading p {
    font-size: 0.97rem;
  }

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    gap: 12px;
  }

  .hero {
    padding-block: 54px 66px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-copy h1 span {
    display: block;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-proof {
    justify-content: flex-start;
  }

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

  .hero-proof {
    display: grid;
  }

  .hero-price-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .hero-price-line span {
    text-align: left;
  }

  .product-stage {
    min-height: 480px;
  }

  .laptop {
    top: 48px;
    width: 100%;
  }

  .phone-card {
    bottom: 2px;
    left: 1%;
    width: 118px;
  }

  .ai-float {
    right: 0;
    bottom: 4px;
    width: 215px;
    padding: 13px;
  }

  .ai-message {
    font-size: 0.65rem;
  }

  .support-float {
    top: 0;
    left: 0;
    padding: 9px 11px;
  }

  .support-float > .icon {
    width: 27px;
    height: 27px;
  }

  .price-float {
    top: 53%;
    right: 1%;
    min-width: 128px;
    padding: 10px 13px;
  }

  .price-float strong {
    font-size: 1.55rem;
  }

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

  .trust-grid article,
  .trust-grid article:first-child,
  .trust-grid article:nth-child(3) {
    padding: 7px 0;
    border-right: 0;
  }

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

  .transformation-arrow {
    transform: rotate(90deg);
  }

  .state-card {
    padding: 28px 24px;
  }

  .benefits-grid,
  .industries-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .spotlight {
    min-height: 0;
    padding: 32px 22px;
  }

  .commerce-panel {
    gap: 24px;
    padding: 30px 20px;
  }

  .commerce-copy h2 {
    font-size: 2.25rem;
  }

  .commerce-media {
    min-height: 260px;
  }

  .commerce-media img {
    border-radius: 18px;
  }

  .self-service-media img {
    max-height: 430px;
  }

  .spotlight-number {
    top: -25px;
    font-size: 5rem;
  }

  .spotlight-copy h3 {
    font-size: 2.25rem;
  }

  .spotlight-visual {
    min-height: 320px;
  }

  .screen-card {
    top: 40px;
    width: 92%;
  }

  .phone-mini {
    width: 120px;
  }

  .ai-window {
    width: 100%;
  }

  .prompt-one {
    top: 12px;
    right: -2px;
  }

  .prompt-two {
    left: -2px;
  }

  .dashboard-badge {
    min-width: 145px;
    padding: 10px 12px;
  }

  .operation-grid {
    gap: 38px;
  }

  .operation-gallery {
    grid-template-columns: 1fr;
  }

  .operation-gallery .gallery-large {
    grid-column: auto;
  }

  .operation-gallery figure,
  .operation-gallery .gallery-large {
    min-height: 220px;
  }

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

  .why-stat {
    right: -5px;
    bottom: -12px;
    width: 210px;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(84vw, 1fr));
    margin-inline: -15px;
    padding-inline: 15px;
  }

  .price-card.featured {
    transform: none;
  }

  .access-section {
    padding-bottom: 72px;
  }

  .access-panel {
    padding: 34px 22px;
  }

  .access-options {
    grid-template-columns: 1fr;
  }

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

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

  .process-card h3 {
    min-height: 0;
  }

  .documents-banner {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .format-tags {
    width: 100%;
    justify-content: flex-start;
  }

  .faq-grid {
    gap: 35px;
  }

  .contact-grid {
    gap: 38px;
  }

  .lead-form {
    padding: 25px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .payment-section {
    padding-block: 55px;
  }

  .payment-panel {
    padding: 22px;
  }

  .payment-intro {
    align-items: flex-start;
  }

  .payment-details {
    grid-template-columns: 1fr;
  }

  .payment-panel .button {
    width: 100%;
  }

  .final-cta {
    padding-block: 66px;
  }

  .final-actions {
    display: grid;
  }

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

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

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

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

  .floating-whatsapp {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    z-index: 950;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 62px;
    padding: 7px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 25px rgba(8, 45, 97, 0.1);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(110%);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.show-mobile-cta .mobile-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    padding: 8px 5px;
    color: var(--navy-900);
    border-right: 1px solid var(--line);
    font-size: 0.74rem;
    font-weight: 900;
    text-align: center;
  }

  .mobile-cta a:last-child {
    color: #fff;
    background: var(--blue-600);
    border-right: 0;
    border-radius: 9px;
  }
}

@media (max-width: 430px) {
  .product-stage {
    min-height: 425px;
  }

  .ai-float {
    width: 190px;
  }

  .ai-float-title {
    font-size: 0.82rem;
  }

  .phone-card {
    width: 105px;
  }

  .support-float {
    max-width: 180px;
  }

  .price-float {
    top: 48%;
  }

  .spotlight-visual {
    min-height: 285px;
  }

  .commerce-copy h2 {
    font-size: 2rem;
  }

  .commerce-media {
    min-height: 230px;
  }

  .self-service-media img {
    max-height: 360px;
  }

  .phone-mini {
    width: 105px;
  }

  .dashboard-badge {
    display: none;
  }
}

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

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

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

@media print {
  .site-header,
  .floating-whatsapp,
  .mobile-cta,
  .menu-toggle,
  .hero-actions,
  .final-actions,
  .lead-form button {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding-block: 35px;
  }

  .hero,
  .operation-section,
  .contact-section,
  .final-cta,
  .site-footer,
  .trust-strip {
    color: #000;
    background: #fff !important;
  }

  .operation-copy h2,
  .contact-copy h2,
  .final-cta h2,
  .trust-grid strong {
    color: #000;
  }

  .operation-copy p,
  .contact-copy p,
  .final-cta p,
  .trust-grid span {
    color: #444;
  }

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