@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Manrope:wght@700;800;900&display=swap");

:root {
  --bg: #020b1b;
  --bg-2: #071426;
  --surface: #0b1b2e;
  --paper: #ffffff;
  --ink: #f7fafc;
  --ink-dark: #071426;
  --muted: #a9b8c7;
  --muted-dark: #516879;
  --line: rgba(24, 216, 132, 0.22);
  --line-light: #d8e8e3;
  --green: #18d884;
  --green-dark: #087b61;
  --orange: #ff7a00;
  --orange-dark: #d96800;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --glow: 0 0 34px rgba(24, 216, 132, 0.24);
  --radius: 22px;
  --radius-sm: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(24, 216, 132, 0.14), transparent 32rem),
    radial-gradient(circle at 86% 8%, rgba(255, 122, 0, 0.09), transparent 22rem),
    linear-gradient(180deg, var(--bg) 0%, #04101f 36%, #061525 100%);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(24, 216, 132, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 216, 132, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 122, 0, 0.52);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  color: inherit;
  font-family: "Manrope", "Inter", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6.6vw, 92px);
  line-height: 0.98;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(21px, 2.1vw, 29px);
  line-height: 1.14;
}

p,
li {
  color: var(--muted);
  line-height: 1.68;
  font-size: 17px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(24, 216, 132, 0.16);
  background: rgba(2, 11, 27, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
  color: transparent;
  background: url("assets/web/logo-pn-256.png") center / cover no-repeat;
  box-shadow: 0 0 0 1px rgba(24, 216, 132, 0.28), 0 0 28px rgba(24, 216, 132, 0.22);
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.45vw, 22px);
  color: var(--muted);
  font-size: 14px;
}

nav a,
.footer a,
.legal-back,
.nav-cta {
  text-decoration: none;
}

nav a {
  position: relative;
  white-space: nowrap;
  transition: color 160ms ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 99px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

nav a:hover,
.footer a:hover,
.legal-back:hover {
  color: var(--green);
}

nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff9a33);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.22);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid rgba(24, 216, 132, 0.28);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 99px;
  background: var(--green);
}

.menu-toggle strong {
  margin-left: 3px;
  font-size: 13px;
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(24, 216, 132, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 34px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.language-switcher a.active {
  color: #04101f;
  background: var(--green);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.88fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 78px);
  padding: clamp(58px, 7vw, 104px) clamp(18px, 5vw, 72px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 4% 0 auto auto;
  width: 54vw;
  height: 54vw;
  max-width: 760px;
  max-height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 216, 132, 0.18), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 850px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 0;
  width: 100%;
}

.hero-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: cover;
  border-radius: 30px;
  border: 1px solid rgba(24, 216, 132, 0.25);
  box-shadow: var(--shadow), var(--glow);
}

.eyebrow {
  margin: 0 0 14px;
  color: #7df2c5;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead {
  max-width: 720px;
  color: #d7e5ef;
  font-size: clamp(19px, 2.1vw, 25px);
  line-height: 1.48;
}

.hero-actions,
.pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff9b38);
  box-shadow: 0 18px 40px rgba(255, 122, 0, 0.25);
}

.primary:hover {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
}

.ghost {
  color: var(--ink);
  border-color: rgba(24, 216, 132, 0.32);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ghost:hover {
  border-color: rgba(24, 216, 132, 0.62);
  background: rgba(24, 216, 132, 0.1);
}

.dark {
  color: #dffbf0;
  border-color: rgba(24, 216, 132, 0.28);
  background: rgba(24, 216, 132, 0.1);
  box-shadow: none;
}

.dark:hover {
  border-color: rgba(24, 216, 132, 0.56);
  background: rgba(24, 216, 132, 0.16);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 38px 0 0;
}

.hero-stats div {
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(24, 216, 132, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(11, 27, 46, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-stats dt {
  color: var(--green);
  font-weight: 900;
  font-size: 19px;
}

.hero-stats dd {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.42;
}

.section {
  padding: clamp(62px, 8vw, 116px) clamp(18px, 5vw, 72px);
}

.section > *,
.hero > * {
  max-width: var(--max);
}

.centered {
  max-width: 850px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.problem-section,
.product-section,
.split,
.final-cta,
.compliance-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  background:
    radial-gradient(circle at 12% 12%, rgba(24, 216, 132, 0.08), transparent 28rem),
    var(--bg-2);
}

.band,
.steps-section,
.info-section,
.comparison-section,
.faq-section {
  background: linear-gradient(180deg, #eef9f5, #f7fbfa);
  color: var(--ink-dark);
}

.band p,
.steps-section p,
.info-section p,
.comparison-section p,
.faq-section p {
  color: var(--muted-dark);
}

.products-section,
.use-cases,
.video-section {
  background: #ffffff;
  color: var(--ink-dark);
}

.products-section p,
.products-section li,
.use-cases p,
.video-section p {
  color: var(--muted-dark);
}

.product-shot {
  margin: 0;
}

.product-image {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(24, 216, 132, 0.25);
  box-shadow: var(--shadow);
}

.product-shot figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.decision-strip,
.signal-grid,
.proof-grid {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.decision-strip span {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  color: #04101f;
  background: linear-gradient(135deg, rgba(24, 216, 132, 0.95), rgba(124, 242, 197, 0.9));
  font-weight: 900;
}

.signal-grid article,
.feature,
.price-card,
.notice-panel,
.course-card,
.legal-card,
.video-resource-card,
.video-link-panel,
.contact-direct,
.contact-form {
  border: 1px solid rgba(24, 216, 132, 0.18);
  border-radius: var(--radius);
  background: rgba(11, 27, 46, 0.78);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
}

.signal-grid article {
  padding: 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.feature,
.course-card,
.legal-card {
  padding: 26px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  margin-bottom: 22px;
  padding-inline: 12px;
  border-radius: 14px;
  color: #051323;
  background: linear-gradient(135deg, var(--green), #9ef6d4);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(24, 216, 132, 0.18);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

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

.flow-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 20, 38, 0.08);
}

.flow-grid strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #04101f;
  background: var(--green);
  font-weight: 900;
}

.architecture-card {
  display: grid;
  gap: 13px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(24, 216, 132, 0.2);
  background:
    linear-gradient(135deg, rgba(24, 216, 132, 0.09), transparent),
    rgba(11, 27, 46, 0.78);
}

.architecture-card span {
  position: relative;
  display: block;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(24, 216, 132, 0.18);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.architecture-card span:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 26px;
  bottom: -14px;
  width: 2px;
  height: 14px;
  background: var(--green);
}

.compliance-section {
  align-items: start;
}

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

.compliance-grid article {
  padding: 24px;
  border: 1px solid rgba(24, 216, 132, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
}

.data-list {
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.data-list li {
  padding: 17px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-light);
  background: #fff;
  color: var(--ink-dark);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(7, 20, 38, 0.06);
}

.pricing-section {
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 122, 0, 0.12), transparent 24rem),
    radial-gradient(circle at 12% 12%, rgba(24, 216, 132, 0.13), transparent 28rem),
    var(--bg);
  color: var(--ink);
}

.pricing-section p,
.pricing-section li {
  color: var(--muted);
}

.pricing-row {
  justify-content: center;
  align-items: stretch;
  max-width: 1320px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: min(100%, 390px);
  padding: 0 26px 26px;
  color: var(--ink);
}

.price-card::before {
  content: "";
  display: block;
  height: 168px;
  margin: 0 -26px 24px;
  background: linear-gradient(180deg, rgba(2, 11, 27, 0.04), rgba(2, 11, 27, 0.74)), var(--card-img, none) center / cover no-repeat;
}

.pricing-row .price-card:nth-child(1) {
  --card-img: url("assets/web/producto-licencia.webp");
}

.pricing-row .price-card:nth-child(2) {
  --card-img: url("assets/web/producto-internacional.webp");
}

.pricing-row .price-card:nth-child(3) {
  --card-img: url("assets/web/producto-instalacion.webp");
}

.pricing-row .price-card:nth-child(4) {
  --card-img: url("assets/web/producto-curso.webp");
}

.price-card p,
.price-card li {
  color: var(--muted);
}

.highlighted-card {
  border-color: rgba(255, 122, 0, 0.5);
  box-shadow: 0 24px 70px rgba(255, 122, 0, 0.13);
}

.secondary-card,
.automation-card {
  background: rgba(11, 27, 46, 0.72);
}

.price-label {
  color: #ffb56f !important;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.price-card h3 {
  font-size: clamp(28px, 3vw, 42px);
}

.price-after {
  margin-top: -8px;
  color: #ffc18a !important;
  font-weight: 900;
}

.mini-list {
  display: grid;
  gap: 9px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.mini-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(24, 216, 132, 0.48);
}

.payment-box {
  display: grid;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(24, 216, 132, 0.18);
}

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

.payment-box p {
  margin: 0;
  font-size: 14px;
}

.paypal-box {
  display: grid;
  gap: 10px;
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(24, 216, 132, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
}

.paypal-box span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.prepay-notice,
.postpay-notice,
.postpay-mini {
  max-width: 980px;
  margin: 22px auto 0;
  padding: 24px;
  border-radius: var(--radius);
}

.prepay-notice {
  border: 1px solid rgba(24, 216, 132, 0.22);
  background: rgba(24, 216, 132, 0.08);
}

.postpay-notice,
.postpay-mini {
  border: 1px solid rgba(255, 122, 0, 0.28);
  background: rgba(255, 122, 0, 0.09);
}

.prepay-notice strong,
.postpay-notice strong,
.postpay-mini strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 19px;
}

.prepay-notice p,
.postpay-notice p,
.postpay-mini p {
  margin: 0 0 16px;
}

.postpay-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.postpay-actions span {
  color: #c9f8e5;
  font-weight: 800;
}

.legal-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-link-row a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid rgba(24, 216, 132, 0.28);
  border-radius: 999px;
  color: #dffbf0;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  text-decoration: none;
}

.legal-link-row a:hover {
  background: rgba(24, 216, 132, 0.12);
}

.video-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.video-resource-card,
.video-link-panel {
  background: #fff;
  color: var(--ink-dark);
  border-color: var(--line-light);
  box-shadow: 0 22px 54px rgba(7, 20, 38, 0.08);
}

.video-resource-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-height: 300px;
  padding: 30px;
}

.video-resource-card p {
  flex: 1;
  margin: 0;
  color: var(--muted-dark);
}

.youtube-button {
  white-space: normal;
}

.youtube-icon {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  width: 25px;
  height: 18px;
  border-radius: 6px;
  background: #ff0033;
  box-shadow: 0 8px 18px rgba(255, 0, 51, 0.25);
}

.youtube-icon::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 5px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid #fff;
}

.table-scroll {
  overflow-x: auto;
  max-width: 1320px;
  margin: 0 auto;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 20, 38, 0.08);
}

.comparison-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 17px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line-light);
  color: var(--ink-dark);
  vertical-align: top;
}

.comparison-table th {
  color: var(--green-dark);
  background: #f1fbf7;
  font-size: 14px;
}

.faq-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 18px 20px;
  box-shadow: 0 12px 28px rgba(7, 20, 38, 0.05);
}

summary {
  cursor: pointer;
  color: var(--ink-dark);
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
}

.contact-direct,
.contact-form {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 28px;
}

.contact-direct .button {
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.contact-note {
  margin: 0;
  font-size: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(24, 216, 132, 0.2);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

.footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #020817;
  border-top: 1px solid rgba(24, 216, 132, 0.18);
}

.footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.footer p {
  max-width: 780px;
  margin: 0 0 8px;
  font-size: 14px;
}

.footer nav {
  align-content: start;
  justify-content: end;
  flex-wrap: wrap;
  max-width: 560px;
}

.legal-page {
  max-width: 930px;
  margin: 0 auto;
  padding: 78px 20px;
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(38px, 7vw, 72px);
}

.legal-page h2 {
  margin-top: 40px;
  font-size: 30px;
}

.legal-page-links {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(24, 216, 132, 0.18);
}

.legal-grid {
  margin: 28px 0 8px;
}

.legal-card a,
.postpay-mini a {
  color: #7df2c5;
  font-weight: 900;
  text-decoration: none;
}

.legal-card a:hover,
.postpay-mini a:hover {
  text-decoration: underline;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--green);
  font-weight: 800;
}

.page-hero {
  position: relative;
  padding: clamp(72px, 9vw, 120px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(2, 11, 27, 0.92), rgba(2, 11, 27, 0.72)),
    url("assets/web/hero-prospectador-desktop.webp") center right / cover no-repeat;
  color: var(--ink);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 8% -26% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 216, 132, 0.18), transparent 70%);
}

.page-hero > * {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.page-hero p {
  max-width: 820px;
  color: var(--muted);
  font-size: 19px;
}

.page-hero .hero-note {
  margin-top: 16px;
  font-size: 15px;
  color: #d7e5ef;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 16px;
}

.course-card strong {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 14px;
  color: #04101f;
  background: var(--green);
}

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

@media (max-width: 1180px) {
  .topbar {
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 4px 0 6px;
  }

  .feature-grid,
  .flow-grid.four,
  .course-grid,
  .video-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-visual img {
    max-height: none;
  }
}

@media (max-width: 900px) {
  .product-section,
  .problem-section,
  .split,
  .final-cta,
  .compliance-section {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .data-list,
  .compliance-grid {
    grid-template-columns: 1fr;
  }

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

  .footer nav {
    justify-content: start;
  }
}

@media (max-width: 640px) {
  .topbar {
    position: sticky;
    gap: 12px;
    min-height: auto;
  }

  .brand span:last-child {
    max-width: 170px;
    white-space: normal;
    line-height: 1.15;
  }

  .menu-toggle {
    order: 2;
    display: inline-flex;
    flex-wrap: wrap;
    width: 86px;
  }

  .menu-toggle span {
    flex: 0 0 16px;
  }

  .nav-cta {
    order: 2;
    margin-left: auto;
  }

  .language-switcher {
    order: 2;
  }

  .topbar nav {
    display: none;
    order: 4;
    width: 100%;
    padding: 12px;
    overflow: visible;
    border: 1px solid rgba(24, 216, 132, 0.18);
    border-radius: 18px;
    background: rgba(11, 27, 46, 0.92);
  }

  .topbar.menu-open nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .topbar nav a {
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
  }

  .topbar nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-actions .button,
  .payment-box .button,
  .postpay-actions .button,
  .contact-direct .button {
    width: 100%;
  }

  .feature-grid,
  .flow-grid,
  .flow-grid.four,
  .course-grid,
  .video-resource-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    width: 100%;
  }

  .section {
    padding-inline: 20px;
  }
}
