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

:root {
  --bg: #f5f8ff;
  --surface: #ffffff;
  --surface-strong: #071c43;
  --surface-soft: #eef4ff;
  --ink: #10213f;
  --muted: #61708f;
  --line: rgba(16, 33, 63, 0.12);
  --line-strong: rgba(255, 255, 255, 0.18);
  --primary: #0a2f78;
  --primary-strong: #071c43;
  --accent: #f57c00;
  --accent-strong: #dc6800;
  --success: #0ea672;
  --shadow: 0 28px 70px rgba(7, 28, 67, 0.14);
  --shadow-soft: 0 16px 38px rgba(9, 39, 96, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shell: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(43, 125, 255, 0.14), transparent 28%),
    radial-gradient(circle at right center, rgba(245, 124, 0, 0.1), transparent 24%),
    linear-gradient(180deg, #f9fbff 0%, #f4f8ff 100%);
  font-family: "Poppins", system-ui, sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary-strong);
  transform: translateY(-180%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(5, 20, 50, 0.78);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-image,
.brand img {
  width: 138px;
  height: auto;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-eyebrow {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-copy strong {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
}

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

.nav-item {
  position: relative;
}

.main-nav a,
.nav-link,
.nav-link-secondary,
.nav-link-primary {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover,
.nav-link:hover,
.nav-link.active,
.nav-link-secondary:hover {
  color: #fff;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
}

.dropdown-toggle .chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transition: transform 0.18s ease;
}

.nav-item.is-open .dropdown-toggle .chevron {
  transform: translateY(2px) rotate(-135deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 280px;
  padding: 10px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(6, 22, 56, 0.98);
  box-shadow: 0 24px 60px rgba(4, 15, 38, 0.42);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.dropdown-menu--right {
  right: 0;
  left: auto;
}

.nav-item.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  padding: 12px 14px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
}

.dropdown-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.dropdown-menu strong,
.dropdown-menu small {
  display: block;
}

.dropdown-menu strong {
  font-size: 14px;
}

.dropdown-menu small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-app-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-app-link img {
  width: 22px;
  height: 14px;
  object-fit: contain;
}

.nav-link-primary {
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #ff9b3d);
  box-shadow: 0 18px 34px rgba(245, 124, 0, 0.28);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: #fff;
}

/* Header aligned with the original jcnr navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(8, 38, 92, 0.08);
  box-shadow: 0 10px 30px rgba(8, 38, 92, 0.07);
}

.nav-container {
  width: min(calc(100% - 40px), 1200px);
  height: 80px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  color: #08265c;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.6px;
  gap: 10px;
}

.brand-image {
  width: auto;
  max-width: 150px;
  height: 56px;
  object-fit: contain;
}

.main-nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav .nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.main-nav .nav-link {
  position: relative;
  padding: 29px 0 27px;
  border: 0;
  color: #45536a;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}

.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 19px;
  width: 0;
  height: 2px;
  border-radius: 5px;
  background: #f26700;
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: #08265c;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
  width: 20px;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.dropdown-toggle .chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.nav-item.is-open .dropdown-toggle {
  color: #08265c;
}

.nav-item.is-open .dropdown-toggle .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  z-index: 110;
  top: calc(100% - 6px);
  left: -20px;
  width: 325px;
  padding: 10px;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(8, 38, 92, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 55px rgba(8, 38, 92, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.dropdown-menu--right {
  right: -18px;
  left: auto;
}

.nav-item.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  padding: 10px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  border-radius: 9px;
  color: #0c1d37;
  transition: background 0.18s ease, color 0.18s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: #08265c;
  background: #f2f7fd;
  outline: none;
}

.dropdown-menu a:hover .dropdown-icon,
.dropdown-menu a:focus-visible .dropdown-icon {
  color: #fff;
  background: var(--icon-color, #f26700);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--icon-color, #f26700) 24%, transparent);
  transform: translateY(-2px) rotate(-3deg);
}

.dropdown-menu strong {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 750;
}

.dropdown-menu small {
  display: block;
  overflow: hidden;
  color: #7b8799;
  font-size: 11px;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1.35;
}

.dropdown-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--icon-color, #08265c) 12%, transparent);
  border-radius: 11px 5px 11px 5px;
  color: #08265c;
  background: var(--icon-bg, #edf3fb);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 6px 14px rgba(8, 38, 92, 0.08);
  font-size: 14px;
  font-weight: 800;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.dropdown-icon::before,
.dropdown-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}

.icon-phone::before {
  width: 12px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.icon-phone::after {
  width: 4px;
  height: 4px;
  top: calc(50% + 7px);
  border-radius: 50%;
  background: currentColor;
}

.icon-receipt::before {
  width: 16px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.icon-receipt::after {
  width: 10px;
  height: 2px;
  margin-top: -5px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor, 0 10px 0 currentColor;
}

.icon-pin::before,
.icon-question::before,
.icon-help::before,
.icon-alert::before {
  position: static;
  transform: none;
  font-size: 17px;
  font-weight: 850;
  line-height: 1;
}

.icon-pin::before {
  content: "#";
}

.icon-question::before {
  content: "?";
}

.icon-help::before {
  content: "i";
  font-family: Georgia, serif;
  font-style: italic;
}

.icon-alert::before {
  content: "!";
}

.icon-tag::before {
  width: 17px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 3px 5px 5px 3px;
  transform: translate(-50%, -50%) rotate(-35deg);
}

.icon-tag::after {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  transform: translate(-50%, -50%) translate(2px, -1px);
}

.icon-catalog::before {
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: currentColor;
  box-shadow: 9px 0 currentColor, 0 9px currentColor, 9px 9px currentColor;
}

.icon-functions::before {
  content: "⚙";
  position: static;
  transform: none;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.icon-functions::after {
  display: none;
}

.icon-growth::before {
  content: "\f164";
  position: static;
  transform: none;
  font-family: "Font Awesome 6 Free";
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.icon-growth::after {
  width: 11px;
  height: 8px;
  margin-left: 4px;
  margin-top: -1px;
  display: none;
}

.icon-play::before {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.icon-lock::before {
  top: auto;
  bottom: 9px;
  width: 17px;
  height: 13px;
  border-radius: 3px;
  background: currentColor;
  transform: translateX(-50%);
}

.icon-lock::after {
  width: 11px;
  height: 9px;
  top: 11px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
}

.icon-status::before {
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(8, 38, 92, 0.1);
}

.dropdown-icon.icon-pin-fa::before,
.dropdown-icon.icon-tag-fa::before,
.dropdown-icon.icon-catalog-fa::before {
  position: static;
  transform: none;
  font-family: "Font Awesome 6 Free";
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.dropdown-icon.icon-pin-fa::before {
  content: "\f145";
}

.dropdown-icon.icon-tag-fa::before {
  content: "\f02c";
}

.dropdown-icon.icon-catalog-fa::before {
  content: "\f00a";
}

.dropdown-icon.icon-pin-fa::after,
.dropdown-icon.icon-tag-fa::after,
.dropdown-icon.icon-catalog-fa::after {
  content: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.app-android-link {
  min-height: 42px;
  padding: 7px 4px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #08265c;
  font-size: 12px;
  font-weight: 750;
}

.android-app-icon {
  width: 22px;
  height: 14px;
}

.login-link {
  color: #08265c;
  font-size: 14px;
  font-weight: 700;
}

.login-link:hover {
  color: #f26700;
}

.button.button--small {
  min-height: 43px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
}

.button.button--primary {
  color: #fff;
  background: #f26700;
  box-shadow: 0 9px 20px rgba(242, 103, 0, 0.22);
}

.button.button--primary:hover {
  background: #d95700;
  box-shadow: 0 12px 27px rgba(242, 103, 0, 0.3);
}

.mobile-nav-actions {
  display: none;
}

#productos-menu {
  --icon-color: #e96000;
  --icon-bg: #fff1e7;
}

#plataforma-menu {
  --icon-color: #2d72eb;
  --icon-bg: #edf4ff;
}

#ayuda-menu {
  --icon-color: #0f7a5c;
  --icon-bg: #ebfaf3;
}

@media (hover: hover) and (min-width: 1051px) {
  .main-nav .nav-item--dropdown:hover .dropdown-toggle {
    color: #08265c;
  }

  .main-nav .nav-item--dropdown:hover .dropdown-toggle .chevron {
    transform: rotate(180deg);
  }

  .main-nav .nav-item--dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.menu-toggle {
  border-color: rgba(8, 38, 92, 0.1);
  background: #fff;
  box-shadow: 0 10px 24px rgba(8, 38, 92, 0.08);
}

.menu-toggle span {
  background: #08265c;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 68px 0 48px;
  background:
    radial-gradient(circle at 88% 54%, rgba(42, 118, 237, 0.42), transparent 23%),
    radial-gradient(circle at 80% 96%, rgba(245, 124, 0, 0.23), transparent 18%),
    linear-gradient(145deg, #05183f 0%, #082c6c 58%, #0c4798 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before {
  right: -150px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(111, 177, 255, 0.2);
  box-shadow: 0 0 0 58px rgba(94, 164, 255, 0.04), 0 0 0 124px rgba(94, 164, 255, 0.025);
  animation: hero-benefit-glow 5s ease-in-out infinite;
}

.hero::after {
  top: -180px;
  left: -150px;
  width: 410px;
  height: 410px;
  background: rgba(45, 122, 241, 0.18);
  filter: blur(42px);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  pointer-events: none;
  z-index: -1;
  animation: hero-benefit-glow 5s ease-in-out infinite;
}

.hero-orb-one {
  top: 72px;
  left: -80px;
  width: 240px;
  height: 240px;
  background: rgba(89, 164, 255, 0.18);
}

.hero-orb-two {
  right: -90px;
  bottom: 10px;
  width: 300px;
  height: 300px;
  background: rgba(245, 124, 0, 0.18);
  animation-delay: -2.1s;
}

.hero-spark {
  position: absolute;
  z-index: 2;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff8518;
  box-shadow: 0 0 0 4px rgba(245, 124, 0, 0.1), 0 0 16px rgba(245, 124, 0, 0.9);
  animation: hero-benefit-twinkle 2.4s ease-in-out infinite;
  pointer-events: none;
}

.hero-spark--one { top: 27%; right: 3.3%; }
.hero-spark--two { right: 8%; bottom: 20%; width: 5px; height: 5px; background: #79b7ff; box-shadow: 0 0 0 4px rgba(100, 175, 255, 0.1), 0 0 16px rgba(100, 175, 255, 0.8); animation-delay: -1s; }
.hero-spark--three { right: 29%; bottom: 9%; width: 4px; height: 4px; animation-delay: -1.8s; }


.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  padding: 48px 0 64px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(245, 124, 0, 0.14);
}

.hero-copy h1 {
  margin: 18px 0 18px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(40px, 6vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-copy h1 span {
  position: relative;
  display: inline-block;
  color: #ffc58f;
  background: linear-gradient(180deg, #ffe4bf 0%, #ffbf6d 42%, #f59f35 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 20px rgba(255, 196, 122, 0.22),
    0 10px 24px rgba(245, 124, 0, 0.12);
}

.hero-text {
  max-width: 640px;
  margin: 0;
  color: rgba(232, 240, 255, 0.8);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions,
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 28px;
  display: grid;
  gap: 14px;
  max-width: 478px;
}

.hero-actions-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.button,
.register-button,
.verify-button,
.secondary-action,
.buttonsy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border: 0;
  border-radius: 16px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.hero-actions .button,
.hero-actions-row .button {
  min-width: 0;
  width: 100%;
}

.button-google-wide {
  min-height: 58px;
  border-radius: 18px;
  font-size: 17px;
  text-transform: none;
}

.button-google-wide span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.button:hover,
.register-button:hover,
.verify-button:hover,
.secondary-action:hover,
.buttonsy:hover,
.nav-link-primary:hover {
  transform: translateY(-2px);
}

.button-primary,
.register-button,
.verify-button,
.buttonsy,
.contact-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #ff9832);
  box-shadow: 0 20px 38px rgba(245, 124, 0, 0.24);
}

.button-ghost,
.secondary-action {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button-google {
  color: #193059;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 32px rgba(7, 28, 67, 0.16);
}

.button-google i {
  font-size: 16px;
  color: #ea4335;
}

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

.hero-card-main {
  position: absolute;
  top: -12px;
  right: -8px;
  left: 42px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  box-shadow: 0 30px 80px rgba(4, 15, 38, 0.32);
  backdrop-filter: blur(14px);
  z-index: 1;
  overflow: visible;
}

.hero-card-main::before {
  content: "";
  position: absolute;
  inset: 28px 24px 20px 24px;
  z-index: -1;
  border-radius: 34px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(82, 162, 255, 0.12) 10%, rgba(118, 198, 255, 0.52) 24%, rgba(53, 133, 255, 0.9) 50%, rgba(118, 198, 255, 0.52) 76%, rgba(82, 162, 255, 0.12) 90%, transparent 100%),
    radial-gradient(circle at 50% 50%, rgba(112, 196, 255, 0.58) 0%, rgba(48, 126, 255, 0.34) 42%, rgba(17, 83, 214, 0.12) 64%, transparent 82%);
  filter: blur(34px);
  opacity: 0.95;
  transform: scale(0.98) translateX(0);
  animation: mockup-blue-glow 3.8s ease-in-out infinite;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.card-top strong {
  color: #fff;
  font-size: 18px;
}

.status-pill,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.status-pill {
  color: #0f613f;
  background: #d8ffef;
}

.floating-card small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.hero-shotboard {
  position: relative;
  min-height: 0;
}

.hero-shotboard__desktop,
.hero-shotboard__mobile {
  margin: 0;
}

.hero-shotboard__desktop {
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(4, 15, 38, 0.22);
}

.hero-shotboard__desktop img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: contain;
}

.hero-shotboard__mobile {
  position: absolute;
  right: 8px;
  bottom: 22px;
  width: 150px;
  padding: 8px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 40px rgba(4, 15, 38, 0.22);
}

.hero-shotboard__mobile img {
  width: 100%;
  display: block;
  border-radius: 22px;
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  min-height: 660px;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, #1b356b, #173061);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.dashboard-preview__sidebar {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-right: 3px solid #ff7010;
}

.dashboard-preview__brand {
  padding: 18px 16px 14px;
  color: #fff;
  background: linear-gradient(180deg, #263859, #2f4675);
}

.dashboard-preview__brand strong {
  display: block;
  font-size: 23px;
  font-weight: 500;
}

.dashboard-preview__brand small {
  display: block;
  margin-top: 2px;
  font-size: 9px;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.dashboard-preview__user {
  padding: 11px 16px;
  color: #fff;
  background: #ff8736;
}

.dashboard-preview__user span,
.dashboard-preview__user small {
  display: block;
}

.dashboard-preview__user span {
  font-size: 11px;
  font-weight: 700;
}

.dashboard-preview__user small {
  margin-top: 4px;
  font-size: 10px;
}

.dashboard-preview__menu {
  display: grid;
  gap: 8px;
  padding: 16px 10px;
  flex: 1;
}

.dashboard-preview__menu span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #dde4ef;
  border-radius: 18px;
  color: #1b356b;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
}

.dashboard-preview__menu span i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid #ff7010;
  border-radius: 999px;
  color: #ff7010;
}

.dashboard-preview__menu .is-active {
  color: #1565c0;
  background: #e3f2fd;
  border-color: #bbdefb;
  box-shadow: inset 2px 0 0 #1565c0;
}

.dashboard-preview__menu .is-active i {
  color: #1565c0;
  border-color: #1565c0;
}

.dashboard-preview__main {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 22px;
  min-width: 0;
}

.dashboard-preview__topbar {
  display: grid;
  gap: 14px;
}

.dashboard-preview__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
}

.dashboard-preview__topline span {
  font-size: 15px;
  font-weight: 700;
}

.dashboard-preview__topline strong {
  color: #81c784;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.dashboard-preview__search label {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.dashboard-preview__search div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.dashboard-preview__search i {
  color: #ff7010;
}

.dashboard-preview__search span {
  color: #6f7c92;
  font-size: 13px;
}

.dashboard-preview__content {
  flex: 1;
  margin-top: 20px;
  padding: 20px;
  border-radius: 16px;
  background: #e8f0fe;
  overflow: hidden;
}

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

.dashboard-preview__grid span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 8px;
  border-radius: 8px;
  color: #1b356b;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 214px;
  padding: 13px 14px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  animation: hero-float 4.6s ease-in-out infinite;
  z-index: 3;
}

.floating-card span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #2a73ef);
  font-weight: 900;
  flex: 0 0 auto;
}

.floating-card span i {
  font-size: 14px;
}

.floating-card strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.15;
}

.floating-card-left {
  left: -22px;
  top: 16px;
}

.floating-card-right {
  right: -22px;
  bottom: 90px;
}

.floating-card-top {
  top: 16px;
  right: -22px;
}

.floating-card-bottom {
  left: -22px;
  bottom: 92px;
}

.floating-card--recargas span {
  background: linear-gradient(135deg, #1e4fd1, #3f7dff);
}

.floating-card--servicios span {
  background: linear-gradient(135deg, #1e4fd1, #3f7dff);
}

.floating-card--pines span {
  background: linear-gradient(135deg, #f26700, #ff9832);
}

.floating-card--tags span {
  background: linear-gradient(135deg, #0ea672, #2fcb95);
}

.floating-card--recargas {
  animation-delay: -0.8s;
}

.floating-card--servicios {
  animation-delay: -2.2s;
}

.floating-card--pines {
  animation-delay: -1.4s;
}

.floating-card--tags {
  animation-delay: -3s;
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes hero-benefit-twinkle {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.75);
  }

  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}

@keyframes hero-benefit-glow {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.94);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes mockup-blue-glow {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.96) translateX(-26px);
    filter: blur(30px);
  }

  50% {
    opacity: 1;
    transform: scale(1.04) translateX(26px);
    filter: blur(42px);
  }
}

.proof-band {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 42px 0;
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}

.proof-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 214px;
  padding: 10px 0;
}

.proof-grid::before {
  position: absolute;
  top: 50%;
  right: 10%;
  left: 10%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(245, 124, 0, 0.35), rgba(245, 124, 0, 0.9), rgba(24, 69, 140, 0.75));
  box-shadow: 0 0 16px rgba(245, 124, 0, 0.24);
}

.proof-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 1fr 92px 1fr;
  min-width: 0;
  min-height: 194px;
  justify-items: center;
}

.proof-step__point {
  grid-row: 2;
  display: inline-grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 12px 22px rgba(12, 33, 75, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(12px);
  font-size: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.proof-step__point--orange {
  color: #ef6800;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 203, 161, 0.72));
  border-color: rgba(245, 124, 0, 0.54);
}

.proof-step__point--blue {
  color: #173c7a;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(164, 194, 238, 0.8));
  border-color: rgba(24, 69, 140, 0.46);
}

.proof-step__content {
  width: min(100%, 210px);
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  text-align: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.proof-step:nth-child(odd) .proof-step__content {
  grid-row: 1;
  align-self: end;
  margin-bottom: 14px;
}

.proof-step:nth-child(even) .proof-step__content {
  grid-row: 3;
  align-self: start;
  margin-top: 14px;
}

.proof-step__content strong {
  display: block;
  color: var(--primary);
  font-family: "Poppins", sans-serif;
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 800;
  line-height: 1.15;
}

.proof-step__content span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.proof-step:hover .proof-step__point {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 18px 28px rgba(12, 33, 75, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.proof-step:hover .proof-step__content {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.64);
}

.section {
  padding: 92px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(235, 243, 255, 0.7) 100%);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}

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

.section-kicker-light {
  color: #ffc58f;
}

.section-heading h2,
.process-copy h2,
.register-intro h2,
.faq-heading h2,
.contact-grid h2,
.success-shell h2 {
  margin: 14px 0 14px;
  color: var(--primary-strong);
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.section-heading p,
.process-copy p,
.register-intro p,
.faq-heading p,
.contact-grid p,
.success-shell p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.74;
}

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

.company-showcase {
  padding-top: 78px;
}

.company-strip {
  padding: 22px;
  margin-top: 20px;
  border: 1px solid rgba(10, 47, 120, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.company-strip h3 {
  margin: 0 0 16px;
  color: var(--primary-strong);
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.company-strip img {
  width: 100%;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(10, 47, 120, 0.05);
}

.coverage-heading {
  max-width: 910px;
  margin-bottom: 34px;
}

.coverage-heading .section-kicker {
  padding: 9px 15px;
  border: 1px solid rgba(245, 124, 0, 0.14);
  border-radius: 999px;
  background: rgba(255, 248, 242, 0.82);
  letter-spacing: 0.09em;
}

.coverage-heading .section-kicker i {
  margin-right: 6px;
}

.coverage-heading h2 {
  font-size: clamp(34px, 4vw, 51px);
}

.coverage-heading h2 span,
.coverage-cta h3 span {
  color: var(--accent);
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(300px, 0.9fr);
  gap: 20px;
  align-items: start;
}

.coverage-catalog {
  display: grid;
  gap: 12px;
}

.coverage-tier {
  padding: 16px 18px 18px;
  border: 1px solid rgba(38, 91, 177, 0.1);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 32px rgba(30, 77, 150, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
}

.coverage-tier__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}

.coverage-tier__heading h3 {
  margin: 0;
  color: var(--primary-strong);
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 1.2;
}

.coverage-tier__heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.coverage-tier__icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  font-size: 17px;
}

.coverage-tier__icon--blue {
  color: #2974dd;
  background: linear-gradient(145deg, #edf4ff, #dceaff);
}

.coverage-tier__icon--violet {
  color: #8659d7;
  background: linear-gradient(145deg, #f4efff, #e8ddff);
}

.coverage-tier__icon--green {
  color: #37ad62;
  background: linear-gradient(145deg, #effcf3, #daf6e2);
}

.coverage-logos {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coverage-logos--eight,
.coverage-logos--more {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.coverage-logos li {
  display: grid;
  min-width: 0;
  height: 48px;
  place-items: center;
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(22, 66, 135, 0.07);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 5px 12px rgba(21, 62, 128, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coverage-logos li:hover {
  z-index: 1;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 18px rgba(20, 62, 129, 0.14);
}

.coverage-logos img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.coverage-tier--more .coverage-logos {
  gap: 7px;
}

.coverage-tier--more .coverage-logos li {
  height: 42px;
  padding: 6px;
}

.coverage-cta {
  position: sticky;
  top: 94px;
  overflow: hidden;
  border: 1px solid rgba(38, 91, 177, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(22, 65, 134, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.coverage-cta__visual {
  position: relative;
  height: 185px;
  overflow: hidden;
  background: linear-gradient(145deg, #092c68, #1056b3);
}

.coverage-cta__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(6, 29, 72, 0.34));
}

.coverage-cta__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}

.coverage-cta__content {
  position: relative;
  padding: 21px;
}

.coverage-cta__icon {
  position: absolute;
  top: -24px;
  left: 21px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 16px;
  color: #f47709;
  background: #fff1e6;
  box-shadow: 0 8px 16px rgba(11, 45, 105, 0.14);
}

.coverage-cta h3 {
  max-width: 230px;
  margin: 10px 0 9px 58px;
  color: var(--primary-strong);
  font-family: "Poppins", sans-serif;
  font-size: 23px;
  line-height: 1.12;
}

.coverage-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.coverage-cta ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
}

.coverage-cta li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #344b75;
  font-size: 12px;
  line-height: 1.4;
}

.coverage-cta li::before {
  display: inline-grid;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  content: "✓";
  font-size: 9px;
  font-weight: 800;
}

.coverage-cta__button {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #f36c00, #ff8c24);
  box-shadow: 0 12px 20px rgba(245, 111, 0, 0.24);
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coverage-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(245, 111, 0, 0.34);
}

.coverage-cta small {
  display: block;
  margin-top: 12px;
  color: #7e8eaa;
  font-size: 9px;
  text-align: center;
}

.coverage-cta small i {
  margin-right: 5px;
}

.benefit-card,
.product-card {
  padding: 26px;
  border: 1px solid rgba(10, 47, 120, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.benefit-card small,
.product-copy .pill {
  display: inline-flex;
  margin-bottom: 14px;
}

.benefit-card h3,
.product-copy h3,
.timeline h3 {
  margin: 0 0 10px;
  color: var(--primary-strong);
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  line-height: 1.14;
}

.benefit-card p,
.product-copy p,
.timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.benefit-card a,
.product-copy a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--primary);
  font-weight: 800;
}

.benefit-card-dark {
  color: #fff;
  background: linear-gradient(135deg, #071c43, #0a3a88);
}

.benefit-card-dark h3,
.benefit-card-dark p,
.benefit-card-dark a,
.benefit-card-dark small {
  color: #fff;
}

.benefit-card-accent {
  background: linear-gradient(145deg, #fff4e9, #fffaf4);
}

.benefits-heading {
  max-width: 940px;
  margin-bottom: 42px;
}

.benefits-heading .section-kicker {
  padding: 9px 15px;
  border: 1px solid rgba(245, 124, 0, 0.14);
  border-radius: 999px;
  background: rgba(255, 243, 228, 0.8);
  letter-spacing: 0.08em;
}

.benefits-heading .section-kicker i {
  font-size: 13px;
}

.benefits-heading h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.benefits-heading h2 span {
  color: var(--accent);
}

.benefits-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: 20px;
  align-items: stretch;
}

.benefits-primary {
  position: relative;
  display: flex;
  width: calc(100% + max(20px, calc(50vw - 590px)));
  min-height: 430px;
  margin-left: min(-20px, calc(590px - 50vw));
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: 34px 34px 34px calc(34px + max(20px, calc(50vw - 590px)));
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  isolation: isolate;
  background:
    radial-gradient(circle at 94% 62%, rgba(42, 118, 237, 0.42), transparent 22%),
    radial-gradient(circle at 84% 98%, rgba(245, 124, 0, 0.28), transparent 16%),
    linear-gradient(145deg, #05183f 0%, #082c6c 62%, #0c4798 100%);
}

.benefits-primary::before,
.benefits-primary::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.benefits-primary::before {
  right: -92px;
  bottom: -102px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(111, 177, 255, 0.22);
  box-shadow: 0 0 0 38px rgba(94, 164, 255, 0.04), 0 0 0 82px rgba(94, 164, 255, 0.025);
  animation: benefit-glow 5s ease-in-out infinite;
}

.benefits-primary::after {
  top: -110px;
  left: -100px;
  width: 260px;
  height: 260px;
  background: rgba(45, 122, 241, 0.2);
  filter: blur(32px);
}

.benefits-primary h3 {
  max-width: 390px;
  margin: 18px 0 16px;
  color: #fff;
  font-size: clamp(29px, 2.4vw, 40px);
  line-height: 1.08;
}

.benefits-primary p {
  max-width: 355px;
  color: rgba(240, 246, 255, 0.86);
}

.benefit-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.benefit-card__eyebrow i {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(145deg, #ff9229, #f26500);
  box-shadow: 0 8px 16px rgba(245, 124, 0, 0.24);
}

.benefits-primary .benefit-card__eyebrow {
  color: #ff9b3a;
}

.benefits-primary .benefit-card__eyebrow i {
  background: linear-gradient(145deg, #286ad1, #123d8c);
}

.benefit-card__eyebrow--blue {
  color: #2369cf;
}

.benefit-card__eyebrow--blue i {
  color: #2369cf;
  background: linear-gradient(145deg, #e9f1ff, #d8e7ff);
  box-shadow: none;
}

.benefit-card__eyebrow--violet {
  color: #7953c9;
}

.benefit-card__eyebrow--violet i {
  color: #7953c9;
  background: linear-gradient(145deg, #f1ebff, #e5d8ff);
  box-shadow: none;
}

.benefit-card__eyebrow--orange {
  color: #e96916;
}

.benefit-card__eyebrow--orange i {
  color: #e96916;
  background: linear-gradient(145deg, #fff1e8, #ffe1cd);
  box-shadow: none;
}

.benefit-primary__cta {
  position: relative;
  z-index: 1;
  gap: 10px;
  margin-top: 26px;
  padding: 15px 20px;
  border-radius: 13px;
  color: #fff !important;
  background: linear-gradient(135deg, #f57400, #ff8d24);
  box-shadow: 0 12px 22px rgba(245, 104, 0, 0.3);
}

.benefit-primary__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(245, 104, 0, 0.4);
}

.benefit-primary__note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: rgba(240, 246, 255, 0.88);
  font-size: 12px;
  font-weight: 700;
}

.benefit-primary__note i {
  color: #d9fff0;
}

.benefit-orbit {
  position: absolute;
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(112, 180, 255, 0.2);
  border-radius: 15px;
  color: #e4f0ff;
  background: rgba(28, 91, 185, 0.55);
  box-shadow: 0 16px 24px rgba(1, 16, 51, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  animation: benefit-float 4.5s ease-in-out infinite;
}

.benefit-orbit--phone {
  top: 31%;
  right: 36px;
}

.benefit-orbit--card {
  top: 49%;
  right: 62px;
  animation-delay: -1.5s;
}

.benefit-orbit--wifi {
  right: 32px;
  bottom: 18%;
  animation-delay: -2.6s;
}

.benefit-star {
  position: absolute;
  z-index: 1;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff8518;
  box-shadow: 0 0 0 4px rgba(245, 124, 0, 0.1), 0 0 16px rgba(245, 124, 0, 0.9);
  animation: benefit-twinkle 2.4s ease-in-out infinite;
}

.benefit-star--one {
  top: 31%;
  right: 16px;
}

.benefit-star--two {
  right: 82px;
  bottom: 15%;
  width: 5px;
  height: 5px;
  background: #79b7ff;
  box-shadow: 0 0 0 4px rgba(100, 175, 255, 0.1), 0 0 16px rgba(100, 175, 255, 0.8);
  animation-delay: -1s;
}

.benefit-star--three {
  right: 28%;
  bottom: 7%;
  width: 4px;
  height: 4px;
  animation-delay: -1.8s;
}

.benefits-secondary {
  display: grid;
  grid-template-rows: minmax(192px, 1fr) minmax(210px, 1fr);
  gap: 20px;
}

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

.benefits-secondary .benefit-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(68, 116, 194, 0.1);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 36px rgba(27, 72, 142, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
}

.benefit-control {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(230px, 1.16fr);
  align-items: center;
  gap: 26px;
}

.benefit-control h3,
.benefit-scale h3,
.benefit-support h3 {
  margin-top: 14px;
  font-size: clamp(20px, 1.85vw, 27px);
}

.benefit-mini-table {
  padding: 12px;
  border-radius: 16px;
  background: rgba(248, 251, 255, 0.84);
  box-shadow: inset 0 1px 0 #fff, 0 10px 25px rgba(47, 93, 164, 0.1);
}

.benefit-mini-table div {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1.25fr;
  gap: 8px;
  align-items: center;
  min-height: 32px;
  padding: 0 6px;
  color: #61769c;
  font-size: 11px;
}

.benefit-mini-table div:first-child {
  min-height: 27px;
  color: #7d90b0;
  font-size: 10px;
}

.benefit-mini-table b {
  font-weight: 600;
}

.benefit-mini-table em {
  padding: 4px 7px;
  border-radius: 999px;
  color: #188763;
  background: #e0f8ee;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.benefit-scale,
.benefit-support {
  min-height: 210px;
}

.benefit-scale p,
.benefit-support p {
  max-width: 250px;
  font-size: 14px;
}

.benefit-scale__nodes {
  position: absolute;
  right: 18px;
  bottom: 17px;
  display: flex;
  align-items: end;
  gap: 11px;
  color: #7b58c9;
}

.benefit-scale__nodes::before {
  position: absolute;
  right: 12px;
  bottom: 16px;
  left: 12px;
  height: 24px;
  border-top: 1px dashed rgba(123, 88, 201, 0.48);
  border-radius: 50% 50% 0 0;
  content: "";
}

.benefit-scale__nodes i {
  position: relative;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 8px;
  background: #f2edff;
  font-size: 12px;
}

.benefit-scale__nodes i:first-child {
  transform: translateY(-20px);
}

.benefit-support__bubble {
  position: absolute;
  right: 18px;
  bottom: 17px;
  display: grid;
  width: 72px;
  height: 68px;
  place-items: center;
  border-radius: 22px 22px 8px 22px;
  color: #f18a45;
  background: linear-gradient(145deg, #fff6f0, #ffe6d6);
  box-shadow: 0 10px 20px rgba(232, 122, 47, 0.13);
  font-size: 30px;
}

@keyframes benefit-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes benefit-twinkle {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.75);
  }

  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}

@keyframes benefit-glow {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.94);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

.product-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}

.product-media {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, #f3f7ff, #eaf1ff);
}

.product-media img {
  max-width: 72px;
  max-height: 72px;
  object-fit: contain;
}

.catalog-heading {
  max-width: 900px;
  margin-bottom: 40px;
}

.catalog-heading .section-kicker {
  padding: 9px 15px;
  border: 1px solid rgba(245, 124, 0, 0.14);
  border-radius: 999px;
  background: rgba(255, 248, 242, 0.82);
  letter-spacing: 0.09em;
}

.catalog-heading .section-kicker i {
  margin-right: 6px;
}

.catalog-heading h2 {
  font-size: clamp(36px, 4vw, 54px);
}

.catalog-heading h2 span {
  color: var(--accent);
}

.catalog-network {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(186px, 1fr));
  gap: 28px 52px;
  align-items: stretch;
}

.catalog-product,
.catalog-hub {
  position: relative;
  z-index: 1;
}

.catalog-product {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(56, 104, 180, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 38px rgba(27, 74, 145, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.catalog-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 45px rgba(27, 74, 145, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.catalog-product--recharges {
  grid-column: 1;
  grid-row: 1;
  border-bottom-color: rgba(47, 119, 255, 0.62);
}

.catalog-product--services {
  grid-column: 3;
  grid-row: 1;
  border-bottom-color: rgba(34, 161, 112, 0.56);
}

.catalog-product--pins {
  grid-column: 1;
  grid-row: 2;
  border-bottom-color: rgba(137, 92, 221, 0.56);
}

.catalog-product--tags {
  grid-column: 3;
  grid-row: 2;
  border-bottom-color: rgba(245, 161, 20, 0.62);
}

.catalog-product__icon {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border-radius: 25px;
  font-size: 47px;
}

.catalog-product--recharges .catalog-product__icon {
  color: #256ce3;
  background: linear-gradient(145deg, #ecf4ff, #e1edff);
}

.catalog-product--services .catalog-product__icon {
  color: #218a65;
  background: linear-gradient(145deg, #eaf9f2, #dff4eb);
}

.catalog-product--pins .catalog-product__icon {
  color: #7654bd;
  background: linear-gradient(145deg, #f4efff, #e9e0ff);
}

.catalog-product--tags .catalog-product__icon {
  color: #ee9411;
  background: linear-gradient(145deg, #fff8e9, #fff0ce);
}

.catalog-product__pill {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.catalog-product--recharges .catalog-product__pill {
  color: #256ce3;
  background: #e8f1ff;
}

.catalog-product--services .catalog-product__pill {
  color: #218a65;
  background: #e4f6ed;
}

.catalog-product--pins .catalog-product__pill {
  color: #7654bd;
  background: #f0ebff;
}

.catalog-product--tags .catalog-product__pill {
  color: #ec8c08;
  background: #fff2d8;
}

.catalog-product h3 {
  margin: 0 0 8px;
  color: var(--primary-strong);
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.12;
}

.catalog-product p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.catalog-product a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 15px;
  color: var(--primary-strong);
  font-size: 14px;
  font-weight: 800;
}

.catalog-hub {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  width: 230px;
  height: 230px;
  align-self: center;
  justify-self: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(126, 163, 226, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 0 20px rgba(219, 232, 255, 0.4), 0 0 0 42px rgba(231, 240, 255, 0.3), 0 20px 40px rgba(22, 70, 140, 0.14);
  text-align: center;
}

.catalog-hub::before {
  position: absolute;
  inset: -52px;
  z-index: -1;
  border: 1px solid rgba(103, 151, 230, 0.12);
  border-radius: 50%;
  content: "";
}

.catalog-hub__icon {
  display: grid;
  width: 74px;
  height: 64px;
  place-items: center;
  border-radius: 14px;
  color: #315fa9;
  background: linear-gradient(145deg, #edf4ff, #dceaff);
  box-shadow: 0 9px 18px rgba(42, 94, 174, 0.12);
  font-size: 31px;
}

.catalog-hub strong {
  display: block;
  margin-top: 13px;
  color: var(--primary-strong);
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  line-height: 1.1;
}

.catalog-hub > span:last-child {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.catalog-connector {
  position: absolute;
  z-index: 0;
  width: 12%;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(129, 170, 244, 0.18), rgba(85, 137, 233, 0.68));
  box-shadow: 0 0 10px rgba(73, 130, 233, 0.22);
}

.catalog-connector::before {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #5f9aff;
  box-shadow: 0 0 0 2px rgba(95, 154, 255, 0.2);
  content: "";
  transform: translateY(-50%);
}

.catalog-connector--left-top {
  top: 25%;
  left: 29%;
  transform: rotate(29deg);
}

.catalog-connector--left-bottom {
  bottom: 25%;
  left: 29%;
  transform: rotate(-29deg);
}

.catalog-connector--right-top {
  top: 25%;
  right: 29%;
  transform: rotate(-29deg);
}

.catalog-connector--right-bottom {
  right: 29%;
  bottom: 25%;
  transform: rotate(29deg);
}

.catalog-connector--left-top::before,
.catalog-connector--left-bottom::before {
  right: -8px;
}

.catalog-connector--right-top::before,
.catalog-connector--right-bottom::before {
  left: -8px;
}

.catalog-main-cta {
  display: flex;
  width: fit-content;
  min-width: 310px;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 36px auto 0;
  padding: 0 26px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #f36d00, #ff8d24);
  box-shadow: 0 16px 28px rgba(245, 111, 0, 0.28);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.catalog-main-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 32px rgba(245, 111, 0, 0.38);
}

@media (max-width: 900px) {
  .catalog-network {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }

  .catalog-connector {
    display: none;
  }

  .catalog-product,
  .catalog-product--recharges,
  .catalog-product--services,
  .catalog-product--pins,
  .catalog-product--tags {
    grid-column: 1;
    grid-row: auto;
  }

  .catalog-hub {
    grid-column: 1;
    grid-row: auto;
    order: -1;
  }
}

.pill {
  color: var(--primary);
  background: var(--surface-soft);
}

.process-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline article,
.contact-panel,
.faq-list details {
  padding: 22px 24px;
  border: 1px solid rgba(10, 47, 120, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.value-icons {
  padding-top: 64px;
}

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

.icon-card {
  padding: 28px 26px;
  border: 1px solid rgba(10, 47, 120, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.icon-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 18px;
}

.icon-card h3 {
  margin: 0 0 10px;
  color: var(--primary-strong);
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  line-height: 1.14;
}

.icon-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.value-icons {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 35%, rgba(209, 225, 255, 0.4), transparent 27%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(239, 246, 255, 0.5));
}

.system-heading {
  max-width: 800px;
  margin-bottom: 30px;
}

.system-heading .section-kicker {
  padding: 9px 15px;
  border: 1px solid rgba(245, 124, 0, 0.14);
  border-radius: 999px;
  background: rgba(255, 249, 243, 0.86);
  letter-spacing: 0.09em;
}

.system-heading .section-kicker i {
  margin-right: 6px;
}

.system-heading h2 {
  font-size: clamp(36px, 4vw, 54px);
}

.system-heading h2 span {
  color: var(--accent);
}

.system-showcase {
  position: relative;
}

.system-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.system-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: calc(44% - 10px);
  margin: 0 0 10px auto;
}

.system-tabs label {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px;
  border: 1px solid rgba(54, 101, 180, 0.12);
  border-radius: 12px;
  color: #293f68;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.system-tabs label i {
  font-size: 17px;
}

#system-catalogo:checked ~ .system-tabs label[for="system-catalogo"],
#system-operaciones:checked ~ .system-tabs label[for="system-operaciones"],
#system-soporte:checked ~ .system-tabs label[for="system-soporte"] {
  border-color: #5f94ee;
  color: #195bd0;
  background: #fff;
  box-shadow: 0 8px 18px rgba(34, 91, 183, 0.12), inset 0 -2px 0 #256ce3;
}

.system-interface {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 22px;
  align-items: stretch;
}

.system-monitor {
  position: relative;
  padding: 8px 8px 14px;
  border: 4px solid #1a1d24;
  border-radius: 24px 24px 12px 12px;
  background: linear-gradient(145deg, #101721, #4a5360);
  box-shadow: 0 22px 44px rgba(13, 35, 75, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.system-monitor::after {
  position: absolute;
  right: -6%;
  bottom: -19px;
  left: -6%;
  height: 13px;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, #e7ebf0, #9ca8b8);
  box-shadow: 0 8px 12px rgba(25, 49, 88, 0.16);
  content: "";
}

.system-screen {
  display: none;
  aspect-ratio: 1366 / 768;
  margin: 0;
  overflow: hidden;
  border-radius: 14px 14px 4px 4px;
  background: #0b2a62;
}

.system-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#system-catalogo:checked ~ .system-interface .system-screen--catalogo,
#system-operaciones:checked ~ .system-interface .system-screen--operaciones,
#system-soporte:checked ~ .system-interface .system-screen--soporte,
#system-catalogo:checked ~ .system-interface .system-detail--catalogo,
#system-operaciones:checked ~ .system-interface .system-detail--operaciones,
#system-soporte:checked ~ .system-interface .system-detail--soporte {
  display: block;
}

.system-details {
  min-height: 100%;
  padding: 34px 34px 30px 40px;
  border: 1px solid rgba(55, 101, 180, 0.12);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 40px rgba(29, 74, 145, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.system-detail {
  display: none;
}

.system-detail > span {
  display: inline-grid;
  min-width: 38px;
  min-height: 29px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, #2d6ee5, #1954bc);
  box-shadow: 0 8px 15px rgba(31, 94, 219, 0.22);
  font-size: 12px;
  font-weight: 800;
}

.system-detail h3 {
  max-width: 350px;
  margin: 17px 0 13px;
  color: var(--primary-strong);
  font-family: "Poppins", sans-serif;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.system-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.system-detail ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.system-detail li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b6084;
  font-size: 13px;
}

.system-detail li::before {
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #2466dc;
  content: "✓";
  font-size: 10px;
  font-weight: 800;
}

.system-detail a {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #286bdd, #174eb1);
  box-shadow: 0 11px 20px rgba(29, 86, 199, 0.22);
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.system-detail a:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 24px rgba(29, 86, 199, 0.32);
}

.system-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
  padding: 20px 26px;
  border: 1px solid rgba(55, 101, 180, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.system-benefits article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
}

.system-benefits article + article {
  border-left: 1px solid rgba(55, 101, 180, 0.14);
  padding-left: 20px;
}

.system-benefits article > i {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid #cdddf9;
  border-radius: 50%;
  color: #1f5fcf;
  background: linear-gradient(145deg, #f3f7ff, #e6efff);
  box-shadow: inset 0 1px 0 #fff;
  font-size: 23px;
}

.system-benefits h3 {
  margin: 0 0 5px;
  color: var(--primary-strong);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.system-benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .system-tabs {
    width: 100%;
  }

  .system-interface {
    grid-template-columns: 1fr;
  }

  .system-details {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .system-tabs {
    grid-template-columns: 1fr;
  }

  .system-tabs label {
    justify-content: flex-start;
    padding-left: 16px;
  }

  .system-monitor {
    padding: 5px 5px 11px;
    border-width: 3px;
    border-radius: 17px 17px 8px 8px;
  }

  .system-details {
    padding: 26px 23px;
  }

  .system-detail h3 {
    font-size: 28px;
  }

  .system-benefits {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .system-benefits article + article {
    border-top: 1px solid rgba(55, 101, 180, 0.14);
    border-left: 0;
    padding-top: 16px;
    padding-left: 0;
  }
}

.timeline article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
}

.timeline article span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #2c74ef);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

.onboarding-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 78%, rgba(209, 225, 255, 0.5), transparent 26%),
    radial-gradient(circle at 83% 18%, rgba(255, 222, 187, 0.18), transparent 22%);
}

.onboarding-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 52px;
  align-items: center;
}

.onboarding-copy .section-kicker {
  padding: 10px 16px;
  border: 1px solid rgba(245, 124, 0, 0.14);
  border-radius: 999px;
  background: rgba(255, 244, 232, 0.84);
  letter-spacing: 0.09em;
}

.onboarding-copy .section-kicker i {
  margin-right: 6px;
}

.onboarding-copy h2 {
  max-width: 550px;
  font-size: clamp(42px, 5vw, 67px);
}

.onboarding-copy h2 span {
  color: var(--accent);
}

.onboarding-copy p {
  max-width: 480px;
  font-size: 19px;
}

.onboarding-cta {
  gap: 13px;
  margin-top: 28px;
  padding-inline: 26px;
  font-size: 17px;
}

.onboarding-note {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 28px;
  color: #39527f;
  font-weight: 600;
}

.onboarding-note i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #256ce3;
  background: #eaf2ff;
}

.onboarding-steps {
  position: relative;
  gap: 20px;
}

.onboarding-steps::before {
  position: absolute;
  z-index: 0;
  top: 62px;
  bottom: 62px;
  left: 32px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2365e0 0%, #8bb4ff 24%, #e4edfb 49%, #4e88ed 72%, #dbe7fa 100%);
  background-size: 100% 200%;
  content: "";
  animation: onboarding-line-flow 3.2s linear infinite;
}

.onboarding-steps::after {
  position: absolute;
  z-index: 0;
  top: 62px;
  left: 25px;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #ff8418;
  box-shadow: 0 0 0 4px rgba(255, 132, 24, 0.14), 0 0 18px rgba(255, 132, 24, 0.7);
  content: "";
  animation: onboarding-flow-pulse 3.2s ease-in-out infinite;
}

.onboarding-steps .onboarding-step {
  position: relative;
  z-index: 1;
  display: grid !important;
  grid-template-columns: 64px 82px minmax(0, 1fr) minmax(210px, 0.86fr) !important;
  min-height: 174px;
  align-items: center;
  gap: 17px;
  padding: 24px 26px 24px 0 !important;
  overflow: visible;
  border: 1px solid rgba(69, 120, 205, 0.12) !important;
  border-radius: 27px !important;
  background: rgba(255, 255, 255, 0.78) !important;
  box-shadow: 0 16px 34px rgba(31, 76, 145, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(16px);
}

.onboarding-step > span {
  z-index: 1;
  grid-column: 1;
  width: 64px !important;
  height: 64px !important;
  border: 4px solid #fff;
  border-radius: 50% !important;
  color: #8093b5 !important;
  background: linear-gradient(145deg, #dbe6f7, #aebed9) !important;
  box-shadow: 0 8px 18px rgba(38, 77, 137, 0.14);
  font-size: 19px;
}

.onboarding-step--active > span {
  color: #fff !important;
  background: linear-gradient(145deg, #2467e5, #144dac) !important;
  box-shadow: 0 10px 21px rgba(34, 97, 225, 0.28);
}

.onboarding-step:hover > span {
  color: #fff !important;
  background: linear-gradient(145deg, #2b70ed, #144cac) !important;
  box-shadow: 0 0 0 6px rgba(56, 117, 239, 0.1), 0 12px 24px rgba(34, 97, 225, 0.35) !important;
  transform: scale(1.08);
}

.onboarding-step__icon {
  display: grid;
  grid-column: 2;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 18px;
  color: #256ce3;
  background: linear-gradient(145deg, #eff4ff, #e1eafe);
  font-size: 32px;
}

.onboarding-step > div:not(.onboarding-preview) {
  grid-column: 3;
}

.onboarding-step h3 {
  margin: 0 0 10px;
  color: var(--primary-strong);
  font-family: "Poppins", sans-serif;
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.1;
}

.onboarding-step p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.onboarding-preview {
  grid-column: 4;
  justify-self: stretch;
  padding: 13px;
  border: 1px solid rgba(70, 110, 178, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 9px 20px rgba(26, 66, 129, 0.08), inset 0 1px 0 #fff;
}

.onboarding-preview--form {
  display: grid;
  gap: 7px;
}

.onboarding-preview--form label {
  color: #617595;
  font-size: 9px;
  font-weight: 700;
}

.onboarding-preview--form label span {
  display: block;
  width: auto !important;
  height: auto !important;
  margin-top: 3px;
  padding: 7px 8px;
  border: 1px solid #dbe5f4;
  border-radius: 5px !important;
  color: #345076 !important;
  background: #fbfdff !important;
  box-shadow: none !important;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 500;
}

.onboarding-preview--form > b {
  display: grid;
  min-height: 28px;
  place-items: center;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(135deg, #2869df, #164fb4);
  font-size: 10px;
}

.onboarding-preview--code {
  display: grid;
  gap: 11px;
}

.onboarding-preview--code small {
  color: #425a81;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
}

.onboarding-preview--code > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.onboarding-preview--code > div b {
  display: grid;
  height: 34px;
  place-items: center;
  border: 1px solid #d7e1f1;
  border-radius: 6px;
  color: #16396f;
  background: #f9fbff;
  font-size: 15px;
}

.onboarding-preview--code em {
  padding: 8px;
  border-radius: 7px;
  color: #315177;
  background: #edf5ff;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}

.onboarding-preview--code em i {
  margin-right: 4px;
  color: #20b860;
  font-size: 13px;
}

.onboarding-preview--success {
  display: flex;
  min-height: 120px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.onboarding-preview--success > i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #42d986, #18af62);
  box-shadow: 0 9px 17px rgba(27, 174, 98, 0.22);
  font-size: 23px;
}

.onboarding-preview--success b {
  margin-top: 9px;
  color: #173665;
  font-size: 13px;
}

.onboarding-preview--success small {
  margin-top: 5px;
  color: #71819d;
  font-size: 9px;
  line-height: 1.35;
}

@keyframes onboarding-line-flow {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 200%;
  }
}

@keyframes onboarding-flow-pulse {
  0% {
    top: 62px;
    opacity: 0;
    transform: scale(0.6);
  }

  12% {
    opacity: 1;
    transform: scale(1);
  }

  82% {
    top: calc(100% - 72px);
    opacity: 1;
    transform: scale(1);
  }

  100% {
    top: calc(100% - 72px);
    opacity: 0;
    transform: scale(0.6);
  }
}

@media (prefers-reduced-motion: reduce) {
  .onboarding-steps::before,
  .onboarding-steps::after {
    animation: none;
  }
}

@media (max-width: 1100px) {
  .onboarding-layout {
    grid-template-columns: 1fr;
  }

  .onboarding-copy {
    max-width: 650px;
  }
}

@media (max-width: 760px) {
  .onboarding-layout {
    gap: 34px;
  }

  .onboarding-copy h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .onboarding-steps .onboarding-step {
    grid-template-columns: 54px 54px minmax(0, 1fr) !important;
    min-height: 0;
    gap: 12px;
    padding: 18px 16px 18px 0 !important;
  }

  .onboarding-steps::before {
    left: 27px;
  }

  .onboarding-step > span {
    width: 54px !important;
    height: 54px !important;
    font-size: 16px;
  }

  .onboarding-step__icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    font-size: 23px;
  }

  .onboarding-step > div:not(.onboarding-preview) {
    grid-column: 3;
  }

  .onboarding-step h3 {
    font-size: 20px;
  }

  .onboarding-step p {
    font-size: 14px;
  }

  .onboarding-preview {
    grid-column: 2 / 4;
    margin-top: 5px;
  }
}

.api-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 50%, rgba(35, 119, 243, 0.28), transparent 29%),
    radial-gradient(circle at 8% 80%, rgba(255, 122, 31, 0.13), transparent 25%),
    linear-gradient(135deg, #041735, #082c6a 57%, #0b438d);
}

.api-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image: linear-gradient(rgba(124, 173, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(124, 173, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  pointer-events: none;
}

.api-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
}

.api-copy h2 {
  max-width: 620px;
  margin: 16px 0;
  color: #fff;
  font-size: clamp(39px, 4.4vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.api-copy h2 span {
  color: #ff9a42;
}

.api-copy > p {
  max-width: 560px;
  margin: 0;
  color: rgba(231, 241, 255, 0.8);
  font-size: 17px;
  line-height: 1.65;
}

.api-benefits {
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.api-benefits li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(245, 249, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
}

.api-benefits i {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(126, 182, 255, 0.25);
  border-radius: 9px;
  color: #65a2ff;
  background: rgba(55, 123, 230, 0.18);
}

.api-cta {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 55px;
  padding: 0 24px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, #ff6d0b, #ff9a32);
  box-shadow: 0 17px 30px rgba(240, 105, 8, 0.28);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.api-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 34px rgba(240, 105, 8, 0.38);
}

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

.api-console {
  position: absolute;
  top: 50%;
  right: 3%;
  left: 3%;
  overflow: hidden;
  border: 1px solid rgba(179, 208, 255, 0.27);
  border-radius: 22px;
  background: rgba(4, 25, 67, 0.8);
  box-shadow: 0 28px 52px rgba(0, 13, 42, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.09);
  transform: translateY(-50%);
}

.api-console__top,
.api-console__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  color: #b8cdf2;
  font-size: 12px;
}

.api-console__top {
  border-bottom: 1px solid rgba(147, 182, 240, 0.15);
  background: rgba(23, 65, 131, 0.36);
}

.api-console__top span {
  display: inline-flex;
  gap: 6px;
}

.api-console__top span i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff7440;
}

.api-console__top span i:nth-child(2) {
  background: #f6c547;
}

.api-console__top span i:nth-child(3) {
  background: #39ce84;
}

.api-console__top b {
  color: #edf5ff;
  font-weight: 700;
}

.api-console__top em {
  color: #55dc91;
  font-style: normal;
  font-weight: 800;
}

.api-console__body {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 24px;
}

.api-console__method,
.api-console__status {
  padding: 6px 8px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 900;
}

.api-console__method {
  color: #67d99a;
  background: rgba(38, 180, 104, 0.16);
}

.api-console__status {
  color: #70b6ff;
  background: rgba(62, 132, 244, 0.16);
}

.api-console__body code {
  color: #f3f7ff;
  font-size: 14px;
}

.api-console__body pre {
  grid-column: 1 / -1;
  margin: 11px 0 0;
  padding: 18px;
  overflow: hidden;
  border-radius: 12px;
  color: #d5e5ff;
  background: rgba(0, 13, 41, 0.6);
  font: 13px/1.65 "Courier New", monospace;
}

.api-console__footer {
  justify-content: flex-start;
  gap: 22px;
  border-top: 1px solid rgba(147, 182, 240, 0.15);
  background: rgba(11, 40, 91, 0.6);
}

.api-console__footer i {
  margin-right: 6px;
  color: #ff9947;
}

.api-orbit {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 13px;
  color: #142b54;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 21px rgba(0, 16, 53, 0.2);
  font-size: 12px;
  font-weight: 800;
  animation: api-float 4s ease-in-out infinite;
}

.api-orbit i {
  color: #2f72df;
  font-size: 16px;
}

.api-orbit--one {
  top: 8%;
  left: -4%;
}

.api-orbit--two {
  right: -3%;
  bottom: 9%;
  animation-delay: -1.3s;
}

.api-orbit--three {
  bottom: 3%;
  left: 4%;
  animation-delay: -2.5s;
}

.api-orbit--three i {
  color: #f0781c;
}

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

@media (max-width: 1020px) {
  .api-layout {
    grid-template-columns: 1fr;
  }

  .api-visual {
    min-height: 380px;
    max-width: 690px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .api-copy h2 {
    font-size: 39px;
  }

  .api-visual {
    min-height: 355px;
  }

  .api-console {
    right: 0;
    left: 0;
  }

  .api-console__body {
    grid-template-columns: auto 1fr;
    padding: 18px;
  }

  .api-console__status {
    display: none;
  }

  .api-console__footer {
    gap: 10px;
    padding: 12px;
    font-size: 10px;
  }

  .api-orbit {
    padding: 9px 10px;
    font-size: 10px;
  }

  .api-orbit--one { left: -5px; }
  .api-orbit--two { right: -5px; }
}

.desktop-app-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 26%, rgba(82, 143, 246, 0.12), transparent 24%),
    linear-gradient(145deg, #f8fbff, #edf4ff);
}

.desktop-app-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(290px, 0.95fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
}

.desktop-app-visual {
  position: relative;
  min-height: 380px;
  padding: 18px 26px 0;
}

.desktop-monitor {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 9px solid #172b4f;
  border-radius: 21px 21px 10px 10px;
  background: #fff;
  box-shadow: 0 28px 48px rgba(23, 56, 109, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.desktop-monitor__bar {
  display: flex;
  gap: 6px;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: #c7d7f0;
  background: #0a2a62;
  font-size: 10px;
}

.desktop-monitor__bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff7b26;
}

.desktop-monitor__bar span:nth-child(2) { background: #f0c04b; }
.desktop-monitor__bar span:nth-child(3) { background: #42cf83; }
.desktop-monitor__bar b { margin-left: 5px; font-weight: 700; }

.desktop-monitor__screen {
  display: grid;
  min-height: 280px;
  grid-template-columns: 48px minmax(0, 1fr);
  background: #f7faff;
}

.desktop-monitor__screen aside {
  display: grid;
  grid-template-rows: 50px repeat(3, 34px);
  gap: 11px;
  justify-items: center;
  padding: 12px 0;
  color: #7c91b3;
  background: #0b2b62;
}

.desktop-monitor__screen aside strong {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: #ff7d25;
  font-size: 15px;
}

.desktop-monitor__screen aside span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 8px;
  font-size: 12px;
}

.desktop-monitor__screen aside .is-active {
  color: #fff;
  background: rgba(67, 133, 244, 0.72);
}

.desktop-monitor__screen main { padding: 18px; }

.desktop-monitor__welcome,
.desktop-monitor__stats,
.desktop-monitor__quick > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.desktop-monitor__welcome small,
.desktop-monitor__stats small { display: block; color: #7890b5; font-size: 10px; }
.desktop-monitor__welcome strong { display: block; color: #132a52; font-size: 19px; }
.desktop-monitor__welcome > span { align-self: center; color: #239058; font-size: 10px; font-weight: 800; }
.desktop-monitor__welcome > span i { margin-left: 3px; }

.desktop-monitor__stats { margin-top: 17px; }
.desktop-monitor__stats article { flex: 1; padding: 13px; border-radius: 11px; background: #fff; box-shadow: 0 5px 13px rgba(31, 71, 137, 0.08); }
.desktop-monitor__stats strong { display: block; margin-top: 5px; color: #142b55; font-size: 16px; }

.desktop-monitor__quick { margin-top: 16px; padding: 13px; border-radius: 11px; color: #17305c; background: #fff; font-size: 11px; }
.desktop-monitor__quick > div { margin-top: 11px; }
.desktop-monitor__quick span { display: grid; gap: 5px; justify-items: center; color: #536d97; font-size: 9px; }
.desktop-monitor__quick span i { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 8px; color: #2b6de1; background: #eaf2ff; font-size: 12px; }

.desktop-monitor__base { position: relative; z-index: 0; width: 52%; height: 19px; margin: 0 auto; border-radius: 0 0 16px 16px; background: linear-gradient(180deg, #7990b6, #d7e0ee); box-shadow: 0 7px 11px rgba(34, 65, 111, 0.16); }
.desktop-monitor__base::after { position: absolute; right: -31%; bottom: -9px; left: -31%; height: 9px; border-radius: 0 0 24px 24px; background: #bdc9dc; content: ""; }

.desktop-app-badge { position: absolute; z-index: 2; top: 7%; left: 0; display: inline-flex; gap: 8px; align-items: center; padding: 11px 13px; border: 1px solid #dce8f8; border-radius: 12px; color: #245cbe; background: #fff; box-shadow: 0 11px 21px rgba(37, 74, 140, 0.14); font-size: 12px; font-weight: 800; }
.desktop-app-badge i { font-size: 17px; }

.desktop-app-copy h2 { max-width: 590px; margin: 16px 0; color: var(--primary-strong); font-size: clamp(39px, 4.4vw, 60px); line-height: 1.08; letter-spacing: -0.05em; }
.desktop-app-copy h2 span { color: #f3751c; }
.desktop-app-copy > p { max-width: 550px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }

.desktop-app-benefits { display: grid; gap: 12px; margin: 28px 0 30px; padding: 0; list-style: none; }
.desktop-app-benefits li { display: flex; gap: 11px; align-items: center; color: #34527d; font-size: 14px; font-weight: 700; }
.desktop-app-benefits i { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 9px; color: #2669de; background: #e8f1ff; }

.desktop-app-cta { display: inline-flex; gap: 10px; align-items: center; min-height: 55px; padding: 0 23px; border-radius: 15px; color: #fff; background: linear-gradient(135deg, #1358d3, #3f85f2); box-shadow: 0 16px 28px rgba(32, 98, 211, 0.24); font-weight: 800; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.desktop-app-cta:hover { transform: translateY(-3px); box-shadow: 0 21px 34px rgba(32, 98, 211, 0.34); }

@media (max-width: 1020px) {
  .desktop-app-layout { grid-template-columns: 1fr; }
  .desktop-app-visual { max-width: 650px; width: 100%; margin: 0 auto; }
}

@media (max-width: 620px) {
  .desktop-app-visual { min-height: 320px; padding: 16px 10px 0; }
  .desktop-monitor__screen { min-height: 225px; }
  .desktop-monitor__screen main { padding: 13px; }
  .desktop-app-badge { top: 2%; font-size: 10px; }
  .desktop-monitor__quick { display: none; }
  .desktop-app-copy h2 { font-size: 39px; }
}

.social-sales-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 36%, rgba(122, 100, 238, 0.16), transparent 23%),
    radial-gradient(circle at 10% 80%, rgba(31, 196, 131, 0.12), transparent 26%),
    linear-gradient(145deg, #fbfdff, #eef5ff);
}

.social-sales-layout {
  display: grid;
  grid-template-columns: minmax(290px, 1fr) minmax(320px, 0.9fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: center;
}

.social-sales-copy h2 {
  max-width: 630px;
  margin: 16px 0;
  color: var(--primary-strong);
  font-size: clamp(39px, 4.3vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.social-sales-copy h2 span { color: #2671e4; }

.social-sales-copy > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.social-sales-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 27px 0 30px;
}

.social-sales-channels span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid #dce7f7;
  border-radius: 11px;
  color: #38567f;
  background: #fff;
  box-shadow: 0 7px 13px rgba(34, 77, 145, 0.06);
  font-size: 12px;
  font-weight: 800;
}

.social-sales-channels i { color: #2c70df; font-size: 17px; }
.social-sales-channels span:nth-child(2) i { color: #22b967; }
.social-sales-channels span:nth-child(3) i { color: #329bdc; }
.social-sales-channels span:nth-child(4) i { color: #f27a28; }

.social-sales-cta {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  min-height: 55px;
  padding: 0 24px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, #1761d9, #4b8ffa);
  box-shadow: 0 16px 29px rgba(39, 101, 221, 0.24);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-sales-cta:hover { transform: translateY(-3px); box-shadow: 0 22px 35px rgba(39, 101, 221, 0.34); }

.social-sales-visual {
  position: relative;
  min-height: 475px;
}

.social-phone {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(295px, 76%);
  overflow: hidden;
  border: 8px solid #172a4c;
  border-radius: 34px;
  background: #edf4ff;
  box-shadow: 0 26px 43px rgba(29, 62, 122, 0.24);
  transform: translate(-50%, -50%);
}

.social-phone__top,
.social-phone__compose {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  color: #fff;
  background: linear-gradient(135deg, #1e63d5, #2c7cea);
}

.social-phone__top > span { display: grid; flex: 1; margin-left: 12px; }
.social-phone__top b { font-size: 12px; }
.social-phone__top small { margin-top: 2px; color: rgba(255,255,255,0.7); font-size: 9px; }

.social-chat {
  display: grid;
  gap: 12px;
  min-height: 300px;
  padding: 18px 14px;
  background:
    radial-gradient(circle at 15% 10%, rgba(77, 137, 237, 0.1) 1px, transparent 2px) 0 0 / 16px 16px,
    #edf4ff;
}

.social-chat p { max-width: 82%; margin: 0; padding: 10px 11px; border-radius: 13px; color: #344f7b; box-shadow: 0 3px 9px rgba(38, 73, 132, 0.08); font-size: 11px; line-height: 1.45; }
.social-chat__incoming { justify-self: start; border-bottom-left-radius: 3px !important; background: #fff; }
.social-chat__outgoing { justify-self: end; border-bottom-right-radius: 3px !important; color: #1655ad !important; background: #dcecff; }
.social-chat__outgoing i { color: #2887e5; }

.social-chat__product { display: grid; grid-template-columns: 34px 1fr auto; gap: 8px; align-items: center; padding: 10px; border: 1px solid #cfe0f8; border-radius: 13px; background: #fff; box-shadow: 0 6px 12px rgba(29, 68, 133, 0.08); }
.social-chat__product > i { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 10px; color: #fff; background: #ff7f29; font-size: 15px; }
.social-chat__product b, .social-chat__product small { display: block; }
.social-chat__product b { color: #18345f; font-size: 10px; }
.social-chat__product small { margin-top: 2px; color: #7a8eae; font-size: 8px; }
.social-chat__product strong { color: #218b57; font-size: 9px; }

.social-phone__compose { gap: 10px; padding: 10px 13px; color: #778eaf; background: #fff; font-size: 10px; }
.social-phone__compose span { flex: 1; padding: 8px 10px; border-radius: 11px; background: #f0f5fd; }
.social-phone__compose > i:last-child { color: #2a6fdc; }

.social-float {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 13px 21px rgba(30, 66, 129, 0.17);
  font-size: 28px;
  animation: social-float 4s ease-in-out infinite;
}

.social-float--messenger { top: 12%; left: 7%; background: linear-gradient(145deg, #3786f5, #7255df); }
.social-float--whatsapp { right: 5%; bottom: 16%; border-radius: 50%; background: #25c76e; animation-delay: -1.4s; }
.social-float--telegram { right: 10%; top: 10%; border-radius: 50%; background: #299bdc; animation-delay: -2.5s; }

@keyframes social-float { 0%, 100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-10px) rotate(3deg); } }

@media (max-width: 1020px) {
  .social-sales-layout { grid-template-columns: 1fr; }
  .social-sales-visual { max-width: 530px; width: 100%; margin: 0 auto; }
}

@media (max-width: 620px) {
  .social-sales-copy h2 { font-size: 39px; }
  .social-sales-visual { min-height: 430px; }
  .social-float { width: 48px; height: 48px; font-size: 23px; }
}

.mobile-app-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 55%, rgba(49, 124, 246, 0.18), transparent 28%),
    radial-gradient(circle at 11% 15%, rgba(255, 130, 34, 0.1), transparent 25%),
    linear-gradient(145deg, #f6faff, #eaf3ff);
}

.mobile-app-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(38px, 7vw, 104px);
  align-items: center;
}

.mobile-app-copy h2 {
  max-width: 600px;
  margin: 16px 0;
  color: var(--primary-strong);
  font-size: clamp(40px, 4.3vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.mobile-app-copy h2 span { color: #f2751d; }

.mobile-app-copy > p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.mobile-app-benefits {
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.mobile-app-benefits li {
  display: flex;
  gap: 11px;
  align-items: center;
  color: #3b5780;
  font-size: 14px;
  font-weight: 700;
}

.mobile-app-benefits i {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 9px;
  color: #f3761d;
  background: #fff0e5;
}

.mobile-app-cta {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  min-height: 55px;
  padding: 0 24px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, #1a61d7, #4a8df2);
  box-shadow: 0 16px 29px rgba(36, 98, 214, 0.23);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-app-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 35px rgba(36, 98, 214, 0.34);
}

.mobile-app-visual {
  position: relative;
  display: grid;
  min-height: 460px;
  place-items: center;
}

.mobile-app-visual__glow {
  position: absolute;
  width: min(470px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 128, 244, 0.27), rgba(71, 142, 244, 0.04) 58%, transparent 70%);
  filter: blur(4px);
  animation: mobile-app-glow 3.8s ease-in-out infinite;
}

.mobile-app-visual img {
  position: relative;
  z-index: 1;
  width: min(530px, 100%);
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 25px 27px rgba(23, 70, 150, 0.2));
}

.mobile-app-note {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 13px;
  color: #193665;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 13px 22px rgba(21, 61, 126, 0.16);
  font-size: 12px;
  font-weight: 800;
  animation: mobile-app-float 4s ease-in-out infinite;
}

.mobile-app-note i { color: #f4781f; }
.mobile-app-note--fast { top: 13%; left: 1%; }
.mobile-app-note--safe { right: 0; bottom: 16%; animation-delay: -1.7s; }
.mobile-app-note--safe i { color: #2b74df; }

@keyframes mobile-app-glow {
  0%, 100% { opacity: 0.64; transform: scale(0.94); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes mobile-app-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@media (max-width: 1020px) {
  .mobile-app-layout { grid-template-columns: 1fr; }
  .mobile-app-visual { max-width: 610px; width: 100%; margin: 0 auto; }
}

@media (max-width: 620px) {
  .mobile-app-copy h2 { font-size: 39px; }
  .mobile-app-visual { min-height: 370px; }
  .mobile-app-visual img { max-height: 390px; }
  .mobile-app-note { padding: 9px 10px; font-size: 10px; }
  .mobile-app-note--fast { left: -5px; }
  .mobile-app-note--safe { right: -4px; }
}

.business-types-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(46, 115, 233, 0.1), transparent 25%),
    radial-gradient(circle at 92% 88%, rgba(255, 130, 35, 0.11), transparent 26%),
    #f8fbff;
}

.business-types-heading {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.business-types-heading .section-kicker { justify-content: center; }

.business-types-heading h2 {
  margin: 16px 0 13px;
  color: var(--primary-strong);
  font-size: clamp(40px, 4.7vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.business-types-heading h2 span { color: #f3751c; }

.business-types-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

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

.business-type-card {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 27px;
  overflow: hidden;
  border: 1px solid rgba(35, 76, 145, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 27px rgba(26, 66, 135, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.business-type-card::after {
  position: absolute;
  right: -39px;
  bottom: -43px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--business-glow, rgba(44, 108, 223, 0.08));
  content: "";
  transition: transform 0.25s ease;
}

.business-type-card:hover {
  transform: translateY(-6px);
  border-color: var(--business-border, rgba(40, 105, 224, 0.3));
  box-shadow: 0 23px 37px rgba(26, 66, 135, 0.14);
}

.business-type-card:hover::after { transform: scale(1.25); }

.business-type-card > i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  color: var(--business-color, #256be0);
  background: var(--business-tint, #eaf2ff);
  font-size: 23px;
}

.business-type-card > span {
  position: absolute;
  top: 27px;
  right: 27px;
  color: rgba(44, 77, 126, 0.22);
  font-size: 16px;
  font-weight: 900;
}

.business-type-card h3 {
  position: relative;
  z-index: 1;
  margin: 20px 0 8px;
  color: var(--primary-strong);
  font-size: 20px;
  letter-spacing: -0.035em;
}

.business-type-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.business-type-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--business-color, #256be0);
  font-size: 13px;
  font-weight: 800;
}

.business-type-card a i { transition: transform 0.2s ease; }
.business-type-card a:hover i { transform: translateX(4px); }

.business-type-card--store { --business-color: #e56f1c; --business-tint: #fff0e4; --business-glow: rgba(255, 137, 53, 0.11); --business-border: rgba(235, 111, 28, 0.3); }
.business-type-card--stationery { --business-color: #286ddc; --business-tint: #e9f2ff; --business-glow: rgba(55, 118, 230, 0.11); --business-border: rgba(39, 105, 220, 0.3); }
.business-type-card--pharmacy { --business-color: #24a566; --business-tint: #e9fbf1; --business-glow: rgba(40, 184, 112, 0.1); --business-border: rgba(35, 168, 100, 0.3); }
.business-type-card--entrepreneur { --business-color: #8b58d7; --business-tint: #f2eaff; --business-glow: rgba(147, 87, 219, 0.1); --business-border: rgba(139, 82, 211, 0.3); }
.business-type-card--distributor { --business-color: #176fbb; --business-tint: #e5f5ff; --business-glow: rgba(33, 126, 204, 0.11); --business-border: rgba(24, 112, 190, 0.3); }
.business-type-card--home { --business-color: #d64b73; --business-tint: #ffedf3; --business-glow: rgba(220, 70, 111, 0.1); --business-border: rgba(214, 68, 106, 0.3); }

@media (max-width: 1020px) {
  .business-types-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .business-types-heading { margin-bottom: 32px; text-align: left; }
  .business-types-heading .section-kicker { justify-content: flex-start; }
  .business-types-heading h2 { font-size: 40px; }
  .business-types-heading p { font-size: 16px; }
  .business-types-grid { grid-template-columns: 1fr; }
  .business-type-card { min-height: 230px; }
}

.business-types-content {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(390px, 1.14fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

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

.business-types-content .business-type-card {
  min-height: 224px;
  padding: 22px;
  cursor: pointer;
}

.business-types-content .business-type-card > i {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  font-size: 19px;
}

.business-types-content .business-type-card > span {
  top: 22px;
  right: 22px;
}

.business-types-content .business-type-card h3 {
  margin-top: 15px;
  font-size: 17px;
}

.business-types-content .business-type-card p {
  font-size: 12px;
}

.business-types-content .business-type-card a {
  padding-top: 14px;
  font-size: 12px;
}

.business-type-card.is-active {
  transform: translateY(-4px);
  border-color: var(--business-border, rgba(40, 105, 224, 0.42));
  box-shadow: 0 20px 34px rgba(26, 66, 135, 0.15);
}

.business-type-card.is-active::after { transform: scale(1.22); }

.business-preview {
  position: sticky;
  top: 100px;
  min-height: 610px;
  overflow: hidden;
  border-radius: 28px;
  background: #102d60;
  box-shadow: 0 26px 50px rgba(18, 57, 121, 0.22);
}

.business-preview__item {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  padding: 25px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.04);
  transition: opacity 0.35s ease, transform 0.5s ease;
}

.business-preview__item.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.business-preview__item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 18, 50, 0.06) 28%, rgba(2, 25, 68, 0.86) 100%);
  content: "";
}

.business-preview__item > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-preview__item > div {
  position: relative;
  z-index: 1;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(0, 15, 45, 0.22);
}

.business-preview__item > div > span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #2869dc;
  font-size: 12px;
  font-weight: 800;
}

.business-preview__item > div > span i { font-size: 17px; }

.business-preview__item h3 {
  margin: 12px 0 8px;
  color: var(--primary-strong);
  font-size: 26px;
  letter-spacing: -0.045em;
}

.business-preview__item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.business-preview__item ul {
  display: grid;
  gap: 8px;
  margin: 17px 0 19px;
  padding: 0;
  list-style: none;
  color: #34527d;
  font-size: 13px;
  font-weight: 700;
}

.business-preview__item li::before {
  margin-right: 8px;
  color: #2b71e1;
  content: "✓";
}

.business-preview__item a {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, #1d60db, #4388f2);
  box-shadow: 0 9px 17px rgba(27, 91, 208, 0.22);
  font-size: 13px;
  font-weight: 800;
}

.business-preview__item a:hover { transform: translateY(-2px); }

@media (max-width: 1020px) {
  .business-types-content {
    grid-template-columns: 1fr;
  }

  .business-preview {
    position: relative;
    top: auto;
    min-height: 520px;
    max-width: 700px;
    width: 100%;
    margin: 12px auto 0;
  }
}

@media (max-width: 620px) {
  .business-types-content .business-types-grid {
    grid-template-columns: 1fr;
  }

  .business-preview {
    min-height: 450px;
  }

  .business-preview__item {
    padding: 15px;
  }

  .business-preview__item > div {
    padding: 18px;
  }

  .business-preview__item h3 {
    font-size: 22px;
  }
}

@media (min-width: 1021px) {
  .business-types-section .shell {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .business-types-content {
    grid-template-columns: minmax(570px, 48%) minmax(0, 52%);
    gap: 0;
  }

  .business-types-content .business-types-grid {
    width: min(620px, calc(100% - 72px));
    justify-self: end;
    margin-right: clamp(32px, 5vw, 94px);
  }

  .business-preview {
    min-height: 720px;
    border-radius: 0;
    clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: 0 28px 55px rgba(18, 57, 121, 0.24);
  }

  .business-preview__item {
    padding: 32px 28px 32px clamp(84px, 9vw, 145px);
  }

  .business-preview__item > div {
    max-width: 450px;
  }
}

@media (max-width: 1020px) {
  .business-preview {
    clip-path: none;
    border-radius: 28px;
  }
}

.plans-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 108%, rgba(39, 113, 235, 0.38), transparent 42%),
    linear-gradient(135deg, #041733, #082a65 55%, #0a3b80);
}

.plans-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: linear-gradient(45deg, transparent 48%, rgba(147, 186, 255, 0.11) 49%, rgba(147, 186, 255, 0.11) 51%, transparent 52%);
  background-size: 56px 56px;
  content: "";
  pointer-events: none;
}

.plans-section .shell { position: relative; z-index: 1; }

.plans-heading {
  max-width: 770px;
  margin: 0 auto 42px;
  text-align: center;
}

.plans-heading .section-kicker { justify-content: center; }

.plans-heading h2 {
  margin: 15px 0 12px;
  color: #fff;
  font-size: clamp(40px, 4.7vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.plans-heading h2 span { color: #ff9a42; }

.plans-heading p {
  margin: 0;
  color: rgba(233, 243, 255, 0.76);
  font-size: 17px;
  line-height: 1.6;
}

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

.plan-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 31px;
  overflow: hidden;
  border: 1px solid rgba(177, 205, 255, 0.27);
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(155deg, rgba(31, 81, 158, 0.62), rgba(8, 39, 95, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 19px 34px rgba(0, 14, 43, 0.22);
  backdrop-filter: blur(10px);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.plan-card::after {
  position: absolute;
  right: -60px;
  bottom: -78px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--plan-glow, rgba(55, 125, 235, 0.23));
  content: "";
  transition: transform 0.25s ease;
}

.plan-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 169, 91, 0.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 26px 44px rgba(0, 13, 41, 0.3);
}

.plan-card:hover::after { transform: scale(1.25); }

.plan-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  align-items: center;
}

.plan-card__top > i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 17px;
  color: var(--plan-color, #6da6ff);
  background: rgba(255, 255, 255, 0.12);
  font-size: 23px;
}

.plan-card__top span {
  color: rgba(232, 242, 255, 0.69);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.plan-card h3 {
  position: relative;
  z-index: 1;
  margin: 24px 0 12px;
  color: #fff;
  font-size: 29px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.plan-card > p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(233, 243, 255, 0.77);
  font-size: 14px;
  line-height: 1.65;
}

.plan-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
  color: rgba(244, 249, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
}

.plan-card li::before {
  margin-right: 8px;
  color: var(--plan-color, #6da6ff);
  content: "✓";
}

.plan-card > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  margin-top: auto;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #ff6d0c, #ff9631);
  box-shadow: 0 12px 22px rgba(241, 102, 6, 0.24);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.plan-card > a:hover { transform: translateY(-2px); box-shadow: 0 17px 26px rgba(241, 102, 6, 0.34); }

.plan-card--mobile { --plan-color: #70a8ff; --plan-glow: rgba(47, 128, 244, 0.24); }
.plan-card--business { --plan-color: #ffb16d; --plan-glow: rgba(255, 128, 34, 0.2); background: linear-gradient(155deg, rgba(49, 100, 183, 0.73), rgba(12, 52, 117, 0.89)); }
.plan-card--distribution { --plan-color: #74dfb0; --plan-glow: rgba(41, 195, 123, 0.18); }

.plan-card--featured { transform: translateY(-13px); border-color: rgba(255, 171, 92, 0.62); }
.plan-card--featured:hover { transform: translateY(-20px); }

.plan-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 7px 9px;
  border-radius: 8px;
  color: #7e3d08;
  background: #ffd7ad;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .plan-card--featured, .plan-card--featured:hover { transform: none; }
}

@media (max-width: 620px) {
  .plans-heading { text-align: left; }
  .plans-heading .section-kicker { justify-content: flex-start; }
  .plans-heading h2 { font-size: 40px; }
  .plans-heading p { font-size: 16px; }
  .plan-card { min-height: 0; padding: 25px; }
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 78%, rgba(255, 178, 105, 0.22), transparent 29%),
    radial-gradient(circle at 92% 15%, rgba(68, 126, 229, 0.12), transparent 25%),
    linear-gradient(135deg, #fff9f2 0%, #fffdf9 48%, #eef5ff 100%);
}

.testimonials-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image: radial-gradient(circle, rgba(244, 113, 31, 0.16) 1px, transparent 1.5px);
  background-size: 24px 24px;
  content: "";
  pointer-events: none;
}

.testimonials-section .shell { position: relative; z-index: 1; }

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

.testimonials-trust {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  padding: 9px 18px 9px 10px;
  margin-bottom: 26px;
  border: 1px solid #f5d2b5;
  border-radius: 999px;
  color: #5f7191;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 25px rgba(45, 73, 120, 0.09), inset 0 1px 0 rgba(255,255,255,0.9);
  font-size: 13px;
}

.testimonials-avatars { display: inline-flex; padding-left: 5px; }
.testimonials-avatars b { display: block; width: 38px; height: 38px; margin-left: -5px; border: 2px solid #fff; border-radius: 50%; color: transparent; background-image: url("img/testimonios-negocios.png"); background-repeat: no-repeat; background-size: 300% 200%; }
.testimonials-avatars b:nth-child(1) { background-position: 0% 0%; }
.testimonials-avatars b:nth-child(2) { background-position: 50% 0%; }
.testimonials-avatars b:nth-child(3) { background-position: 100% 0%; }
.testimonials-stars { display: inline-flex; gap: 3px; color: #ffc441; font-size: 13px; }
.testimonials-trust strong { color: var(--primary-strong); font-size: 13px; }

.testimonials-heading .section-kicker { justify-content: center; }

.testimonials-heading h2 {
  margin: 15px 0 0;
  color: var(--primary-strong);
  font-size: clamp(39px, 4.6vw, 62px);
  line-height: 1.07;
  letter-spacing: -0.055em;
}

.testimonials-heading h2 span { color: #ff9942; }

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

.testimonial-card {
  position: relative;
  padding: 29px;
  overflow: hidden;
  border: 1px solid rgba(204, 216, 234, 0.8);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 33px rgba(31, 56, 95, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 25px 41px rgba(31, 56, 95, 0.2); }

.testimonial-card--featured {
  min-height: 320px;
  border-color: rgba(255, 157, 76, 0.65);
  background: linear-gradient(145deg, #fff, #fff8f2);
}

.testimonial-card__quote {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: #f47b26;
  background: #fff1e6;
  font-size: 18px;
}

.testimonial-card p {
  margin: 20px 0 26px;
  color: #415a81;
  font-size: 16px;
  font-style: italic;
  line-height: 1.65;
}

.testimonial-card footer {
  display: flex;
  gap: 11px;
  align-items: center;
}

.testimonial-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #2773e7, #143f95);
  font-size: 11px;
  font-weight: 900;
}

.testimonial-avatar--j,
.testimonial-avatar--s,
.testimonial-avatar--c,
.testimonial-avatar--m,
.testimonial-avatar--h,
.testimonial-avatar--f {
  color: transparent;
  background-image: url("img/testimonios-negocios.png");
  background-repeat: no-repeat;
  background-size: 300% 200%;
}

.testimonial-avatar--j { background-position: 50% 0%; }
.testimonial-avatar--s { background-position: 0% 0%; }
.testimonial-avatar--c { background-position: 100% 0%; }
.testimonial-avatar--m { background-position: 100% 100%; }
.testimonial-avatar--h { background-position: 0% 100%; }
.testimonial-avatar--f { background-position: 50% 100%; }

.testimonial-card footer strong, .testimonial-card footer small { display: block; }
.testimonial-card footer strong { color: var(--primary-strong); font-size: 14px; }
.testimonial-card footer small { margin-top: 3px; color: #7487a5; font-size: 12px; }

.testimonial-card__tag {
  position: absolute;
  top: 23px;
  right: 23px;
  padding: 7px 9px;
  border-radius: 8px;
  color: #e16a16;
  background: #fff0e4;
  font-size: 10px;
  font-weight: 900;
}

.testimonial-card__tag i { margin-right: 4px; }

.testimonials-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 52px;
  padding: 0 22px;
  margin: 34px auto 0;
  border: 1px solid #f0832d;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #ff9a24, #f56b12);
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.testimonials-cta:hover { transform: translateY(-3px); background: linear-gradient(135deg, #f56b12, #dd4f08); }

@media (max-width: 980px) {
  .testimonials-layout { grid-template-columns: 1fr; max-width: 650px; margin: 0 auto; }
  .testimonial-card--featured { order: -1; min-height: 0; }
}

@media (max-width: 620px) {
  .testimonials-heading { text-align: left; }
  .testimonials-heading .section-kicker { justify-content: flex-start; }
  .testimonials-heading h2 { font-size: 40px; }
  .testimonials-trust { align-items: flex-start; flex-wrap: wrap; border-radius: 18px; }
  .testimonial-card { padding: 24px; }
  .testimonial-card p { font-size: 15px; }
}

.register-section {
  position: relative;
  padding: 96px 0;
  background:
    radial-gradient(circle at top left, rgba(255, 210, 166, 0.18), transparent 24%),
    linear-gradient(135deg, #071c43 0%, #08265c 45%, #0d428f 100%);
}

.register-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.register-intro {
  padding-top: 12px;
}

.register-intro h2,
.contact-grid h2 {
  color: #fff;
}

.register-intro p,
.contact-grid p {
  color: rgba(233, 241, 255, 0.76);
}

.contact-stack {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.contact-cta {
  width: fit-content;
}

.contact-points {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.contact-points li {
  padding: 16px 18px;
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.register-background {
  padding: 14px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.register-form-container {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(3, 18, 46, 0.22);
}

.register-title {
  margin: 0 0 22px;
  color: var(--primary-strong);
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.register-form {
  display: grid;
  gap: 14px;
}

.register-form label {
  color: var(--primary-strong);
  font-size: 13px;
  font-weight: 800;
}

.register-form input,
.register-form select {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid rgba(10, 47, 120, 0.12);
  border-radius: 16px;
  color: var(--ink);
  background: #f8fbff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.register-form input:focus,
.register-form select:focus {
  outline: none;
  border-color: rgba(42, 116, 239, 0.55);
  box-shadow: 0 0 0 4px rgba(42, 116, 239, 0.12);
  background: #fff;
}

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

.register-column {
  display: grid;
  gap: 8px;
}

.password-container {
  position: relative;
}

.password-container button {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
}

.password-container img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.password-requirements {
  margin: -2px 0 0;
  padding: 0 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.field-message {
  min-height: 16px;
  color: #d62828;
  font-size: 12px;
  font-weight: 800;
}

#divGoogleButton {
  padding-top: 6px;
}

#infoGoogle {
  margin: 0 0 10px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.google-register {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 18px;
  border: 1px solid rgba(10, 47, 120, 0.12);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.google-register img {
  width: 24px;
  height: 24px;
}

.registration-wizard-section {
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 24%, rgba(52, 131, 247, 0.28), transparent 23%),
    radial-gradient(circle at 20% 76%, rgba(19, 91, 210, 0.2), transparent 24%),
    linear-gradient(135deg, #061a43 0%, #082b69 48%, #073478 100%);
}

.registration-wizard-section::before,
.registration-wizard-section::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.registration-wizard-section::before {
  right: 4%;
  bottom: 7%;
  width: 180px;
  height: 120px;
  opacity: 0.72;
  background-image: radial-gradient(circle, #3f8eff 1.5px, transparent 1.8px);
  background-size: 18px 18px;
  animation: wizard-stars 4s ease-in-out infinite;
}

.registration-wizard-section::after {
  top: -150px;
  left: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(32, 102, 222, 0.16);
  filter: blur(30px);
}

.registration-wizard-section .register-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 54px;
  align-items: center;
}

.wizard-intro {
  padding-top: 0;
}

.wizard-intro h2 {
  max-width: 410px;
  margin-top: 18px;
  font-size: clamp(42px, 4.5vw, 64px);
}

.wizard-intro h2 span {
  color: #ff9a42;
}

.wizard-intro p {
  max-width: 350px;
  font-size: 18px;
}

.wizard-intro__benefits {
  display: grid;
  gap: 20px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.wizard-intro__benefits li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  color: rgba(241, 247, 255, 0.86);
  line-height: 1.45;
}

.wizard-intro__benefits li > i {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(113, 173, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, rgba(35, 105, 225, 0.74), rgba(13, 55, 135, 0.7));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 21px rgba(1, 17, 53, 0.2);
  font-size: 25px;
}

.wizard-intro__benefits strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 17px;
}

.wizard-intro__login {
  display: grid;
  gap: 7px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(171, 204, 255, 0.26);
  color: rgba(235, 244, 255, 0.72);
  font-size: 14px;
}

.wizard-intro__login a {
  width: fit-content;
  color: #ff9a42;
  font-weight: 800;
}

.wizard-intro__login a i {
  margin-left: 7px;
}

.wizard-intro__contact {
  margin-top: 18px;
}

.registration-wizard-section .register-background {
  padding: 9px;
  border-color: rgba(226, 237, 255, 0.76);
  border-radius: 26px;
  background: rgba(239, 246, 255, 0.36);
  box-shadow: 0 30px 70px rgba(1, 16, 48, 0.3);
}

.registration-wizard-section .register-form-container {
  padding: 0;
  overflow: hidden;
  border-radius: 19px;
  background: linear-gradient(145deg, #fff 0%, #f8fbff 100%);
}

.registration-wizard-section .register-title {
  display: none;
}

.registration-wizard-section .register-form {
  gap: 0;
}

.register-wizard__progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 30px 44px 24px;
}

.register-wizard__progress::before {
  position: absolute;
  top: 51px;
  right: 15%;
  left: 15%;
  height: 2px;
  background: #d7e1f0;
  content: "";
}

.register-wizard__progress span {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #70809f;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.register-wizard__progress b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #d6e0ef;
  border-radius: 50%;
  color: #71819e;
  background: #f8fbff;
  font-size: 18px;
}

.register-wizard__progress .is-active,
.register-wizard__progress .is-complete {
  color: #1355ca;
}

.register-wizard__progress .is-active b,
.register-wizard__progress .is-complete b {
  border-color: #1e60d8;
  color: #fff;
  background: linear-gradient(145deg, #296ee5, #154cad);
  box-shadow: 0 9px 17px rgba(37, 100, 222, 0.25);
}

.register-wizard__step {
  display: grid;
  gap: 16px;
  padding: 22px 44px 20px;
  border-top: 1px solid #e0e8f3;
}

/* The wizard script uses the native hidden attribute to swap each group of fields. */
.register-wizard__step[hidden] {
  display: none;
}

.register-wizard__step[data-wizard-step="1"] {
  grid-template-columns: minmax(0, 1fr) 190px;
}

.register-wizard__heading {
  grid-column: 1 / -1;
}

.register-wizard__heading h3 {
  margin: 0 0 6px;
  color: var(--primary-strong);
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.register-wizard__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.register-wizard__step[data-wizard-step="1"] .register-wizard__fields {
  grid-column: 1;
}

.wizard-field {
  display: block;
  color: var(--primary-strong);
  font-size: 13px;
  font-weight: 800;
}

.wizard-field--full,
.register-wizard__fields > .field-message,
.register-wizard__fields > .password-requirements {
  grid-column: 1 / -1;
}

.wizard-field em {
  color: #e35a20;
  font-style: normal;
}

.wizard-field small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.wizard-field > .field-message {
  display: block;
  min-height: 0;
  margin-top: 4px;
  color: #d94f28;
}

.wizard-field input,
.wizard-field select {
  min-height: 52px !important;
  display: block;
  margin-top: 6px;
  padding: 12px 14px !important;
  border-radius: 13px !important;
  background: #fbfdff !important;
}

.wizard-field .password-container {
  display: block;
  width: 100%;
  margin-top: 6px;
}

.register-wizard__step #divGoogleButton {
  display: none;
}

.register-wizard__google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 44px 14px;
  color: #687b9c;
  font-size: 12px;
  font-weight: 600;
}

.register-wizard__google .google-register {
  display: inline-flex;
  width: auto;
  min-height: 40px;
  margin: 0;
  padding: 0 17px;
  border-radius: 11px;
  box-shadow: 0 5px 14px rgba(25, 55, 111, 0.1);
  font-size: 13px;
}

.register-wizard__google .google-register i {
  margin-right: 9px;
  color: #4285f4;
  font-size: 17px;
}

.wizard-security-card {
  display: flex;
  grid-column: 2;
  grid-row: 2;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  border: 1px solid #cfdef6;
  border-radius: 18px;
  color: #476184;
  background: linear-gradient(145deg, #f8fbff, #edf4ff);
  text-align: center;
}

.wizard-security-card > i {
  display: grid;
  width: 70px;
  height: 82px;
  place-items: center;
  clip-path: polygon(50% 0, 94% 16%, 88% 66%, 50% 100%, 12% 66%, 6% 16%);
  color: #fff;
  background: linear-gradient(145deg, #4f8ff1, #164eb7);
  box-shadow: 0 14px 22px rgba(39, 91, 191, 0.2);
  font-size: 28px;
}

.wizard-security-card strong {
  margin-top: 17px;
  color: var(--primary-strong);
  font-size: 14px;
}

.wizard-security-card p {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

.registration-wizard-section .password-requirements {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 10px;
  line-height: 1.35;
}

.registration-wizard-section .password-requirements li {
  padding-left: 14px;
  position: relative;
}

.registration-wizard-section .password-requirements li::before {
  position: absolute;
  left: 0;
  color: #2b6bdb;
  content: "•";
}

.register-wizard__actions {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 14px;
  padding: 16px 44px;
  border-top: 1px solid #dde6f1;
  background: rgba(249, 252, 255, 0.86);
}

.register-wizard__next,
.register-wizard__back,
.register-wizard__actions .register-button {
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

.register-wizard__next,
.register-wizard__actions .register-button {
  color: #fff;
  background: linear-gradient(135deg, #f36d00, #ff902c);
  box-shadow: 0 10px 18px rgba(245, 108, 0, 0.25);
}

.register-wizard__next i {
  margin-left: 10px;
}

.register-wizard__back {
  color: #486184;
  background: #edf3fc;
}

.register-wizard__actions > span {
  margin-left: auto;
  color: #7383a0;
  font-size: 13px;
}

.register-wizard__actions > span b {
  color: var(--primary-strong);
}

.register-wizard__actions [hidden] {
  display: none !important;
}

/* Keep this marker ASCII-safe so it renders correctly in every encoding. */
.registration-wizard-section .password-requirements li::before {
  content: "\\2022";
}

.registration-wizard-section .password-requirements {
  grid-template-columns: 1fr;
  gap: 7px;
}

.registration-wizard-section .password-requirements li,
.registration-wizard-section .password-requirements li[style*="red"],
.registration-wizard-section .password-requirements li[style*="lightgreen"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid #dce6f6;
  border-radius: 9px;
  color: #6d7f9f !important;
  background: #f7faff;
  font-size: 11px;
  font-weight: 700;
}

.registration-wizard-section .password-requirements li::before {
  display: none;
}

.registration-wizard-section .password-requirements li > i {
  display: grid;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #92a2bb;
  background: #e6edf8;
  font-size: 8px;
}

.registration-wizard-section .password-requirements li[style*="red"] {
  border-color: rgba(229, 91, 65, 0.24);
  color: #aa4c3f !important;
  background: #fff7f5;
}

.registration-wizard-section .password-requirements li[style*="red"] > i {
  color: #d7624d;
  background: #ffe0da;
}

.registration-wizard-section .password-requirements li[style*="lightgreen"] {
  border-color: rgba(42, 177, 106, 0.24);
  color: #187c4a !important;
  background: #f1fbf5;
}

.registration-wizard-section .password-requirements li[style*="lightgreen"] > i {
  color: #fff;
  background: #2aad6a;
}

@keyframes wizard-stars {
  0%,
  100% {
    opacity: 0.38;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-8px);
  }
}

@media (max-width: 1100px) {
  .registration-wizard-section .register-layout {
    grid-template-columns: 1fr;
  }

  .wizard-intro {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .registration-wizard-section .register-layout {
    gap: 34px;
  }

  .wizard-intro__benefits li {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .wizard-intro__benefits li > i {
    width: 52px;
    height: 52px;
    font-size: 21px;
  }

  .register-wizard__progress {
    gap: 6px;
    padding: 24px 16px 20px;
  }

  .register-wizard__progress::before {
    right: 18%;
    left: 18%;
  }

  .register-wizard__progress span {
    font-size: 10px;
  }

  .register-wizard__progress b {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .register-wizard__step,
  .register-wizard__step[data-wizard-step="1"] {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 18px;
  }

  .register-wizard__fields,
  .register-wizard__step[data-wizard-step="1"] .register-wizard__fields {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .wizard-security-card {
    grid-column: 1;
    grid-row: auto;
    min-height: 0;
  }

  .registration-wizard-section .password-requirements {
    grid-template-columns: 1fr;
  }

  .register-wizard__actions {
    flex-wrap: wrap;
    padding: 16px 18px;
  }

  .register-wizard__google {
    flex-direction: column;
    gap: 7px;
    padding: 12px 18px;
  }

  .register-wizard__next,
  .register-wizard__actions .register-button {
    flex: 1;
  }

  .register-wizard__actions > span {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
}

.verification-container,
#step2,
.registro-container {
  padding: 42px 20px 0;
}

.registration-wizard-section.hidden {
  display: block !important;
}

.registration-wizard-section.hidden .register-layout {
  display: none;
}

.registration-wizard-section > .verification-container,
.registration-wizard-section > #step2,
.registration-wizard-section > .registro-container {
  position: relative;
  z-index: 2;
}

.verification-shell,
.success-shell {
  width: min(700px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 32px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.verification-wizard__progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 26px;
  color: #8493ad;
  font-size: 12px;
  font-weight: 800;
}

.verification-wizard__progress span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.verification-wizard__progress b,
.verification-wizard__progress .is-complete i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #d3e0f3;
  border-radius: 50%;
  font-size: 12px;
}

.verification-wizard__progress .is-active,
.verification-wizard__progress .is-complete {
  color: #1956c6;
}

.verification-wizard__progress .is-active b,
.verification-wizard__progress .is-complete i {
  border-color: #2267df;
  color: #fff;
  background: linear-gradient(145deg, #2d72ea, #164caf);
  box-shadow: 0 6px 13px rgba(31, 91, 204, 0.22);
}

.verification-shell h2,
.success-shell h2 {
  margin-top: 0;
}

.verification-copy {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.65;
}

.verification-methods {
  display: grid;
  gap: 14px;
}

.method-option {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 22px;
  gap: 14px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(10, 47, 120, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, #f8fbff, #f1f6ff);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.method-option > i:first-child {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, #2f73e7, #1550b9);
  box-shadow: 0 8px 15px rgba(36, 95, 203, 0.2);
  font-size: 19px;
}

.method-option:nth-child(2) > i:first-child {
  background: linear-gradient(145deg, #37c87b, #159b59);
}

.method-option:hover {
  transform: translateY(-3px);
  border-color: rgba(42, 116, 239, 0.38);
  background: #fff;
  box-shadow: 0 16px 26px rgba(25, 73, 154, 0.12);
}

.method-option__arrow {
  color: #6f83a7;
  transition: transform 0.2s ease, color 0.2s ease;
}

.method-option:hover .method-option__arrow {
  transform: translateX(4px);
  color: #1c5fd1;
}

.method-option strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-strong);
  font-size: 18px;
}

.method-option p,
.success-shell p {
  margin: 0;
  line-height: 1.65;
}

.otp-entry {
  position: relative;
  width: 100%;
}

.otp-entry.is-manual-ready .code-box {
  border-color: rgba(10, 47, 120, 0.28);
  background: #ffffff;
}

.otp-autofill-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.01;
  border: 0;
  padding: 0;
  margin: 0;
  z-index: 2;
  background: transparent;
  color: transparent;
  caret-color: transparent;
}

.otp-boxes {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.code-box {
  width: 100%;
  min-height: 64px;
  border: 1px solid rgba(10, 47, 120, 0.12);
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 800;
  background: #f8fbff;
  color: var(--primary-strong);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.otp-entry:focus-within .code-box {
  border-color: rgba(10, 47, 120, 0.22);
}

.code-box.is-active {
  border-color: rgba(10, 47, 120, 0.42);
  box-shadow: 0 0 0 4px rgba(10, 47, 120, 0.08);
  background: #ffffff;
}

.code-box.is-filled {
  background: #ffffff;
}

.otp-manual-hint {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 14px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.otp-manual-button {
  border: 0;
  background: transparent;
  color: var(--primary-strong);
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.verification-timer {
  margin: 18px 0 22px;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.verify-button {
  width: 100%;
}

.verify-button i,
.secondary-action i {
  margin-left: 8px;
}

.secondary-action i {
  margin-right: 8px;
  margin-left: 0;
}

.resend-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.secondary-action {
  width: 100%;
  color: var(--primary-strong);
  background: var(--surface-soft);
  border: 1px solid rgba(10, 47, 120, 0.08);
}

.registro-container {
  padding-bottom: 80px;
}

.success-shell {
  position: relative;
  overflow: hidden;
  max-width: 760px;
  padding: 46px 42px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 50% 110%, rgba(255, 142, 38, 0.2), transparent 45%),
    linear-gradient(145deg, #fff, #f5f9ff);
  text-align: center;
}

.success-shell::before {
  position: absolute;
  top: -70px;
  right: -55px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(47, 113, 231, 0.08);
  content: "";
}

.success-shell__icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #31c977, #149e57);
  box-shadow: 0 14px 26px rgba(23, 160, 90, 0.25);
  font-size: 30px;
}

.success-shell h2 {
  margin-bottom: 10px;
  font-size: clamp(34px, 4vw, 50px);
}

.success-shell p {
  max-width: 610px;
  margin: 0 auto 26px;
  color: var(--muted);
}

.success-shell .buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.success-shell .buttonsy {
  min-width: 0;
  gap: 8px;
  border-radius: 14px;
}

.success-shell .section-kicker {
  justify-content: center;
}

.buttonsy {
  min-width: 190px;
  text-transform: none;
}

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

.faq-panel {
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 32px;
  background:
    radial-gradient(circle at 97% 55%, rgba(50, 117, 232, 0.12) 1px, transparent 2px) 0 0 / 18px 18px,
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 255, 0.9));
  box-shadow: 0 24px 54px rgba(23, 62, 133, 0.1);
}

.faq-panel .faq-grid {
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.faq-heading h2 {
  max-width: 520px;
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.08;
}

.faq-heading > p {
  max-width: 480px;
  font-size: 18px;
  line-height: 1.6;
}

.faq-help-card {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  max-width: 520px;
  margin-top: 56px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 34px rgba(31, 74, 148, 0.1);
}

.faq-help-card > i {
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  border-radius: 50%;
  color: #2165da;
  background: linear-gradient(145deg, #e7f0ff, #f8fbff);
  font-size: 36px;
}

.faq-help-card h3 {
  margin: 0;
  color: var(--primary-strong);
  font-size: 19px;
}

.faq-help-card p {
  margin: 7px 0 15px;
  color: var(--muted);
  line-height: 1.5;
}

.faq-help-card a {
  color: #1d5dda;
  font-weight: 800;
}

.faq-help-card a i {
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.faq-help-card a:hover i {
  transform: translateX(4px);
}

.faq-list details {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(28, 70, 145, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 24px rgba(33, 73, 146, 0.07);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.faq-list details:hover {
  transform: translateY(-2px);
  border-color: rgba(40, 105, 224, 0.22);
  box-shadow: 0 16px 28px rgba(33, 73, 146, 0.12);
}

.faq-list details[open] {
  border-color: rgba(255, 122, 34, 0.58);
  background: linear-gradient(145deg, #fff, #fffaf7);
  box-shadow: 0 18px 32px rgba(228, 105, 25, 0.12);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 25px 30px;
  cursor: pointer;
  list-style: none;
  color: var(--primary-strong);
  font-size: 19px;
  font-weight: 800;
}

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

.faq-list summary > i {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #e1e8f3;
  border-radius: 50%;
  color: #203d70;
  transition: transform 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.faq-list details[open] summary > i {
  transform: rotate(180deg);
  border-color: #ff7b24;
  color: #f06c14;
}

.faq-answer {
  padding: 0 30px 28px;
}

.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.faq-perks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.faq-perks li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px;
  border-radius: 12px;
  color: var(--primary-strong);
  background: #fff5ed;
  font-size: 13px;
  font-weight: 700;
}

.faq-perks i {
  color: #f4781c;
  font-size: 18px;
}

.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 120;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 14px 28px rgba(11, 122, 66, 0.34);
  font-size: 31px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 34px rgba(11, 122, 66, 0.42);
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 70px;
  width: max-content;
  padding: 9px 12px;
  border-radius: 10px;
  color: #fff;
  background: #10264f;
  box-shadow: 0 8px 17px rgba(3, 20, 55, 0.2);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-float:hover .whatsapp-float__tooltip,
.whatsapp-float:focus-visible .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1100px) {
  .faq-panel .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-help-card {
    margin-top: 34px;
  }
}

@media (max-width: 760px) {
  .faq-panel {
    padding: 26px 18px;
    border-radius: 25px;
  }

  .faq-heading h2 {
    font-size: 38px;
  }

  .faq-heading > p {
    font-size: 16px;
  }

  .faq-help-card {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 14px;
    padding: 20px;
  }

  .faq-help-card > i {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .faq-list summary {
    padding: 20px;
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }

  .faq-list p {
    font-size: 15px;
  }

  .faq-perks {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
}

.contact-band {
  padding: 88px 0;
  background: linear-gradient(135deg, #071c43, #0a2f78);
}

.contact-panel {
  display: grid;
  gap: 14px;
}

.contact-panel a,
.contact-panel span {
  color: var(--primary-strong);
  font-weight: 700;
}

.contact-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 75%, rgba(36, 112, 239, 0.28), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(40, 107, 218, 0.18), transparent 27%),
    linear-gradient(135deg, #041838, #082d70 58%, #0d438f);
}

.contact-band::before {
  position: absolute;
  top: 10%;
  right: -6%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(110, 167, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(78, 141, 237, 0.04), 0 0 0 92px rgba(78, 141, 237, 0.03);
  content: "";
}

.contact-support-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(290px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.contact-support-copy h2 {
  margin: 16px 0 14px;
  color: #fff;
  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.contact-support-copy > p {
  max-width: 480px;
  margin: 0;
  color: rgba(237, 245, 255, 0.78);
  font-size: 16px;
  line-height: 1.55;
}

.contact-support-points {
  display: grid;
  gap: 17px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-support-points li {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  color: rgba(235, 244, 255, 0.8);
  font-size: 13px;
  line-height: 1.45;
}

.contact-support-points li > i {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(117, 171, 255, 0.23);
  border-radius: 50%;
  color: #ff8a29;
  background: rgba(13, 54, 129, 0.62);
  font-size: 20px;
}

.contact-support-points strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 14px;
}

.contact-agent-card {
  position: relative;
  display: grid;
  min-height: 190px;
  grid-template-columns: 48% 52%;
  overflow: hidden;
  margin: 28px 0 0;
  border: 1px solid rgba(159, 197, 255, 0.18);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(20, 71, 145, 0.32));
}

.contact-agent-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 35%, rgba(2, 24, 69, 0.22));
  content: "";
  pointer-events: none;
}

.contact-agent-card img {
  position: absolute;
  bottom: 0;
  left: -6px;
  z-index: 1;
  width: 56%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
}

.contact-agent-card figcaption {
  position: relative;
  z-index: 2;
  grid-column: 2;
  align-self: center;
  padding: 20px 16px 20px 0;
  color: rgba(235, 244, 255, 0.75);
  font-size: 12px;
  line-height: 1.45;
}

.contact-agent-card strong,
.contact-agent-card span,
.contact-agent-card em {
  display: block;
}

.contact-agent-card strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 14px;
}

.contact-agent-card em {
  margin-top: 14px;
  color: #ff9a42;
  font-size: 14px;
  font-weight: 700;
}

.contact-agent-card em i {
  margin-right: 5px;
}

.contact-support-right {
  display: grid;
  gap: 14px;
}

.contact-support-panel {
  padding: 8px 28px 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 48px rgba(2, 20, 60, 0.26);
}

.contact-channel {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #e6edf6;
}

.contact-channel > i {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 50%;
  color: #ff7b22;
  background: #fff4eb;
  font-size: 27px;
}

.contact-channel--whatsapp > i {
  color: #20b866;
  background: #effbf4;
}

.contact-channel--email > i {
  color: #2767df;
  background: #eef4ff;
}

.contact-channel span,
.contact-channel strong,
.contact-channel small {
  display: block;
}

.contact-channel span {
  margin-bottom: 5px;
  color: #f27116;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-channel--whatsapp span {
  color: #24a85f;
}

.contact-channel--email span {
  color: #2162d8;
}

.contact-channel strong {
  color: var(--primary-strong);
  font-size: 17px;
}

.contact-channel small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.contact-channel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #fd8132;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #ff6e10, #ff982e);
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.contact-channel--whatsapp a {
  border-color: #51c97b;
  color: #209457;
  background: #fff;
}

.contact-channel--email a {
  border-color: #3778e8;
  color: #2365dc;
  background: #fff;
}

.contact-channel a:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 16px rgba(224, 96, 19, 0.18);
}

.contact-location {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
  padding: 16px;
  border-radius: 14px;
  color: #5d7090;
  background: #eff4ff;
  font-size: 12px;
}

.contact-location > i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #1f4d96;
  background: #dce8fb;
  font-size: 21px;
}

.contact-location strong {
  display: block;
  color: var(--primary-strong);
  font-size: 13px;
}

.contact-hours {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 16px 21px;
  border: 1px solid rgba(167, 201, 255, 0.18);
  border-radius: 17px;
  color: rgba(233, 243, 255, 0.75);
  background: rgba(24, 77, 158, 0.24);
  font-size: 12px;
}

.contact-hours > i {
  color: #fff;
  font-size: 22px;
}

.contact-hours strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 13px;
}

.contact-hours b {
  margin: 0 6px;
  color: #72a6f8;
}

@media (max-width: 1000px) {
  .contact-support-grid {
    grid-template-columns: 1fr;
  }

  .contact-support-copy,
  .contact-agent-card {
    max-width: 650px;
  }
}

@media (max-width: 640px) {
  .contact-support-copy h2 {
    font-size: 43px;
  }

  .contact-channel {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 12px;
  }

  .contact-channel > i {
    width: 50px;
    height: 50px;
    font-size: 21px;
  }

  .contact-channel a {
    grid-column: 1 / -1;
    width: 100%;
  }

  .contact-support-panel {
    padding: 6px 18px 16px;
  }

  .contact-hours {
    align-items: flex-start;
  }

  .contact-hours b {
    display: none;
  }
}

.site-footer {
  padding: 34px 0 42px;
  background: #04122f;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand p {
  max-width: 600px;
  margin: 0;
  color: rgba(233, 241, 255, 0.7);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-ready [data-reveal].is-visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 140;
}

.toast-inner {
  min-width: 280px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 18px;
  color: #fff;
  background: #12284f;
  box-shadow: var(--shadow);
}

.toast-inner button {
  margin-left: auto;
  border: 0;
  color: #fff;
  background: transparent;
  font-weight: 800;
}

.modal-error {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
}

.modal-error.show {
  display: block;
}

.modal-error__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 18, 47, 0.58);
  backdrop-filter: blur(6px);
}

.modal-error__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100vw - 32px));
  display: flex;
  max-height: min(72vh, 680px);
  flex-direction: column;
  margin: 14vh auto 0;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.modal-error__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.modal-error__dialog h3 {
  margin: 0 0 12px;
  color: var(--primary-strong);
  font-family: "Poppins", sans-serif;
}

.modal-error__header h3 {
  margin: 0;
}

.modal-error__dismiss {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #dbe5f3;
  border-radius: 11px;
  color: #526b92;
  background: #f7faff;
  cursor: pointer;
  transition: transform 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.modal-error__dismiss:hover {
  transform: rotate(90deg);
  color: #fff;
  background: #e35a20;
}

.modal-error__dialog p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

#modalErrorContent {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 8px;
}

#modalErrorClose {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  margin-top: 20px;
  padding: 14px 20px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: var(--primary);
  font-weight: 800;
}

.global-loader {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(4, 18, 47, 0.52);
  backdrop-filter: blur(6px);
}

.loader-card {
  width: min(360px, calc(100vw - 32px));
  padding: 28px;
  text-align: center;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.loader-card strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--primary-strong);
}

.loader-card p {
  margin: 0;
  color: var(--muted);
}

.loader-spinner {
  width: 54px;
  height: 54px;
  display: inline-block;
  border: 4px solid rgba(10, 47, 120, 0.16);
  border-top-color: var(--accent);
  border-radius: 999px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1100px) {
  .register-layout,
  .process-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 0;
  }

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

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

  .hero-visual {
    min-height: 520px;
  }

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

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

  .benefits-showcase {
    grid-template-columns: 1fr;
  }

  .benefits-primary {
    width: auto;
    min-height: 390px;
    margin-left: 0;
    padding: 34px;
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
  }

  .coverage-layout {
    grid-template-columns: 1fr;
  }

  .coverage-cta {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  }

  .coverage-cta__visual {
    height: auto;
  }

  .coverage-cta__content {
    padding: 24px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    height: auto;
    max-height: calc(100dvh - 92px);
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    border: 1px solid rgba(8, 38, 92, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(8, 38, 92, 0.14);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-actions {
    display: none;
  }

  .nav-item {
    width: 100%;
  }

  .main-nav .nav-item {
    height: auto;
    display: block;
    flex: 0 0 auto;
  }

  .main-nav .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 11px 0;
    color: #193059;
  }

  .main-nav .nav-link::after { bottom: 4px; }

  .dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    padding: 8px;
    border-color: rgba(8, 38, 92, 0.08);
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    pointer-events: auto;
    box-shadow: none;
    background: #f6f9ff;
  }

  .nav-item.is-open .dropdown-menu {
    display: grid;
  }

  .dropdown-menu a {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .dropdown-icon {
    width: 34px;
    height: 34px;
  }

  .mobile-nav-actions {
    margin-top: 8px;
    padding: 12px 4px 2px;
    display: grid;
    gap: 7px;
    border-top: 1px solid #dfe7f1;
  }

  .mobile-nav-action {
    min-height: 44px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    color: #08265c;
    font-size: 14px;
    font-weight: 700;
    background: #fff;
  }

  .mobile-nav-action--primary {
    justify-content: center;
    color: #fff;
    background: #f26700;
    box-shadow: 0 10px 22px rgba(242, 103, 0, 0.2);
  }

  .hero-card-main {
    position: relative;
    inset: auto;
  }

  .floating-card-left,
  .floating-card-right,
  .floating-card-top,
  .floating-card-bottom {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 16px;
  }

  .hero-visual {
    min-height: auto;
  }

  .dashboard-preview {
    grid-template-columns: 1fr;
  }

  .dashboard-preview__sidebar {
    border-right: 0;
    border-bottom: 3px solid #ff7010;
  }

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

  .hero-shotboard {
    min-height: auto;
  }

  .hero-shotboard__desktop img {
    height: auto;
  }

  .hero-shotboard__mobile {
    right: 12px;
    bottom: 12px;
    width: 90px;
  }
}

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

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-spark--one { top: 12%; right: 7%; }
  .hero-spark--two { right: 12%; bottom: 18%; }
  .hero-spark--three { right: 31%; bottom: 8%; }

  .hero-visual {
    min-height: 290px;
    overflow: visible;
  }

  .floating-card-left,
  .floating-card-right,
  .floating-card-top,
  .floating-card-bottom {
    position: absolute;
    z-index: 4;
    display: grid;
    width: 48px;
    height: 48px;
    padding: 5px;
    margin: 0;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 12px 24px rgba(5, 29, 76, 0.28);
  }

  .floating-card > div { display: none; }

  .floating-card span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
  }

  .floating-card-left { top: 12px; left: 2px; }
  .floating-card-top { top: 12px; right: 2px; }
  .floating-card-bottom { bottom: 20px; left: 4px; }
  .floating-card-right { right: 4px; bottom: 20px; }

  .section,
  .register-section,
  .contact-band {
    padding: 74px 0;
  }

  .hero {
    padding-top: 38px;
  }

  .proof-band {
    margin-top: 0;
  }

  .proof-grid {
    gap: 0;
    min-height: auto;
    padding: 0;
  }

  .proof-grid::before {
    top: 34px;
    bottom: 34px;
    left: 35px;
    width: 2px;
    height: auto;
  }

  .proof-step {
    grid-template-rows: 1fr;
    grid-template-columns: 70px minmax(0, 1fr);
    min-height: 0;
    padding: 12px 0;
    justify-items: start;
  }

  .proof-step__point {
    grid-row: 1;
    grid-column: 1;
    width: 70px;
    height: 70px;
    font-size: 25px;
  }

  .proof-step__content,
  .proof-step:nth-child(odd) .proof-step__content,
  .proof-step:nth-child(even) .proof-step__content {
    grid-row: 1;
    grid-column: 2;
    width: 100%;
    margin: 0;
    text-align: left;
  }

  .benefits-heading {
    margin-bottom: 30px;
  }

  .benefits-secondary,
  .benefits-secondary__bottom {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .benefit-control {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefits-primary {
    min-height: 400px;
    padding: 28px;
  }

  .benefit-orbit--phone {
    right: 28px;
  }

  .benefit-orbit--card {
    right: 52px;
  }

  .benefit-mini-table {
    width: 100%;
  }

  .coverage-heading {
    margin-bottom: 28px;
  }

  .coverage-logos--eight,
  .coverage-logos--more {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .coverage-tier {
    padding: 15px;
  }

  .coverage-cta {
    display: block;
  }

  .coverage-cta__visual {
    height: 160px;
  }

  .coverage-cta h3 {
    font-size: 22px;
  }

  .catalog-heading {
    margin-bottom: 30px;
  }

  .catalog-product {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 17px;
    padding: 20px;
    border-radius: 22px;
  }

  .catalog-product__icon {
    width: 82px;
    height: 82px;
    border-radius: 20px;
    font-size: 34px;
  }

  .catalog-product h3 {
    font-size: 20px;
  }

  .catalog-product p {
    font-size: 14px;
  }

  .catalog-hub {
    width: 200px;
    height: 200px;
  }

  .catalog-hub__icon {
    width: 64px;
    height: 56px;
    font-size: 26px;
  }

  .catalog-hub strong {
    font-size: 22px;
  }

  .catalog-main-cta {
    width: 100%;
    min-width: 0;
    margin-top: 26px;
  }

  .proof-grid,
  .benefits-grid,
  .products-grid,
  .register-row,
  .icon-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .product-media {
    width: 88px;
    height: 88px;
  }

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

  .otp-boxes {
    gap: 8px;
  }

  .code-box {
    min-height: 54px;
    font-size: 22px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

/* Keep the dashboard beside the copy in a zoomed desktop or tablet viewport. */
@media (min-width: 600px) and (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr) !important;
  }

  .hero-copy {
    padding-bottom: 48px;
  }

  .hero-actions-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

/* Desktop hero: anchor the product preview to the right instead of relying on the
   content flow, so the visual never drops below the headline at browser zoom. */
@media (min-width: 901px) {
  .hero {
    overflow: hidden;
  }

  .hero-grid {
    display: block;
    min-height: 650px;
  }

  .hero-copy {
    width: 49%;
    padding: 86px 0 74px;
  }

  .hero-visual {
    position: absolute;
    /* Align the dashboard with the headline, not with the full hero height. */
    top: 200px;
    right: 5%;
    width: 45%;
    min-height: 440px;
    transform: none;
  }

  .hero-card-main {
    left: 24px;
    right: 0;
    padding: 13px;
  }

  .floating-card {
    width: 190px;
    gap: 10px;
    padding: 10px 11px;
    border-radius: 17px;
  }

  .floating-card span {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .floating-card strong {
    font-size: 13px;
  }

  .floating-card small {
    font-size: 10px;
  }

  .floating-card-left,
  .floating-card-bottom {
    left: -12px;
  }

  .floating-card-right,
  .floating-card-top {
    right: -12px;
  }
}
