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

:root {
  --primary: #08265c;
  --primary-light: #123a78;
  --secondary: #f26700;
  --secondary-dark: #d95700;
  --tertiary: #00a86b;
  --ink: #0c1d37;
  --muted: #60708a;
  --line: #dfe7f1;
  --surface: #ffffff;
  --soft-blue: #f2f7fd;
  --shadow: 0 24px 70px rgba(8, 38, 92, .16);
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.section-index {
  font-size: clamp(12px, 1vw, 13px);
  line-height: 1.45;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--primary);
  transform: translateY(-150%);

  &:focus {
    transform: translateY(0);
  }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, border-color .25s ease;

  &.is-scrolled {
    border-color: rgba(8, 38, 92, .08);
    box-shadow: 0 10px 30px rgba(8, 38, 92, .07);
  }
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.6px;

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

  .brand-fallback {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    &[hidden] { display: none; }
  }

  .brand-name {
    color: var(--primary);

    span { color: var(--secondary); }
  }

  .brand-mark {
    position: relative;
    width: 38px;
    height: 38px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--primary);
    box-shadow: 0 7px 15px rgba(8, 38, 92, .2);

    .brand-bolt {
      position: absolute;
      top: 8px;
      left: 14px;
      width: 10px;
      height: 21px;
      background: var(--secondary);
      clip-path: polygon(52% 0, 100% 0, 69% 39%, 100% 39%, 21% 100%, 37% 55%, 0 55%);
    }

    .brand-signal {
      position: absolute;
      border: 2px solid rgba(255, 255, 255, .4);
      border-radius: 50%;

      &.brand-signal--one {
        inset: 5px;
      }

      &.brand-signal--two {
        inset: -4px;
      }
    }
  }
}

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

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

    &.nav-item--dropdown {
      &.is-open {
        .dropdown-toggle {
          color: var(--primary);

          .chevron { transform: rotate(180deg); }
        }

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

  .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;

    &::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 19px;
      width: 0;
      height: 2px;
      border-radius: 5px;
      background: var(--secondary);
      transform: translateX(-50%);
      transition: width .2s ease;
    }

    &:hover,
    &.active {
      color: var(--primary);

      &::after {
        width: 20px;
      }
    }
  }

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

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

  .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, .1);
    border-radius: 14px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 22px 55px rgba(8, 38, 92, .16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;

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

    a {
      padding: 10px;
      display: grid;
      grid-template-columns: 38px 1fr;
      align-items: center;
      gap: 11px;
      border-radius: 9px;
      color: var(--ink);
      transition: background .18s ease, color .18s ease;

      &:hover,
      &:focus-visible {
        color: var(--primary);
        background: var(--soft-blue);
        outline: none;

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

      & > span:last-child {
        min-width: 0;
        display: grid;
        gap: 2px;
      }

      strong {
        font-size: 13px;
        font-weight: 750;
      }

      small {
        overflow: hidden;
        color: #7b8799;
        font-size: 11px;
        white-space: nowrap;
        text-overflow: ellipsis;
      }

      .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, var(--primary)) 12%, transparent);
        border-radius: 11px 5px 11px 5px;
        color: var(--icon-color, var(--primary));
        background: var(--icon-bg, #edf3fb);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 6px 14px rgba(8, 38, 92, .08);
        font-size: 14px;
        font-weight: 800;
        transition: color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
      }
    }
  }
}

@media (hover: hover) and (min-width: 1051px) {
  .main-nav .nav-item--dropdown:hover {
    .dropdown-toggle {
      color: var(--primary);

      .chevron { transform: rotate(180deg); }
    }

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

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

#plataforma-menu {
  --icon-color: #175aa0;
  --icon-bg: #eaf3fd;
}

#ayuda-menu {
  --icon-color: #008d5b;
  --icon-bg: #e8f8f1;
}

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

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

    &::after {
      top: auto;
      bottom: 10px;
      width: 4px;
      height: 2px;
      border-radius: 2px;
      background: currentColor;
      transform: translateX(-50%);
    }
  }

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

    &::after {
      width: 9px;
      height: 9px;
      background: repeating-linear-gradient(to bottom, currentColor 0 1px, transparent 1px 3px);
    }
  }

  &.icon-pin::before,
  &.icon-question::before,
  &.icon-help::before,
  &.icon-alert::before {
    position: static;
    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);
    }

    &::after {
      top: 12px;
      left: 12px;
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: currentColor;
      transform: none;
    }
  }

  &.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 {
      width: 18px;
      height: 14px;
      background: linear-gradient(currentColor, currentColor) 0 2px / 18px 2px no-repeat,
                  linear-gradient(currentColor, currentColor) 0 7px / 18px 2px no-repeat,
                  linear-gradient(currentColor, currentColor) 0 12px / 18px 2px no-repeat;
    }

    &::after {
      top: 10px;
      left: 12px;
      width: 5px;
      height: 5px;
      border: 1.5px solid var(--icon-bg, #fff);
      border-radius: 50%;
      background: currentColor;
      box-shadow: 8px 5px 0 -1px currentColor, 2px 10px 0 -1px currentColor;
      transform: none;
    }
  }

  &.icon-growth {
    &::before {
      width: 17px;
      height: 11px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: translate(-50%, -50%) skewY(-28deg);
    }

    &::after {
      top: 10px;
      right: 10px;
      left: auto;
      width: 7px;
      height: 7px;
      border-top: 2px solid currentColor;
      border-right: 2px solid currentColor;
      transform: 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%);
    }

    &::after {
      top: 8px;
      width: 11px;
      height: 11px;
      border: 2px solid currentColor;
      border-bottom: 0;
      border-radius: 7px 7px 0 0;
      transform: translateX(-50%);
    }
  }

  &.icon-status {
    &::before {
      width: 10px;
      height: 10px;
      border: 2px solid #fff;
      border-radius: 50%;
      background: currentColor;
      box-shadow: 0 0 0 5px color-mix(in srgb, currentColor 16%, transparent);
    }

    &::after {
      width: 20px;
      height: 20px;
      border: 1px solid currentColor;
      border-radius: 50%;
      animation: status-pulse 2s ease-out infinite;
    }
  }
}

@keyframes status-pulse {
  0% { opacity: .7; transform: scale(.55); }
  100% { opacity: 0; transform: scale(1.35); }
}

.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: var(--primary);
    font-size: 12px;
    font-weight: 750;
    transition: color .2s ease, transform .2s ease;

    .android-app-icon {
      width: 22px;
      height: 14px;
      display: block;
      flex: 0 0 auto;
      object-fit: contain;
    }

    &:hover { color: var(--secondary); transform: translateY(-1px); }
    &:active { color: var(--secondary-dark); transform: translateY(0); }
    &:focus-visible { outline: 3px solid rgba(242, 103, 0, .35); outline-offset: 3px; border-radius: 6px; color: var(--secondary); }
  }

  .login-link {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;

    &:hover {
      color: var(--secondary);
    }
  }
}

.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;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 0;
  border-radius: 10px;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;

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

  &:focus-visible {
    outline: 3px solid rgba(242, 103, 0, .35);
    outline-offset: 4px;
  }

  &.button--primary {
    color: #fff;
    background: var(--secondary);
    box-shadow: 0 9px 20px rgba(242, 103, 0, .22);

    &:hover {
      background: var(--secondary-dark);
      box-shadow: 0 12px 27px rgba(242, 103, 0, .3);
    }
  }

  &.button--outline {
    border: 1px solid rgba(8, 38, 92, .18);
    color: var(--primary);
    background: #fff;
    box-shadow: 0 8px 20px rgba(8, 38, 92, .07);

    &:hover {
      border-color: var(--primary);
      background: var(--soft-blue);
      box-shadow: 0 12px 26px rgba(8, 38, 92, .12);
    }
  }

  &.button--small {
    min-height: 43px;
    padding: 0 20px;
    font-size: 14px;
  }

  &.button--large {
    min-height: 56px;
    padding: 0 25px;
    font-size: 16px;
  }
}

:is(.nav-link, .login-link, .text-button, .menu-toggle):focus-visible {
  outline: 3px solid rgba(242, 103, 0, .35);
  outline-offset: 4px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 9px;
  background: var(--soft-blue);

  span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 4px;
    background: var(--primary);
    transition: transform .2s ease, opacity .2s ease;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 145px 0 24px;
  background:
    radial-gradient(circle at 88% 9%, rgba(242, 103, 0, .24), transparent 25%),
    radial-gradient(circle at 48% 106%, rgba(0, 168, 107, .24), transparent 32%),
    conic-gradient(from 215deg at 72% 42%, rgba(255, 255, 255, .065), transparent 20%, rgba(26, 82, 155, .32) 31%, transparent 48%),
    linear-gradient(125deg, #020e24 0%, #08265c 49%, #031839 100%);

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .38;
    background-image:
      linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
      radial-gradient(rgba(255, 255, 255, .3) .7px, transparent .7px);
    background-size: 54px 54px, 54px 54px, 18px 18px;
    mask-image: linear-gradient(to bottom, #000, transparent 92%);
  }

  &::after {
    content: "";
    position: absolute;
    top: -28%;
    left: 53%;
    width: 62%;
    height: 142%;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    box-shadow: 0 0 0 95px rgba(255, 255, 255, .014), 0 0 0 190px rgba(255, 255, 255, .01);
    transform: rotate(-15deg);
    pointer-events: none;
  }

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

    &.hero-glow--one {
      top: 60px;
      right: -100px;
      width: 510px;
      height: 510px;
      background: radial-gradient(circle, rgba(242, 103, 0, .23), transparent 68%);
    }

    &.hero-glow--two {
      top: 380px;
      left: -150px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(0, 168, 107, .16), transparent 70%);
    }
  }

}

.hero-container {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 72px;
}

.hero-copy {
  padding-bottom: 18px;

  h1 {
    max-width: 620px;
    margin: 24px 0 20px;
    color: #fff;
    font-size: clamp(46px, 4.5vw, 68px);
    line-height: 1.02;
    letter-spacing: -3.2px;

    span {
      color: var(--secondary);
      text-shadow: 0 12px 35px rgba(242, 103, 0, .24);
    }
  }

  .hero-description {
    max-width: 570px;
    margin: 0;
    color: #bdc9dc;
    font-size: 17px;
    line-height: 1.7;
  }
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50px;
  color: #e7eef9;
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .7px;

  .eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tertiary);
    box-shadow: 0 0 0 4px rgba(0, 168, 107, .12);
  }
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;

  .button--outline {
    border-color: rgba(255, 255, 255, .24);
    color: #fff;
    background: rgba(255, 255, 255, .08);
    box-shadow: none;
    backdrop-filter: blur(8px);

    &:hover {
      border-color: rgba(255, 255, 255, .45);
      color: #fff;
      background: rgba(255, 255, 255, .14);
    }
  }
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 750;

  &:hover {
    color: var(--secondary);
  }
}

.demo-link {
  width: fit-content;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dce6f5;
  font-size: 14px;
  font-weight: 700;

  &:hover {
    color: var(--secondary);
  }

  &:focus-visible {
    outline: 3px solid rgba(242, 103, 0, .35);
    outline-offset: 4px;
  }
}

.play-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  padding-left: 2px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: var(--secondary);
  background: rgba(255, 255, 255, .1);
  font-size: 10px;
  box-shadow: 0 6px 16px rgba(8, 38, 92, .08);
}

.hero-assurances {
  margin-top: 27px;
  display: flex;
  gap: 20px;
  color: #9eacc1;
  font-size: 12px;
  font-weight: 600;

  span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

  i {
    color: var(--tertiary);
    font-style: normal;
    font-weight: 900;
  }
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 25px 0 58px;

  &::before {
    content: "";
    position: absolute;
    inset: -28px -35px 15px 30px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .015));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
    transform: rotate(3deg);
  }
}

.transaction-stage {
  position: relative;
  z-index: 2;
  min-height: 555px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 44px 18px 52px 26px;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .025));
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 35px 80px rgba(0, 9, 30, .2);

  &::before {
    content: "";
    position: absolute;
    top: 76px;
    right: 54px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(242, 103, 0, .2);
    border-radius: 50%;
    box-shadow: 0 0 0 42px rgba(242, 103, 0, .025), 0 0 0 84px rgba(255, 255, 255, .018);
  }

  &::after {
    content: "";
    position: absolute;
    right: 30px;
    bottom: 20px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(0, 168, 107, .13);
    filter: blur(70px);
  }
}

.stage-heading {
  position: absolute;
  top: 25px;
  left: 31px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aebbd0;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.35px;

  span {
    width: 21px;
    height: 1px;
    background: var(--secondary);
  }
}

.flow-line {
  position: absolute;
  z-index: 2;
  left: 105px;
  width: 105px;
  height: 2px;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(242, 103, 0, .22), var(--secondary));
  box-shadow: 0 0 12px rgba(242, 103, 0, .22);
  transform-origin: left center;

  &::after {
    content: "";
    position: absolute;
    top: -1.5px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px var(--secondary);
    animation: data-flow 2.6s linear infinite;
  }

  &.flow-line--one { top: 151px; transform: rotate(8deg); }
  &.flow-line--two { top: 249px; transform: rotate(-2deg); }
  &.flow-line--three { top: 349px; transform: rotate(-8deg); }
  &.flow-line--four { top: 435px; transform: rotate(-13deg); }
}

.product-node {
  position: absolute;
  z-index: 4;
  width: 155px;
  min-height: 66px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 42px 1fr 7px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 14px 5px 14px 5px;
  color: var(--primary);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 36px rgba(0, 8, 26, .32), inset 0 1px 0 #fff;
  backdrop-filter: blur(12px);

  &.product-node--recargas { top: 108px; left: -27px; }
  &.product-node--servicios { top: 204px; left: -51px; }
  &.product-node--pines { top: 300px; left: -27px; }
  &.product-node--tags { top: 396px; left: -2px; }

  .node-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 9px 4px 9px 4px;
    color: #fff;
    background: linear-gradient(145deg, var(--secondary), #ff8a32);
    font-size: 17px;
    font-weight: 850;
    box-shadow: 0 7px 15px rgba(242, 103, 0, .2);
  }

  & > span:nth-child(2) {
    display: grid;
    gap: 1px;
  }

  small { color: var(--secondary); font-size: 8px; font-weight: 800; letter-spacing: 1px; }
  strong { font-size: 13px; font-weight: 820; letter-spacing: -.15px; }

  & > i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--tertiary);
    box-shadow: 0 0 0 4px rgba(0, 168, 107, .12);
  }
}

.platform-shot {
  position: absolute;
  z-index: 3;
  top: 92px;
  right: -16px;
  width: 470px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 9px 27px 9px 27px;
  background: #fff;
  box-shadow: 0 36px 80px rgba(0, 8, 28, .5), 0 0 0 7px rgba(255, 255, 255, .035);
  transform: none;

  .shot-topbar {
    height: 42px;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    border-bottom: 1px solid #e6ebf3;
    color: #7f8b9e;
    background: #f9fbfd;
    font-size: 9px;
    font-weight: 800;

    & > b {
      display: flex;
      align-items: center;
      gap: 5px;
      color: #25825f;
      font-size: 7px;

      i {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--tertiary);
        box-shadow: 0 0 0 3px rgba(0, 168, 107, .1);
      }
    }
  }

  .shot-dots {
    display: flex;
    gap: 5px;

    i {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #ccd5e2;

      &:first-child { background: var(--secondary); }
      &:last-child { background: var(--tertiary); }
    }
  }

  .shot-viewport {
    position: relative;
    overflow: hidden;
    background: #dbe6f6;

    &::after {
      content: "";
      position: absolute;
      inset: 0;
      border: 1px solid rgba(8, 38, 92, .08);
      pointer-events: none;
    }

    img {
      width: 100%;
      height: auto;
      display: block;
      image-rendering: auto;
    }
  }

}

.platform-mockup {
  min-height: 260px;
  display: grid;
  grid-template-columns: 74px 1fr;
  color: var(--primary);
  background: #d9e6f7;
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
}

.mock-sidebar {
  position: relative;
  min-width: 0;
  padding-bottom: 12px;
  overflow: hidden;
  border-right: 3px solid var(--secondary);
  background: #fff;

  .mock-logo {
    height: 43px;
    display: grid;
    place-content: center;
    color: #fff;
    background: #173f7a;
    font-size: 15px;
    font-weight: 350;
    letter-spacing: -.8px;
    text-align: center;

    .mock-logo-name {
      display: inline-flex;
      justify-content: center;
      white-space: nowrap;

      b {
        color: var(--secondary);
        font-weight: 700;
      }
    }

    small { display: block; color: rgba(255, 255, 255, .65); font-size: 3.5px; letter-spacing: .15px; }
  }

  .mock-user {
    height: 19px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    background: var(--secondary);
    font-size: 5px;
    font-weight: 750;

    i { font-style: normal; }
  }

  .mock-subuser {
    height: 18px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    background: #ff7e34;
    font-size: 5px;
    font-weight: 700;

    i { font-style: normal; }
  }

  nav {
    padding: 7px 4px;
    display: grid;
    gap: 3px;

    span {
      min-height: 18px;
      padding: 0 4px;
      display: flex;
      align-items: center;
      gap: 5px;
      border: 1px solid #c9d5e5;
      border-radius: 10px;
      color: var(--primary);
      background: #f9fbfd;
      font-size: 4.2px;
      font-weight: 800;
      text-transform: uppercase;

      &.active {
        border-color: #aabbd1;
        color: var(--primary);
        background: #eef2f7;
      }

      i {
        width: 13px;
        height: 13px;
        display: grid;
        place-items: center;
        flex: 0 0 auto;
        border-radius: 50%;
        color: var(--secondary);
        background: #fff;
        font-size: 5px;
        font-style: normal;
      }
    }
  }

  .mock-version {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    color: #7e8da3;
    font-size: 3px;
    text-align: center;
  }
}

.mock-app {
  min-width: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .07) 0 2px, transparent 3px),
    linear-gradient(145deg, #173e78, #08265c);
  background-size: 25px 25px, auto;
}

.mock-appbar {
  height: 34px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: rgba(3, 22, 54, .38);

  & > span {
    display: flex;
    align-items: baseline;
    gap: 6px;

    small { color: #72e1b5; font-size: 5px; }
    strong { font-size: 10px; }
  }

  & > div {
    display: flex;
    gap: 4px;

    i {
      width: 25px;
      height: 22px;
      display: grid;
      place-items: center;
      border-radius: 5px;
      background: rgba(255, 255, 255, .1);
      font-size: 7px;
      font-style: normal;
    }
  }
}

.mock-workspace {
  height: 226px;
  padding: 7px;
  display: grid;
  grid-template-columns: 1.02fr 1fr 1.55fr;
  gap: 6px;

  section {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 7px;
    background: rgba(230, 239, 250, .97);
    box-shadow: 0 5px 13px rgba(0, 10, 32, .14);
  }

  h3 {
    margin: 0;
    color: var(--primary);
    font-size: 7px;
    text-transform: uppercase;
  }
}

.mock-operators {
  padding: 7px;

  .mock-search {
    height: 21px;
    margin-top: 6px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    color: #8390a3;
    background: #fff;
    font-size: 5px;
    box-shadow: 0 3px 8px rgba(8, 38, 92, .08);

    b { color: var(--secondary); font-size: 10px; }
  }
}

.operator-grid {
  margin-top: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;

  span {
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 3px 8px rgba(8, 38, 92, .1);
    font-size: 8px;
    font-weight: 850;
    font-style: italic;
  }

  .telcel { color: #0870bd; font-size: 11px; }
  .telcel-pack { color: #1b4ba0; font-size: 7px; }
  .telcel-pack small { display: block; font-size: 4px; text-transform: uppercase; }
  .internet { color: #e12c31; }
  .movistar { color: #1295c7; }
  .att { color: #149bd7; }
  .unefon { color: #e4bd00; }
  .virgin { color: #e21b2d; }
  .oui { color: #202020; }
}

.mock-amounts {
  padding: 7px 5px;

  h3 {
    text-align: center;

    small { display: block; color: #4680c1; font-size: 4px; }
  }

  & > div {
    margin-top: 6px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;

    span {
      height: 39px;
      display: grid;
      place-items: center;
      border: 1px solid transparent;
      border-radius: 5px;
      color: var(--secondary);
      background: #fff;
      box-shadow: 0 3px 8px rgba(8, 38, 92, .1);
      font-size: 12px;
      font-weight: 850;

      &.selected {
        border-color: var(--secondary);
        color: #fff;
        background: var(--secondary);
      }
    }
  }
}

.mock-form {
  position: relative;
  padding: 7px 7px 45px;

  .mock-selection {
    height: 31px;
    padding: 0 9px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 3px 8px rgba(8, 38, 92, .1);

    strong { color: #1764a5; font-size: 7px; }
    b { color: var(--secondary); font-size: 14px; }
  }

  label {
    min-height: 31px;
    margin-top: 6px;
    padding: 5px 7px;
    display: grid;
    gap: 3px;
    border: 1px solid #cfd9e7;
    border-radius: 6px;
    color: #76869c;
    background: #fff;
    font-size: 4px;

    span { color: var(--primary); font-size: 7px; font-weight: 700; }
    .money { color: var(--tertiary); font-size: 10px; }
  }

  .mock-balance {
    position: absolute;
    right: 8px;
    bottom: 35px;
    left: 8px;
    padding: 0 8px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 13px;
    color: #fff;
    background: var(--primary);
    font-size: 5px;

    strong { font-size: 7px; }
  }

  button {
    position: absolute;
    right: 14px;
    bottom: 7px;
    left: 14px;
    height: 23px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: var(--secondary);
    font-size: 6px;
    font-weight: 800;
  }
}

@media (min-width: 1051px) {
  .hero-visual {
    width: calc(100% + 72px);
    margin-right: -72px;
  }

  .platform-shot {
    right: 0;
    width: 520px;
  }
}

.terminal-shell {
  position: absolute;
  z-index: 3;
  top: 73px;
  right: 33px;
  width: 374px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 10px 28px 10px 28px;
  background: #fff;
  box-shadow: 0 34px 75px rgba(0, 8, 28, .46), 0 0 0 7px rgba(255, 255, 255, .035);
  transform: rotate(1.25deg);

  .terminal-accent {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--secondary);
  }
}

.terminal-topbar {
  height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e8edf4;

  .terminal-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;

    b {
      width: 26px;
      height: 26px;
      display: grid;
      place-items: center;
      border-radius: 7px 3px 7px 3px;
      color: #fff;
      background: var(--primary);
      font-size: 8px;
    }
  }

  .terminal-online {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #27815f;
    font-size: 7px;
    font-weight: 700;

    i {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--tertiary);
    }
  }
}

.terminal-content {
  padding: 19px 21px 18px;
  color: var(--ink);

  .terminal-step {
    display: flex;
    justify-content: space-between;
    color: #8b97a8;
    font-size: 7px;

    b { color: var(--secondary); }
  }

  .terminal-progress {
    height: 3px;
    margin-top: 6px;
    overflow: hidden;
    border-radius: 10px;
    background: #e8edf4;

    i {
      width: 66%;
      height: 100%;
      display: block;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--secondary), #ff9a4e);
    }
  }

  .terminal-label {
    margin: 15px 0 10px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 820;
  }

  & > button {
    width: 100%;
    min-height: 42px;
    margin-top: 13px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-radius: 8px 3px 8px 3px;
    color: #fff;
    background: var(--secondary);
    font-size: 9px;
    font-weight: 800;

    span {
      padding-left: 12px;
      border-left: 1px solid rgba(255, 255, 255, .28);
      font-size: 8px;
    }
  }

  .terminal-security {
    margin: 9px 0 0;
    color: #8b97a8;
    font-size: 7px;
    text-align: center;

    i { color: var(--tertiary); font-style: normal; }
  }
}

.selected-product {
  padding: 10px;
  display: grid;
  grid-template-columns: 36px 1fr 19px;
  align-items: center;
  gap: 9px;
  border: 1px solid #e5ebf3;
  border-radius: 9px 3px 9px 3px;
  background: #f8fafd;

  .selected-logo {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 8px 3px 8px 3px;
    color: #fff;
    background: #1682d5;
    font-size: 13px;
    font-weight: 850;
  }

  & > span:nth-child(2) { display: grid; gap: 2px; }
  small { color: #8b97a8; font-size: 7px; }
  strong { color: var(--primary); font-size: 9px; }
  & > b { color: var(--tertiary); font-size: 12px; }
}

.terminal-fields {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 8px;

  span {
    padding: 9px 11px;
    display: grid;
    gap: 3px;
    border: 1px solid #e5ebf3;
    border-radius: 7px 2px 7px 2px;
  }

  small { color: #8b97a8; font-size: 7px; }
  strong { color: var(--primary); font-size: 10px; }
}

.operation-ticket {
  position: absolute;
  z-index: 6;
  right: -20px;
  bottom: 31px;
  width: 292px;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 39px 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 168, 107, .25);
  border-radius: 5px 15px 5px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 42px rgba(0, 8, 28, .32);
  animation: ticket-float 5s ease-in-out infinite;

  .ticket-check {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--tertiary);
    box-shadow: 0 7px 17px rgba(0, 168, 107, .22);
    font-weight: 900;
  }

  & > span:nth-child(2) { display: grid; gap: 2px; }
  small { color: var(--tertiary); font-size: 6px; font-weight: 850; letter-spacing: .65px; }
  strong { color: var(--primary); font-size: 10px; }
  em { color: #8b97a8; font-size: 7px; font-style: normal; }
  & > b { align-self: start; color: #9ba7b8; font-size: 6px; }
}

.stage-seal {
  position: absolute;
  z-index: 4;
  top: 20px;
  right: 21px;
  width: 76px;
  height: 76px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  color: #fff;
  background: rgba(4, 22, 52, .66);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .025);
  text-align: center;

  span { color: var(--secondary); font-size: 17px; font-weight: 850; }
  small { color: #8fa0b8; font-size: 6px; text-transform: uppercase; letter-spacing: .5px; }
}

@keyframes data-flow {
  from { left: -6px; opacity: 0; }
  15%, 85% { opacity: 1; }
  to { left: 100%; opacity: 0; }
}

@keyframes ticket-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-6px) rotate(-1deg); }
}

.dashboard-card {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 35px 90px rgba(0, 9, 30, .46), 0 0 0 8px rgba(255, 255, 255, .035);
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg) rotateZ(1deg);

  .dashboard-topbar {
    height: 59px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e9eef5;

    .mini-brand {
      display: flex;
      align-items: center;
      gap: 7px;
      color: var(--primary);
      font-size: 11px;
      font-weight: 800;

      .mini-brand-mark {
        width: 25px;
        height: 25px;
        display: grid;
        place-items: center;
        border-radius: 7px;
        color: #fff;
        background: var(--primary);
        font-size: 9px;
      }
    }

    .user-chip {
      display: flex;
      align-items: center;
      gap: 7px;
      color: #8792a4;
      font-size: 9px;

      .user-avatar {
        width: 28px;
        height: 28px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: #fff;
        background: #f08b3e;
        font-size: 8px;
        font-weight: 800;
      }

      .user-details {
        display: grid;
        min-width: 55px;

        strong {
          color: var(--ink);
          font-size: 8px;
        }

        small {
          font-size: 7px;
        }
      }
    }
  }
}

.dashboard-body {
  min-height: 360px;
  display: grid;
  grid-template-columns: 112px 1fr;
}

.dashboard-sidebar {
  padding: 18px 10px;
  border-right: 1px solid #e9eef5;
  background: #f8fafd;
}

.side-item {
  margin: 4px 0;
  padding: 9px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  color: #7e899b;
  font-size: 7px;
  font-weight: 650;

  b {
    width: 14px;
    color: #9aa5b6;
    font-size: 11px;
    text-align: center;
  }

  &.active {
    color: var(--primary);
    background: #e9f0fb;

    b {
      color: var(--secondary);
    }
  }
}

.dashboard-content {
  padding: 24px 24px 20px;
  background: #fcfdff;
}

.dashboard-welcome {
  display: flex;
  justify-content: space-between;
  align-items: center;

  small {
    color: #8994a5;
    font-size: 8px;
  }

  h2 {
    margin: 2px 0 0;
    color: var(--primary);
    font-size: 17px;
  }
}

.status-pill {
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 15px;
  color: #16845c;
  background: #e8f7f1;
  font-size: 7px;
  font-weight: 700;

  i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--tertiary);
  }
}

.balance-card {
  margin-top: 18px;
  min-height: 95px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(128deg, #08265c 0%, #123d7a 100%);
  box-shadow: 0 13px 25px rgba(8, 38, 92, .18);

  div {
    display: grid;
    gap: 5px;
  }

  span {
    color: rgba(255, 255, 255, .7);
    font-size: 8px;
  }

  strong {
    font-size: 22px;
    letter-spacing: -.5px;

    small {
      font-size: 8px;
      font-weight: 500;
    }
  }

  button {
    padding: 9px 11px;
    border: 0;
    border-radius: 6px;
    color: #fff;
    background: var(--secondary);
    font-size: 7px;
    font-weight: 800;
  }
}

.quick-title {
  margin: 21px 0 10px;
  display: flex;
  justify-content: space-between;
  color: var(--primary);
  font-size: 9px;

  span {
    color: var(--secondary);
    font-size: 7px;
    font-weight: 700;
  }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.service-card {
  min-height: 76px;
  padding: 10px 4px 7px;
  display: grid;
  place-items: center;
  gap: 3px;
  border: 1px solid #e6ecf4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(8, 38, 92, .04);

  small {
    color: #6c788c;
    font-size: 7px;
    font-weight: 650;
  }

  .carrier {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    font-size: 9px;
    font-weight: 850;

    &.carrier--blue {
      background: #1682d5;
    }

    &.carrier--red {
      background: #ec4035;
    }

    &.carrier--navy {
      background: #235182;
    }

    &.carrier--green {
      background: #e8f7f1;
      color: var(--tertiary);
    }
  }
}

.success-toast {
  position: absolute;
  z-index: 5;
  right: -23px;
  bottom: 22px;
  width: 250px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(0, 168, 107, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 16px 40px rgba(8, 38, 92, .16);
  animation: float 5s ease-in-out infinite;

  .success-icon {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--tertiary);
    font-weight: 900;
  }

  & > span:last-child {
    display: grid;
    gap: 2px;
  }

  strong {
    color: var(--primary);
    font-size: 11px;
  }

  small {
    color: #7d8999;
    font-size: 8px;
  }
}

.floating-stat {
  position: absolute;
  z-index: 5;
  top: 59px;
  left: -32px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(8, 38, 92, .08);
  border-radius: 11px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 15px 38px rgba(8, 38, 92, .13);
  animation: float 5s ease-in-out -2s infinite;

  .floating-stat-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--tertiary);
    background: #e8f7f1;
    font-weight: 900;
  }

  & > span:last-child {
    display: grid;
  }

  small {
    color: #8994a5;
    font-size: 7px;
  }

  strong {
    color: var(--primary);
    font-size: 12px;
  }
}

.product-badge {
  position: absolute;
  z-index: 5;
  top: 4px;
  right: -25px;
  padding: 10px 13px 10px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  color: #fff;
  background: rgba(5, 27, 64, .88);
  box-shadow: 0 15px 35px rgba(0, 9, 30, .28);
  backdrop-filter: blur(12px);

  & > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--secondary);
    font-size: 18px;
    font-weight: 850;
  }

  p {
    margin: 0;
    display: grid;
    gap: 1px;
  }

  strong { font-size: 10px; }
  small { color: #aebbd0; font-size: 8px; }
}

.dashboard-orbit {
  position: absolute;
  border: 1px solid rgba(8, 38, 92, .09);
  border-radius: 50%;

  &.dashboard-orbit--one {
    inset: -80px -90px auto auto;
    width: 280px;
    height: 280px;
  }

  &.dashboard-orbit--two {
    bottom: -45px;
    left: -50px;
    width: 180px;
    height: 180px;
    border-color: rgba(242, 103, 0, .12);
  }
}

.hero-proof {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--container));
  min-height: 88px;
  margin: 24px auto 0;
  padding: 18px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  background: rgba(255, 255, 255, .045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);

  p {
    margin: 0;
    max-width: 310px;
    color: #9eacc1;
    font-size: 12px;
  }

  .proof-items {
    display: flex;
    gap: 45px;

    span {
      display: grid;
      color: #91a0b7;
      font-size: 9px;
      text-transform: uppercase;
      letter-spacing: .45px;
    }

    strong {
      color: #fff;
      font-size: 17px;
      text-transform: none;
      letter-spacing: 0;
    }
  }
}

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

@media (max-width: 1040px) {
  .main-nav {
    gap: 18px;
  }

  .nav-actions {
    gap: 12px;
  }

  .nav-container {
    gap: 18px;
  }

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

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .floating-stat {
    left: -15px;
  }

  .success-toast {
    right: -10px;
  }
}

@media (max-width: 1050px) {
  .nav-container {
    height: 72px;
  }

  .menu-toggle {
    display: block;
    order: 3;

    &.is-open {
      span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }

      span:nth-child(2) {
        opacity: 0;
      }

      span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }
    }
  }

  .nav-actions {
    margin-left: auto;

    .app-android-link,
    .login-link {
      display: none;
    }
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    padding: 10px;
    display: grid;
    gap: 0;
    height: auto;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(8, 38, 92, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .2s ease;

    &.is-open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .nav-link {
      width: 100%;
      padding: 13px 14px;
      border-radius: 8px;
      text-align: left;

      &:hover,
      &.active {
        background: var(--soft-blue);
      }

      &::after {
        display: none;
      }
    }

    .nav-item {
      height: auto;
      display: block;

      &.nav-item--dropdown {
        &.is-open {
          .dropdown-menu {
            max-height: 420px;
            margin-bottom: 5px;
            opacity: 1;
            visibility: visible;
          }
        }
      }
    }

    .dropdown-toggle {
      justify-content: space-between;
    }

    .dropdown-menu,
    .dropdown-menu.dropdown-menu--right {
      position: static;
      width: auto;
      max-height: 0;
      margin: 0 5px;
      padding: 0 5px;
      overflow: hidden;
      border: 0;
      border-radius: 9px;
      background: #f7f9fc;
      box-shadow: none;
      opacity: 0;
      visibility: hidden;
      transform: none;
      transition: max-height .25s ease, margin .25s ease, opacity .2s ease, visibility .2s ease;

      a {
        padding: 9px;
        grid-template-columns: 34px 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 var(--line);
    }

    .mobile-nav-action {
      min-height: 44px;
      padding: 10px 12px;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      border: 1px solid transparent;
      border-radius: 9px;
      color: var(--primary);
      background: #fff;
      font-size: 13px;
      font-weight: 750;

      svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
      .android-app-icon { width: 24px; height: 15px; display: block; flex: 0 0 auto; object-fit: contain; }
      &:hover { color: var(--secondary); background: #fff8f3; }
      &:active { background: #ffefe4; }
      &:focus-visible { outline: 3px solid rgba(242, 103, 0, .35); outline-offset: 2px; }
      &.mobile-nav-action--app { border-color: rgba(8, 38, 92, .1); background: var(--soft-blue); }
      &.mobile-nav-action--primary { color: #fff; background: var(--secondary); box-shadow: 0 8px 18px rgba(242, 103, 0, .18); }
    }

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

  .hero {
    padding-top: 125px;
  }

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

  .hero-copy {
    padding-bottom: 0;
    text-align: center;

    :is(h1, .hero-description) {
      margin-left: auto;
      margin-right: auto;
    }
  }

  .eyebrow {
    margin-inline: auto;
  }

  :is(.hero-actions, .hero-assurances) {
    justify-content: center;
  }

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

  .hero-proof {
    margin-top: 15px;
    flex-direction: column;
    text-align: center;

    .proof-items {
      width: 100%;
      justify-content: center;
    }
  }
}

@media (max-width: 580px) {
  .nav-container, .hero-container, .hero-proof {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand {
    font-size: 19px;

    .brand-image {
      max-width: 130px;
      height: 48px;
    }

    .brand-mark {
      width: 34px;
      height: 34px;

      .brand-bolt {
        top: 7px;
        left: 12px;
      }
    }
  }

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

  .main-nav .mobile-nav-create { display: inline-flex; }

  .hero {
    padding-top: 110px;
  }

  .hero-copy {
    h1 {
      margin-top: 20px;
      font-size: 40px;
      line-height: 1.08;
      letter-spacing: -1.8px;
    }

    .hero-description {
      font-size: 16px;
      line-height: 1.65;
    }
  }

  .hero-actions {
    flex-direction: column;
    gap: 19px;

    .button--large {
      width: 100%;
    }
  }

  .hero-assurances {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 14px;
    text-align: left;
  }

  .dashboard-card {
    transform: none;

    .dashboard-topbar {
      padding: 0 12px;
    }
  }

  .dashboard-content {
    padding: 18px 14px 16px;
  }

  .balance-card {
    padding: 15px;

    strong {
      font-size: 18px;
    }

    button {
      padding: 8px;
    }
  }

  .service-grid {
    gap: 5px;

    .service-card {
      min-height: 67px;
    }
  }

  .floating-stat {
    top: 47px;
    left: -5px;
  }

  .success-toast {
    right: -4px;
    bottom: 18px;
    width: 225px;
  }

  .product-badge {
    display: none;
  }

  .hero-visual {
    padding-top: 15px;
    padding-bottom: 38px;

    &::before { display: none; }
  }

  .transaction-stage {
    min-height: 535px;
    border-radius: 27px 10px 32px 14px;

    &::before {
      top: 175px;
      right: -70px;
      width: 280px;
      height: 280px;
    }
  }

  .stage-heading {
    top: 20px;
    left: 20px;
  }

  .stage-seal,
  .flow-line {
    display: none;
  }

  .product-node {
    width: calc(50% - 25px);
    min-height: 48px;
    padding: 7px 9px;
    grid-template-columns: 32px 1fr;
    gap: 8px;
    border-radius: 9px 3px 9px 3px;

    &.product-node--recargas { top: 54px; left: 14px; }
    &.product-node--servicios { top: 54px; right: 14px; left: auto; }
    &.product-node--pines { top: 101px; left: 14px; }
    &.product-node--tags { top: 101px; right: 14px; left: auto; }

    .node-icon {
      width: 32px;
      height: 32px;
      border-radius: 7px 3px 7px 3px;
      font-size: 13px;
    }

    & > i { display: none; }
    small { display: none; }
    strong { font-size: 11px; }
  }

  .terminal-shell {
    top: 158px;
    right: 11px;
    left: 11px;
    width: auto;
    border-radius: 7px 21px 7px 21px;
    transform: none;
  }

  .platform-shot {
    top: 158px;
    right: 10px;
    left: 10px;
    width: auto;
    border-radius: 7px 19px 7px 19px;
    transform: none;

    .shot-topbar {
      height: 38px;
      padding: 0 11px;
      grid-template-columns: 1fr auto;
    }
  }

  .platform-mockup {
    min-height: 270px;
    grid-template-columns: 70px 1fr;
  }

  .mock-sidebar {
    .mock-logo { font-size: 12px; }

    nav {
      padding-inline: 4px;

      span {
        padding-inline: 4px;
        gap: 3px;
        font-size: 4.5px;

        i {
          width: 13px;
          height: 13px;
          font-size: 5px;
        }
      }
    }
  }

  .mock-workspace {
    height: 230px;
    padding: 5px;
    gap: 4px;
  }

  .mock-operators,
  .mock-amounts,
  .mock-form {
    padding: 6px 4px;
  }

  .operator-grid,
  .mock-amounts > div {
    gap: 3px;
  }

  .terminal-content {
    padding: 15px 15px 14px;

    .terminal-label { margin-top: 12px; }
  }

  .operation-ticket {
    right: 7px;
    bottom: -19px;
    width: calc(100% - 27px);
    grid-template-columns: 36px 1fr auto;
  }

  .proof-items {
    gap: 20px;
    justify-content: space-between;

    strong {
      font-size: 15px;
    }
  }
}

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

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Productos */
.products-section {
  position: relative;
  overflow: hidden;
  padding: 115px 0 105px;
  background:
    linear-gradient(rgba(8, 38, 92, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 38, 92, .035) 1px, transparent 1px),
    #f7f8fa;
  background-size: 44px 44px, 44px 44px, auto;

  &::before {
    content: "PRODUCTOS";
    position: absolute;
    top: 28px;
    right: -20px;
    color: rgba(8, 38, 92, .035);
    font-size: clamp(90px, 14vw, 210px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -10px;
    pointer-events: none;
  }
}

.products-container {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.products-heading {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1.2fr .7fr;
  align-items: end;
  gap: 80px;

  .section-index {
    display: block;
    margin-bottom: 15px;
    color: var(--secondary);
    font-size: clamp(12px, 1vw, 13px);
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 1.2px;
  }

  h2 {
    max-width: 720px;
    margin: 0;
    color: var(--primary);
    font-size: clamp(38px, 4.5vw, 59px);
    line-height: 1.06;
    letter-spacing: -2.8px;

    span { color: var(--secondary); }
  }

  & > p {
    margin: 0 0 7px;
    padding-left: 22px;
    border-left: 2px solid var(--tertiary);
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr .95fr;
  grid-template-rows: 380px 390px;
  gap: 15px;
  
  .product-tile {
    --tile-color: var(--primary);
    position: relative;
    min-width: 0;
    overflow: hidden;
    padding: 27px;
    display: flex;
    flex-direction: column;
    border: 1px solid #dfe6ef;
    border-radius: 10px 28px 10px 28px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 14px 38px rgba(8, 38, 92, .07);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  
    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 28px;
      width: 62px;
      height: 4px;
      border-radius: 0 0 6px 6px;
      background: var(--tile-color);
    }
  
    &::after {
      content: "";
      position: absolute;
      right: -65px;
      bottom: -70px;
      width: 190px;
      height: 190px;
      border: 1px solid color-mix(in srgb, var(--tile-color) 14%, transparent);
      border-radius: 50%;
      box-shadow: 0 0 0 28px color-mix(in srgb, var(--tile-color) 3%, transparent),
                  0 0 0 56px color-mix(in srgb, var(--tile-color) 2%, transparent);
      pointer-events: none;
    }
  
    &:hover {
      z-index: 3;
      border-color: color-mix(in srgb, var(--tile-color) 35%, #dfe6ef);
      box-shadow: 0 24px 55px rgba(8, 38, 92, .14);
      transform: translateY(-6px);
  
      .tile-link {
        color: #fff;
        background: var(--tile-color);
        border-color: var(--tile-color);
  
        &::before { transform: translateX(145%) skewX(-18deg); }
        i {
          color: var(--tile-color);
          background: #fff;
          transform: translateX(3px);
        }
      }
      .product-card-icon { transform: rotate(-5deg) scale(1.04); }
    }
  
    &:focus-visible {
      outline: 3px solid color-mix(in srgb, var(--tile-color) 60%, #fff);
      outline-offset: 4px;
    }
  
    &.product-tile--recargas {
      --tile-color: var(--secondary);
      grid-row: 1 / 3;
      color: #fff;
      background:
        radial-gradient(circle at 75% 22%, rgba(242, 103, 0, .23), transparent 28%),
        linear-gradient(145deg, #061c42, var(--primary));
      border-color: rgba(255, 255, 255, .1);
  
      .tile-number { color: rgba(255, 255, 255, .07); }
      .tile-category { color: #ffad70; }
      h3 { color: #fff; font-size: 35px; }
      p { color: #b7c5d9; font-size: 15px; }
      .product-card-icon { margin-bottom: 0; }
      .tile-brands {
        border-color: rgba(255, 255, 255, .12);
  
        small { color: #9eafc6; }
        span {
          color: var(--primary);
          background: #fff;
          border-color: rgba(255, 255, 255, .32);
        }
      }
      .tile-link {
        margin-top: auto;
        color: #fff;
        background: rgba(255, 255, 255, .08);
        border-color: rgba(255, 255, 255, .22);
  
        i {
          color: #fff;
          background: var(--secondary);
        }
      }
      .product-card-icon { color: #fff; background: var(--secondary); }
  
      &:hover .tile-link {
        background: var(--secondary);
        border-color: var(--secondary);
  
        i {
          color: var(--secondary);
          background: #fff;
        }
      }
    }
  
    &.product-tile--services {
      --tile-color: #175ea8;
      grid-column: 2 / 4;
  
      .tile-content {}
      .tile-brands {
        display: grid;
        grid-template-rows: 1fr;
        border-top: 1px dashed color-mix(in srgb, var(--tile-color) 18%, #dfe6ef);
  
        & > div { justify-content: flex-start; }
      }
      .tile-link {
        position: absolute;
        right: 25px;
        bottom: 23px;
      }
    }
  
    &.product-tile--pins { --tile-color: #7b4bb7; }
    &.product-tile--tags { --tile-color: var(--tertiary); }
  }
  
  .tile-number {
    position: absolute;
    top: 13px;
    right: 20px;
    color: rgba(8, 38, 92, .055);
    font-size: 68px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -5px;
  }
  
  .tile-kicker {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .tile-category {
    display: block;
    color: var(--tile-color);
    font-size: 9px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .product-card-icon {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    margin-bottom: 0;
    display: grid;
    place-items: center;
    border-radius: 15px 5px 15px 5px;
    color: var(--tile-color);
    background: color-mix(in srgb, var(--tile-color) 10%, #fff);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75);
    font-size: 25px;
    font-weight: 850;
    transition: transform .25s ease;
  
    &.product-card-icon--phone i {
      position: relative;
      width: 18px;
      height: 29px;
      border: 2px solid currentColor;
      border-radius: 4px;
  
      &::after {
        content: "";
        position: absolute;
        bottom: 3px;
        left: 50%;
        width: 4px;
        height: 2px;
        border-radius: 3px;
        background: currentColor;
        transform: translateX(-50%);
      }
    }
  
    &.product-card-icon--receipt i {
      width: 22px;
      height: 28px;
      border: 2px solid currentColor;
      border-radius: 3px;
      background: repeating-linear-gradient(to bottom, transparent 0 5px, currentColor 5px 6px);
    }
  
    &.product-card-icon--tag i {
      position: relative;
      width: 25px;
      height: 18px;
      border: 2px solid currentColor;
      border-radius: 4px 8px 8px 4px;
      transform: rotate(-28deg);
  
      &::after {
        content: "";
        position: absolute;
        top: 5px;
        left: 4px;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: currentColor;
      }
    }
  }
  
  .tile-content {
    position: relative;
    z-index: 2;
  
    h3 {
      margin: 0 0 8px;
      color: var(--primary);
      font-size: 22px;
      line-height: 1.1;
      letter-spacing: -.7px;
    }
  
    p {
      max-width: 560px;
      margin: 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.58;
    }
  }
  
  .tile-brands {
    margin-top: 17px;
    margin-bottom: 28px;
    padding-top: 14px;
    border-top: 1px dashed color-mix(in srgb, var(--tile-color) 18%, #dfe6ef);
  
    small {
      display: block;
      margin-bottom: 8px;
      color: #8a96a8;
      font-size: 8px;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: .8px;
    }
  
    & > div {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
  
    span {
      min-width: 84px;
      max-width: 100px;
      height: 60px;
      padding: 8px 10px;
      display: inline-flex;
      flex: 1 1 78px;
      align-items: center;
      justify-content: center;
      border: 1px solid color-mix(in srgb, var(--tile-color) 12%, #e3e8ef);
      border-radius: 14px;
      background: #fff;
      box-shadow: 0 8px 20px rgba(8, 38, 92, .09);
    }
  
    img {
      width: 78px;
      height: 38px;
      display: block;
      flex: 0 0 auto;
      object-fit: contain;
      image-rendering: auto;
    }
  
    img[src$="telcel.svg"],
    img[src$="att.svg"],
    img[src$="movistar.svg"] {
      width: 52px;
      height: 52px;
    }
  
    img[src$="televia.png"],
    img[src$="pase-urbano.png"],
    img[src$="mueve-ciudad.png"] {
      width: 48px;
      height: 48px;
    }
  }
  
  .tile-link {
    position: relative;
    z-index: 2;
    isolation: isolate;
    width: fit-content;
    margin-top: auto;
    align-self: flex-end;
    padding: 7px 8px 7px 14px;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--tile-color) 22%, #dfe6ef);
    border-radius: 999px;
    color: var(--primary);
    background: color-mix(in srgb, var(--tile-color) 5%, #fff);
    box-shadow: 0 7px 18px color-mix(in srgb, var(--tile-color) 10%, transparent);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .15px;
    transition: color .22s ease, background .22s ease, border-color .22s ease,
                box-shadow .22s ease, transform .22s ease;
  
    &::before {
      content: "";
      position: absolute;
      z-index: -1;
      top: -15px;
      left: -55%;
      width: 38%;
      height: 65px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
      transform: skewX(-18deg);
      transition: transform .55s ease;
    }
  
    span { position: relative; }
  
    i {
      width: 29px;
      height: 29px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 50%;
      color: #fff;
      background: var(--tile-color);
      font-style: normal;
      font-size: 16px;
      line-height: 1;
      box-shadow: 0 4px 10px color-mix(in srgb, var(--tile-color) 25%, transparent);
      transition: color .22s ease, background .22s ease, transform .22s ease;
    }
  }
  
}

.products-footnote {
  margin-top: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #78869a;
  font-size: 11px;
  font-weight: 700;

  & > span {
    display: flex;
    align-items: center;
    gap: 8px;

    i {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--tertiary);
      box-shadow: 0 0 0 5px rgba(0, 168, 107, .1);
    }
  }

  a {
    color: var(--primary);

    &:hover { color: var(--secondary); }
    b { margin-left: 8px; color: var(--secondary); }
  }
}

@media (max-width: 900px) {
  .products-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;

    .product-tile {
      min-height: 460px;

      &.product-tile--recargas,
      &.product-tile--services {
        grid-column: 1 / 3;
        grid-row: auto;
        min-height: 460px;
      }
    }
  }
}

@media (max-width: 580px) {
  .products-section { padding: 82px 0 75px; }
  .products-container { width: calc(100% - 28px); }
  .products-heading { margin-bottom: 32px; }

  .products-grid {
    grid-template-columns: 1fr;

    /*.product-tile,*/
    /*.product-tile.product-tile--recargas,*/
    /*.product-tile.product-tile--services {*/
    /*  grid-column: auto;*/
    /*  min-height: 460px;*/
    /*  padding: 25px;*/
    /*}*/

    .product-tile.product-tile--services {
      padding-left: 25px;

      .product-card-icon { position: relative; top: auto; left: auto; }
      .tile-content {
        padding-right: 0;
        padding-bottom: 0;
      }
      .tile-brands {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        max-width: none;
        margin-top: 17px;
        margin-bottom: 28px;
        padding-top: 14px;
        border-top: 1px dashed color-mix(in srgb, var(--tile-color) 18%, #dfe6ef);
      }
      .tile-link {
        position: relative;
        right: auto;
        bottom: auto;
      }
    }
  }

  .products-footnote {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }
}

/* Páginas internas provisionales */
/* Como funciona */
.process-section {
  position: relative;
  overflow: hidden;
  padding: 118px 0 110px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 18%, rgba(242, 103, 0, .18), transparent 25%),
    radial-gradient(circle at 92% 74%, rgba(0, 168, 107, .14), transparent 28%),
    linear-gradient(145deg, #041634, var(--primary) 62%, #061d45);

  &::before {
    content: "06";
    position: absolute;
    top: 48px;
    right: -18px;
    color: rgba(255, 255, 255, .025);
    font-size: clamp(180px, 28vw, 420px);
    font-weight: 900;
    line-height: .75;
    letter-spacing: -25px;
    pointer-events: none;
  }

  .process-container {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 44px));
    margin-inline: auto;
  }

  .process-heading {
    margin-bottom: 58px;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    align-items: end;
    gap: 70px;

    .section-index {
      display: block;
      margin-bottom: 18px;
      color: #7ed9b7;
    }

    h2 {
      max-width: 760px;
      margin: 0;
      color: #fff;
      font-size: clamp(38px, 5vw, 67px);
      line-height: .98;
      letter-spacing: -3px;

      span { color: #ff8a35; }
    }

    & > p {
      margin: 0 0 5px;
      color: #b9c7da;
      font-size: 15px;
      line-height: 1.75;
    }
  }

  .process-layout {
    display: grid;
    grid-template-columns: minmax(280px, .7fr) minmax(0, 1.55fr);
    align-items: start;
    gap: 20px;
  }

  .process-overview {
    position: sticky;
    top: 100px;
    overflow: hidden;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 12px 38px 12px 38px;
    background:
      radial-gradient(circle at 95% 5%, rgba(242, 103, 0, .25), transparent 28%),
      rgba(255, 255, 255, .075);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .18);
    backdrop-filter: blur(8px);

    .process-overview__label {
      display: block;
      margin-bottom: 13px;
      color: #ff9d57;
      font-size: 10px;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: 1.3px;
    }

    h3 {
      margin: 0 0 14px;
      color: #fff;
      font-size: 29px;
      line-height: 1.08;
      letter-spacing: -1px;
    }

    & > p {
      margin: 0;
      color: #b9c7da;
      font-size: 13px;
      line-height: 1.65;
    }

    .balance-example {
      margin: 26px 0 22px;
      padding: 8px 15px;
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 14px;
      background: rgba(3, 17, 41, .38);

      div {
        padding: 11px 0;
        display: flex;
        justify-content: space-between;
        gap: 16px;
        color: #aebdd1;
        font-size: 11px;

        & + div { border-top: 1px solid rgba(255, 255, 255, .075); }
        strong { color: #fff; font-size: 14px; }
      }

      .balance-example__operation strong { color: #ff9d57; }

      .balance-example__result {
        span { color: #dce6f2; font-weight: 750; }
        strong { color: #72dfb5; font-size: 19px; }
      }

      small {
        padding: 10px 0 7px;
        display: block;
        border-top: 1px solid rgba(255, 255, 255, .075);
        color: #8fa2bb;
        font-size: 9px;
        line-height: 1.5;
      }
    }

    .process-needs {
      margin: 0 0 26px;
      padding: 0;
      display: grid;
      gap: 10px;
      list-style: none;

      li {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #d2deec;
        font-size: 11px;
        font-weight: 700;

        i {
          width: 6px;
          height: 6px;
          flex: 0 0 auto;
          border-radius: 50%;
          background: var(--tertiary);
          box-shadow: 0 0 0 5px rgba(0, 168, 107, .12);
        }
      }
    }

    .process-overview__link {
      min-height: 52px;
      margin-top: 4px;
      padding: 9px 10px 9px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 15px;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 12px;
      color: #fff;
      background: rgba(255, 255, 255, .065);
      box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .1px;
      transition: transform .2s ease, background .2s ease, box-shadow .2s ease;

      i {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: #fff;
        background: rgba(242, 103, 0, .85);
        font-style: normal;
        font-size: 17px;
        box-shadow: none;
        transition: transform .2s ease;
      }

      &:hover {
        color: #fff;
        border-color: rgba(242, 103, 0, .55);
        background: rgba(255, 255, 255, .1);
        box-shadow: 0 10px 24px rgba(0, 0, 0, .12);

        i {
          background: var(--secondary);
          transform: translateX(3px);
        }
      }

      &:focus-visible {
        outline: 3px solid rgba(255, 255, 255, .88);
        outline-offset: 3px;
      }
    }
  }

  .process-steps {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    list-style: none;
  }

  .process-step {
    --step-color: var(--secondary);
    position: relative;
    min-width: 0;
    min-height: 250px;
    overflow: hidden;
    padding: 27px;
    display: grid;
    grid-template-columns: 50px 1fr;
    align-content: start;
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 9px 27px 9px 27px;
    background: rgba(255, 255, 255, .065);
    transition: transform .25s ease, background .25s ease, border-color .25s ease;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 27px;
      width: 48px;
      height: 3px;
      border-radius: 0 0 5px 5px;
      background: var(--step-color);
    }

    &:hover {
      z-index: 2;
      border-color: color-mix(in srgb, var(--step-color) 35%, transparent);
      background: rgba(255, 255, 255, .095);
      transform: translateY(-4px);
    }

    &:nth-child(2),
    &:nth-child(6) { --step-color: var(--tertiary); }
    &:nth-child(3),
    &:nth-child(5) { --step-color: #4c98ed; }

    .process-step__number {
      position: absolute;
      right: 16px;
      bottom: -15px;
      color: rgba(255, 255, 255, .035);
      font-size: 92px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: -7px;
      pointer-events: none;
    }

    .process-step__icon {
      position: relative;
      z-index: 2;
      width: 50px;
      height: 50px;
      display: grid;
      place-items: center;
      border-radius: 15px 5px 15px 5px;
      color: var(--step-color);
      background: color-mix(in srgb, var(--step-color) 18%, rgba(255, 255, 255, .06));

      i {
        position: relative;
        width: 28px;
        height: 28px;
        display: block;
        color: currentColor;
        font-style: normal;

        &::before,
        &::after {
          content: "";
          position: absolute;
          box-sizing: border-box;
        }
      }

      /* Alta de usuario */
      &.process-step__icon--account {
        i::before {
          top: 1px;
          left: 8px;
          width: 11px;
          height: 11px;
          border: 2.4px solid currentColor;
          border-radius: 50%;
        }

        i::after {
          left: 3px;
          bottom: 1px;
          width: 21px;
          height: 12px;
          border: 2.4px solid currentColor;
          border-bottom: 0;
          border-radius: 14px 14px 2px 2px;
        }

        &::after {
          content: "+";
          position: absolute;
          right: 5px;
          bottom: 5px;
          width: 14px;
          height: 14px;
          display: grid;
          place-items: center;
          border: 2px solid #fff;
          border-radius: 50%;
          color: #fff;
          background: var(--step-color);
          font-size: 11px;
          font-weight: 900;
          line-height: 1;
        }
      }

      /* Bolsa electrónica */
      &.process-step__icon--wallet {
        i::before {
          left: 1px;
          bottom: 2px;
          width: 26px;
          height: 19px;
          border: 2.4px solid currentColor;
          border-radius: 5px;
          box-shadow: inset 0 4px 0 color-mix(in srgb, currentColor 13%, transparent);
        }

        i::after {
          right: -1px;
          top: 11px;
          width: 11px;
          height: 8px;
          border: 2.4px solid currentColor;
          border-radius: 3px;
          background: inherit;
        }
      }

      /* Catálogo de productos */
      &.process-step__icon--products {
        i::before {
          top: 2px;
          left: 2px;
          width: 10px;
          height: 10px;
          border-radius: 3px;
          background: currentColor;
          box-shadow: 14px 0 currentColor, 0 14px currentColor, 14px 14px currentColor;
        }
      }

      /* Captura y verificación */
      &.process-step__icon--verify {
        i::before {
          top: 1px;
          left: 1px;
          width: 20px;
          height: 26px;
          border: 2.4px solid currentColor;
          border-radius: 4px;
          background:
            linear-gradient(currentColor, currentColor) 4px 7px / 9px 2px no-repeat,
            linear-gradient(currentColor, currentColor) 4px 12px / 7px 2px no-repeat;
        }

        i::after {
          right: 0;
          bottom: 2px;
          width: 13px;
          height: 8px;
          border-left: 3px solid currentColor;
          border-bottom: 3px solid currentColor;
          transform: rotate(-45deg);
        }
      }

      /* Confirmación de la operación */
      &.process-step__icon--confirm {
        i::before {
          inset: 1px;
          border: 2.5px solid currentColor;
          border-radius: 50%;
        }

        i::after {
          top: 8px;
          left: 7px;
          width: 13px;
          height: 8px;
          border-left: 3px solid currentColor;
          border-bottom: 3px solid currentColor;
          transform: rotate(-45deg);
        }
      }

      /* Comprobante de venta */
      &.process-step__icon--receipt {
        i::before {
          top: 0;
          left: 4px;
          width: 20px;
          height: 27px;
          border: 2.4px solid currentColor;
          border-radius: 3px 3px 1px 1px;
          background:
            linear-gradient(currentColor, currentColor) 4px 6px / 9px 2px no-repeat,
            linear-gradient(currentColor, currentColor) 4px 11px / 11px 2px no-repeat,
            linear-gradient(currentColor, currentColor) 4px 16px / 7px 2px no-repeat;
        }

        i::after {
          left: 8px;
          bottom: -1px;
          width: 5px;
          height: 5px;
          color: inherit;
          background: currentColor;
          transform: rotate(45deg);
          box-shadow: 7px -7px currentColor;
        }
      }
    }

    .process-step__eyebrow {
      display: block;
      margin: 4px 0 7px;
      color: color-mix(in srgb, var(--step-color) 72%, #fff);
      font-size: 8px;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    h3 {
      margin: 0 0 10px;
      color: #fff;
      font-size: 21px;
      line-height: 1.15;
      letter-spacing: -.45px;
    }

    p {
      position: relative;
      z-index: 2;
      margin: 0;
      color: #b7c5d8;
      font-size: 11px;
      line-height: 1.65;
    }

    &.process-step--data {
      min-height: 305px;
      grid-column: 1 / 3;

      .process-step__body {
        display: grid;
        grid-template-columns: minmax(210px, .7fr) minmax(330px, 1.3fr);
        column-gap: 30px;

        .process-step__eyebrow,
        h3,
        p { grid-column: 1; }

        .process-data-table {
          grid-column: 2;
          grid-row: 1 / 5;
        }
      }
    }

    .process-data-table {
      overflow: hidden;
      align-self: center;
      border: 1px solid rgba(255, 255, 255, .09);
      border-radius: 13px;
      background: rgba(2, 15, 37, .3);

      div {
        padding: 10px 13px;
        display: grid;
        grid-template-columns: 82px 1fr;
        gap: 12px;
        color: #b7c5d8;
        font-size: 10px;

        & + div { border-top: 1px solid rgba(255, 255, 255, .07); }
        strong { color: #fff; }
      }
    }

    .operation-statuses,
    .receipt-fields {
      position: relative;
      z-index: 2;
      margin-top: 17px;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;

      span {
        padding: 5px 7px;
        border: 1px solid rgba(255, 255, 255, .09);
        border-radius: 6px;
        color: #d5e0ec;
        background: rgba(255, 255, 255, .045);
        font-size: 8px;
        font-weight: 750;
      }
    }

    .operation-statuses span:first-child {
      color: #8fe8c3;
      border-color: rgba(0, 168, 107, .25);
      background: rgba(0, 168, 107, .1);
    }
  }
}

@media (max-width: 950px) {
  .process-section {
    .process-heading {
      grid-template-columns: 1fr;
      gap: 24px;
    }

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

    .process-overview {
      position: relative;
      top: auto;
    }
  }
}

@media (max-width: 680px) {
  .process-section {
    padding: 88px 0 82px;

    .process-container { width: calc(100% - 28px); }
    .process-heading { margin-bottom: 38px; }
    .process-heading h2 { font-size: 39px; letter-spacing: -1.8px; }
    .process-overview { padding: 27px; }
    .process-steps { grid-template-columns: 1fr; }

    .process-step,
    .process-step.process-step--data {
      min-height: auto;
      grid-column: auto;
      grid-template-columns: 45px 1fr;
      padding: 24px;

      .process-step__body {
        display: block;
        .process-data-table { margin-top: 20px; }
      }
    }

    .process-step .process-step__icon {
      width: 45px;
      height: 45px;
    }
  }
}

/* Variante de flujo continuo: evita repetir el lenguaje visual de productos */
.process-section.process-section--timeline {
  color: var(--ink);
  background:
    linear-gradient(rgba(8, 38, 92, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 38, 92, .035) 1px, transparent 1px),
    linear-gradient(180deg, #edf3f9, #e8f0f7);
  background-size: 44px 44px, 44px 44px, auto;

  &::before {
    content: "FLUJO";
    top: 88px;
    right: -35px;
    color: rgba(8, 38, 92, .035);
    font-size: clamp(110px, 17vw, 260px);
    letter-spacing: -14px;
  }

  .process-heading {
    grid-template-columns: 1fr 420px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(8, 38, 92, .12);

    .section-index { color: var(--tertiary); }

    h2 {
      color: var(--primary);
      font-size: clamp(40px, 5vw, 66px);

      span { color: var(--secondary); }
    }

    & > p { color: #637187; }
  }

  .process-layout {
    grid-template-columns: minmax(290px, .72fr) minmax(0, 1.28fr);
    gap: clamp(50px, 7vw, 100px);
  }

  .process-overview {
    top: 105px;
    padding: 36px;
    border: 0;
    border-radius: 8px 38px 8px 38px;
    color: #fff;
    background:
      radial-gradient(circle at 100% 0, rgba(242, 103, 0, .3), transparent 28%),
      linear-gradient(150deg, #061a3d, var(--primary));
    box-shadow: 0 28px 65px rgba(8, 38, 92, .2);
    backdrop-filter: none;

    &::before {
      content: "SALDO";
      position: absolute;
      right: -8px;
      top: 16px;
      color: rgba(255, 255, 255, .035);
      font-size: 72px;
      font-weight: 900;
      letter-spacing: -5px;
      pointer-events: none;
    }
  }

  .process-steps {
    position: relative;
    display: block;

    &::before {
      content: "";
      position: absolute;
      top: 29px;
      bottom: 29px;
      left: 29px;
      width: 2px;
      background: linear-gradient(to bottom, var(--secondary), #4c98ed 48%, var(--tertiary));
      box-shadow: 0 0 0 5px rgba(8, 38, 92, .035);
    }
  }

  .process-step,
  .process-step.process-step--data {
    position: relative;
    min-height: 0;
    margin: 0 0 6px;
    padding: 0 0 42px;
    display: grid;
    grid-column: auto;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 25px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    color: var(--ink);
    background: transparent;
    box-shadow: none;

    &::before { display: none; }

    &:hover {
      border-color: transparent;
      background: transparent;
      transform: none;

      .process-step__icon {
        color: #fff;
        background: var(--step-color);
        transform: scale(1.06);
      }

      h3 { color: var(--secondary); }
    }

    &:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .process-step__number {
      z-index: 4;
      top: 42px;
      right: auto;
      bottom: auto;
      left: 40px;
      width: 22px;
      height: 22px;
      display: grid;
      place-items: center;
      border: 3px solid #f2f6fa;
      border-radius: 50%;
      color: #fff;
      background: var(--primary);
      font-size: 7px;
      letter-spacing: 0;
      box-shadow: 0 5px 12px rgba(8, 38, 92, .16);
    }

    .process-step__icon {
      width: 60px;
      height: 60px;
      border: 7px solid #f2f6fa;
      border-radius: 50%;
      color: var(--step-color);
      background: #fff;
      box-shadow: 0 8px 25px rgba(8, 38, 92, .13);
      transition: transform .22s ease, color .22s ease, background .22s ease;
    }

    & > div:last-child,
    .process-step__body {
      padding: 3px 0 30px;
      border-bottom: 1px solid rgba(8, 38, 92, .11);
    }

    &:last-child > div:last-child { border-bottom: 0; }

    .process-step__eyebrow {
      margin-top: 0;
      color: color-mix(in srgb, var(--step-color) 72%, var(--primary));
    }

    h3 {
      color: var(--primary);
      font-size: 26px;
      transition: color .2s ease;
    }

    p {
      max-width: 650px;
      color: #637187;
      font-size: 13px;
      line-height: 1.7;
    }

    .process-step__body {
      display: block;

      .process-step__eyebrow,
      h3,
      p,
      .process-data-table {
        grid-column: auto;
        grid-row: auto;
      }
    }

    .process-data-table {
      max-width: 620px;
      margin-top: 22px;
      border-color: rgba(8, 38, 92, .1);
      background: #fff;
      box-shadow: 0 10px 28px rgba(8, 38, 92, .065);

      div {
        color: #637187;
        font-size: 11px;

        & + div { border-top-color: rgba(8, 38, 92, .08); }
        strong { color: var(--primary); }
      }
    }

    .operation-statuses,
    .receipt-fields {
      span {
        color: #5c6c83;
        border-color: rgba(8, 38, 92, .1);
        background: #fff;
      }
    }

    .operation-statuses span:first-child {
      color: #007c50;
      border-color: rgba(0, 168, 107, .2);
      background: rgba(0, 168, 107, .08);
    }
  }
}

@media (max-width: 950px) {
  .process-section.process-section--timeline {
    .process-heading { grid-template-columns: 1fr; }
    .process-layout { grid-template-columns: 1fr; gap: 55px; }
    .process-overview { top: auto; }
  }
}

@media (max-width: 680px) {
  .process-section.process-section--timeline {
    .process-heading { padding-bottom: 28px; }

    .process-steps::before {
      left: 23px;
      top: 24px;
      bottom: 24px;
    }

    .process-step,
    .process-step.process-step--data {
      grid-template-columns: 48px minmax(0, 1fr);
      gap: 18px;
      padding: 0 0 34px;

      .process-step__icon {
        width: 48px;
        height: 48px;
        border-width: 5px;
      }

      .process-step__number {
        top: 32px;
        left: 30px;
      }

      h3 { font-size: 22px; }
      p { font-size: 12px; }

      .process-data-table div {
        grid-template-columns: 1fr;
        gap: 3px;
      }
    }
  }
}

/* Beneficios para comercios */
.benefits-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0 105px;
  background:
    linear-gradient(rgba(0, 108, 77, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 108, 77, .03) 1px, transparent 1px),
    radial-gradient(circle at 6% 8%, rgba(0, 168, 107, .13), transparent 25%),
    radial-gradient(circle at 94% 82%, rgba(242, 103, 0, .12), transparent 27%),
    linear-gradient(180deg, #f7fbf9, #edf7f2);
  background-size: 48px 48px, 48px 48px, auto, auto, auto;

  &::before {
    content: "NEGOCIO";
    position: absolute;
    top: 60px;
    right: -30px;
    color: rgba(8, 38, 92, .035);
    font-size: clamp(90px, 15vw, 220px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -12px;
    pointer-events: none;
  }

  .benefits-container {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
  }

  .benefits-heading {
    margin-bottom: 48px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .65fr);
    align-items: end;
    gap: clamp(35px, 7vw, 95px);

    .section-index {
      display: block;
      margin-bottom: 16px;
      color: var(--tertiary);
      font-size: clamp(12px, 1vw, 13px);
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: 1.4px;
    }

    h2 {
      max-width: 760px;
      margin: 0;
      color: var(--primary);
      font-size: clamp(40px, 5vw, 64px);
      line-height: .99;
      letter-spacing: -2.9px;

      span { color: var(--secondary); }
    }

    .benefits-heading__context {
      padding: 20px 22px;
      border-left: 3px solid var(--tertiary);
      border-radius: 0 12px 12px 0;
      background: rgba(255, 255, 255, .62);
      box-shadow: 0 12px 35px rgba(8, 38, 92, .06);

      & > span {
        margin-bottom: 9px;
        display: flex;
        align-items: center;
        gap: 9px;
        color: var(--primary);
        font-size: 10px;
        font-weight: 850;
        text-transform: uppercase;
        letter-spacing: 1px;

        i {
          position: relative;
          width: 17px;
          height: 14px;
          border: 2px solid var(--tertiary);
          border-radius: 2px;

          &::before {
            content: "";
            position: absolute;
            left: -4px;
            bottom: 100%;
            width: 21px;
            height: 5px;
            border-radius: 3px 3px 1px 1px;
            background: var(--tertiary);
          }
        }
      }
    }

    p {
      margin: 0 0 4px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
    }
  }

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

  .benefit-card {
    --card-accent: var(--secondary);
    position: relative;
    min-width: 0;
    min-height: 258px;
    overflow: hidden;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    border: 1px solid rgba(8, 38, 92, .11);
    border-top: 4px solid var(--card-accent);
    border-radius: 7px 24px 7px 24px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 14px 36px rgba(8, 38, 92, .08);
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;

    &::after {
      content: "";
      position: absolute;
      right: -34px;
      bottom: -34px;
      width: 92px;
      height: 92px;
      border: 18px solid rgba(8, 38, 92, .03);
      border-radius: 50%;
      transition: border-color .24s ease;
    }

    &::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 90px;
      height: 90px;
      background: linear-gradient(135deg, transparent 48%, color-mix(in srgb, var(--card-accent) 9%, transparent) 49%);
      pointer-events: none;
    }

    &:nth-child(2n) {
      --card-accent: var(--tertiary);

      .benefit-card__icon {
        color: var(--tertiary);
        background: rgba(0, 168, 107, .1);
      }
    }

    &:nth-child(3n) {
      --card-accent: var(--primary);

      .benefit-card__icon {
        color: var(--primary);
        background: rgba(8, 38, 92, .09);
      }
    }

    &.benefit-card--wide {
      grid-column: span 2;
      min-height: 230px;
      display: grid;
      grid-template-columns: 78px minmax(0, 1fr);
      align-items: center;
      justify-content: initial;
      gap: 28px;

      .benefit-card__icon {
        width: 72px;
        height: 72px;
        border-radius: 23px 9px 23px 9px;
      }

      h3 { font-size: 27px; }
      p { max-width: 620px; font-size: 14px; }
    }

    &.benefit-card--primary {
      --card-accent: var(--secondary);
      color: #fff;
      border-color: rgba(255, 255, 255, .09);
      border-top-color: var(--secondary);
      background:
        radial-gradient(circle at 100% 0, rgba(242, 103, 0, .22), transparent 34%),
        linear-gradient(140deg, #061a3d, var(--primary));
      box-shadow: 0 24px 54px rgba(8, 38, 92, .2);

      .benefit-card__icon {
        color: #fff;
        background: rgba(242, 103, 0, .88);
      }

      .benefit-card__tag { color: #ffb57d; }
      h3 { color: #fff; }
      p { color: #c2cee0; }
    }

    &.benefit-card--support {
      --card-accent: var(--tertiary);
      background:
        radial-gradient(circle at 100% 100%, rgba(0, 168, 107, .13), transparent 35%),
        rgba(255, 255, 255, .95);
    }

    &:hover {
      border-color: rgba(242, 103, 0, .28);
      box-shadow: 0 20px 44px rgba(8, 38, 92, .11);
      transform: translateY(-4px);

      &::after { border-color: rgba(242, 103, 0, .08); }
      .benefit-card__icon { transform: rotate(-3deg) scale(1.04); }
    }

    h3 {
      position: relative;
      z-index: 1;
      margin: 0 0 10px;
      color: var(--primary);
      font-size: 21px;
      line-height: 1.15;
      letter-spacing: -.45px;
    }

    p {
      position: relative;
      z-index: 1;
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.68;
    }

    .benefit-card__tag {
      position: relative;
      z-index: 1;
      margin-bottom: 9px;
      display: block;
      color: var(--card-accent);
      font-size: 9px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1.15px;
    }
  }

  .benefit-card__icon {
    position: relative;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 17px 7px 17px 7px;
    color: var(--secondary);
    background: rgba(242, 103, 0, .1);
    transition: transform .24s ease;

    i {
      position: relative;
      width: 27px;
      height: 27px;
      display: block;

      &::before,
      &::after {
        content: "";
        position: absolute;
        box-sizing: border-box;
      }
    }

    &.benefit-card__icon--catalog i::before {
      top: 2px;
      left: 2px;
      width: 10px;
      height: 10px;
      border-radius: 3px;
      background: currentColor;
      box-shadow: 13px 0 currentColor, 0 13px currentColor, 13px 13px currentColor;
    }

    &.benefit-card__icon--income {
      i::before {
        left: 2px;
        bottom: 2px;
        width: 5px;
        height: 9px;
        border-radius: 2px 2px 0 0;
        background: currentColor;
        box-shadow: 8px -5px currentColor, 16px -12px currentColor;
      }

      i::after {
        top: 2px;
        right: 0;
        width: 11px;
        height: 11px;
        border-top: 2.5px solid currentColor;
        border-right: 2.5px solid currentColor;
      }
    }

    &.benefit-card__icon--visits {
      i::before {
        top: 2px;
        left: 8px;
        width: 11px;
        height: 11px;
        border: 2.3px solid currentColor;
        border-radius: 50%;
        box-shadow: -9px 5px 0 -2px #fff, -9px 5px 0 0 currentColor, 9px 5px 0 -2px #fff, 9px 5px 0 0 currentColor;
      }

      i::after {
        left: 4px;
        bottom: 1px;
        width: 19px;
        height: 10px;
        border: 2.3px solid currentColor;
        border-bottom: 0;
        border-radius: 12px 12px 0 0;
      }
    }

    &.benefit-card__icon--devices {
      i::before {
        top: 2px;
        left: 0;
        width: 23px;
        height: 18px;
        border: 2.3px solid currentColor;
        border-radius: 3px;
        box-shadow: 0 5px 0 -3px currentColor;
      }

      i::after {
        right: 0;
        bottom: 0;
        width: 10px;
        height: 18px;
        border: 2.3px solid currentColor;
        border-radius: 3px;
        background: #fff;
      }
    }

    &.benefit-card__icon--control {
      i::before {
        inset: 3px 1px;
        background:
          linear-gradient(currentColor, currentColor) 0 2px / 25px 2px no-repeat,
          linear-gradient(currentColor, currentColor) 0 10px / 25px 2px no-repeat,
          linear-gradient(currentColor, currentColor) 0 18px / 25px 2px no-repeat;
      }

      i::after {
        top: 1px;
        left: 6px;
        width: 6px;
        height: 6px;
        border: 2px solid currentColor;
        border-radius: 50%;
        background: #fff;
        box-shadow: 9px 8px 0 -2px #fff, 9px 8px 0 0 currentColor, -2px 16px 0 -2px #fff, -2px 16px 0 0 currentColor;
      }
    }

    &.benefit-card__icon--receipt {
      i::before {
        top: 0;
        left: 4px;
        width: 20px;
        height: 27px;
        border: 2.3px solid currentColor;
        border-radius: 3px;
        background:
          linear-gradient(currentColor, currentColor) 4px 6px / 9px 2px no-repeat,
          linear-gradient(currentColor, currentColor) 4px 11px / 11px 2px no-repeat,
          linear-gradient(currentColor, currentColor) 4px 16px / 7px 2px no-repeat;
      }
    }

    &.benefit-card__icon--support {
      i::before {
        top: 2px;
        left: 3px;
        width: 21px;
        height: 21px;
        border: 2.5px solid currentColor;
        border-bottom-color: transparent;
        border-radius: 50%;
      }

      i::after {
        left: 1px;
        bottom: 3px;
        width: 7px;
        height: 11px;
        border-radius: 4px;
        background: currentColor;
        box-shadow: 18px 0 currentColor, 13px 9px 0 -2px currentColor;
      }
    }
  }

  .benefits-cta {
    position: relative;
    margin-top: 22px;
    overflow: hidden;
    padding: 30px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border-radius: 18px;
    color: #fff;
    background:
      radial-gradient(circle at 75% 0, rgba(0, 168, 107, .26), transparent 32%),
      linear-gradient(135deg, #061a3d, var(--primary));
    box-shadow: 0 24px 55px rgba(8, 38, 92, .18);

    &::before {
      content: "";
      position: absolute;
      top: -80px;
      right: 25%;
      width: 170px;
      height: 170px;
      border: 28px solid rgba(255, 255, 255, .04);
      border-radius: 50%;
    }

    & > * { position: relative; z-index: 1; }

    & > div span {
      display: block;
      margin-bottom: 6px;
      color: #72dfb5;
      font-size: 9px;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: 1.25px;
    }

    h3 {
      max-width: 720px;
      margin: 0;
      font-size: clamp(22px, 3vw, 32px);
      line-height: 1.15;
      letter-spacing: -.8px;
    }

    .button { flex: 0 0 auto; }
  }
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;

  &.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-ready .benefits-grid .benefit-card {
  &:nth-child(2) { transition-delay: .05s; }
  &:nth-child(3) { transition-delay: .1s; }
  &:nth-child(4) { transition-delay: .05s; }
  &:nth-child(5) { transition-delay: .1s; }
  &:nth-child(6) { transition-delay: .15s; }
  &:nth-child(7) { transition-delay: .08s; }
}

@media (max-width: 950px) {
  .benefits-section {
    .benefits-heading {
      grid-template-columns: 1fr;
      gap: 22px;
    }

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

    .benefit-card {
      &.benefit-card--wide {
        grid-column: auto;
        min-height: 258px;
        display: flex;
        align-items: stretch;
        gap: 32px;

        .benefit-card__icon {
          width: 56px;
          height: 56px;
        }

        h3 { font-size: 21px; }
        p { font-size: 13px; }
      }

      &:last-child { grid-column: span 2; }
    }
  }
}

@media (max-width: 680px) {
  .benefits-section {
    padding: 86px 0 80px;

    .benefits-container { width: calc(100% - 28px); }
    .benefits-heading { margin-bottom: 34px; }
    .benefits-heading h2 { font-size: 39px; letter-spacing: -1.8px; }
    .benefits-grid { grid-template-columns: 1fr; }

    .benefit-card {
      min-height: 0;
      padding: 24px;
      display: grid;
      grid-template-columns: 52px minmax(0, 1fr);
      align-items: start;
      gap: 18px;

      &.benefit-card--wide,
      &:last-child {
        grid-column: auto;
        min-height: 0;
        display: grid;
        grid-template-columns: 52px minmax(0, 1fr);
        align-items: start;
        gap: 18px;

        .benefit-card__icon {
          width: 52px;
          height: 52px;
          border-radius: 17px 7px 17px 7px;
        }

        h3 { font-size: 21px; }
        p { font-size: 13px; }
      }
    }

    .benefit-card__icon {
      width: 52px;
      height: 52px;
    }

    .benefits-cta {
      padding: 27px;
      align-items: stretch;
      flex-direction: column;

      .button { width: 100%; }
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Funciones de la plataforma para comercios */
.platform-functions-section {
  position: relative;
  overflow: hidden;
  padding: 116px 0 108px;
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    radial-gradient(circle at 90% 16%, rgba(242, 103, 0, .18), transparent 25%),
    radial-gradient(circle at 8% 86%, rgba(0, 168, 107, .13), transparent 27%),
    linear-gradient(145deg, #03142f, var(--primary) 58%, #041b40);
  background-size: 48px 48px, 48px 48px, auto, auto, auto;

  &::before {
    content: "CONTROL";
    position: absolute;
    right: -24px;
    bottom: 20px;
    color: rgba(255, 255, 255, .025);
    font-size: clamp(100px, 17vw, 245px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -13px;
    pointer-events: none;
  }

  .platform-functions-container {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(470px, 1.12fr);
    align-items: center;
    gap: clamp(48px, 7vw, 92px);
  }

  .platform-functions-heading {
    margin-bottom: 34px;

    .section-index {
      display: block;
      margin-bottom: 15px;
      color: #72dfb5;
      font-size: clamp(12px, 1vw, 13px);
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: 1.35px;
    }

    h2 {
      max-width: 620px;
      margin: 0;
      color: #fff;
      font-size: clamp(40px, 4.7vw, 62px);
      line-height: 1.01;
      letter-spacing: -2.8px;

      span { color: var(--secondary); }
    }

    p {
      max-width: 610px;
      margin: 20px 0 0;
      color: #b9c7da;
      font-size: 15px;
      line-height: 1.72;
    }
  }

  .platform-function-list {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 9px;
    list-style: none;
  }

  .platform-function {
    position: relative;
    min-width: 0;
    padding: 16px 18px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 12px 5px 12px 5px;
    background: rgba(255, 255, 255, .045);
    transition: border-color .22s ease, background .22s ease, transform .22s ease;
    cursor: pointer;

    &:hover {
      border-color: rgba(242, 103, 0, .34);
      background: rgba(255, 255, 255, .075);
      transform: translateX(4px);
    }

    &.is-active {
      border-color: rgba(242, 103, 0, .72);
      background: linear-gradient(90deg, rgba(242, 103, 0, .14), rgba(255, 255, 255, .065));
      box-shadow: inset 3px 0 var(--secondary);
    }

    &:has(.platform-function__action:focus-visible) {
      outline: 3px solid rgba(242, 103, 0, .42);
      outline-offset: 3px;
    }

    h3 {
      margin: 0 0 5px;
      color: #fff;
      font-size: 17px;
      line-height: 1.2;
    }

    p {
      margin: 0;
      color: #aebdd1;
      font-size: 11px;
      line-height: 1.58;
    }
  }

  .platform-function__action {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    border-radius: inherit;
    background: transparent;
    cursor: pointer;

    &:focus { outline: none; }
  }

  .platform-function__index {
    position: absolute;
    top: 13px;
    right: 14px;
    color: rgba(255, 255, 255, .2);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .8px;
  }

  .platform-function__icon {
    position: relative;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px 5px 14px 5px;
    color: #ff9d57;
    background: rgba(242, 103, 0, .12);

    i {
      position: relative;
      width: 25px;
      height: 25px;
      display: block;

      &::before,
      &::after {
        content: "";
        position: absolute;
        box-sizing: border-box;
      }
    }

    &.platform-function__icon--operations i::before {
      top: 1px;
      left: 1px;
      width: 9px;
      height: 9px;
      border-radius: 2px;
      background: currentColor;
      box-shadow: 13px 0 currentColor, 0 13px currentColor, 13px 13px currentColor;
    }

    &.platform-function__icon--control {
      color: #72dfb5;
      background: rgba(0, 168, 107, .12);

      i::before {
        inset: 3px 1px;
        background:
          linear-gradient(currentColor, currentColor) 0 2px / 23px 2px no-repeat,
          linear-gradient(currentColor, currentColor) 0 9px / 23px 2px no-repeat,
          linear-gradient(currentColor, currentColor) 0 16px / 23px 2px no-repeat;
      }

      i::after {
        top: 1px;
        left: 5px;
        width: 6px;
        height: 6px;
        border: 2px solid currentColor;
        border-radius: 50%;
        background: var(--primary);
        box-shadow: 8px 7px 0 -2px var(--primary), 8px 7px 0 0 currentColor, -1px 14px 0 -2px var(--primary), -1px 14px 0 0 currentColor;
      }
    }

    &.platform-function__icon--reports {
      color: #79b9ff;
      background: rgba(76, 152, 237, .13);

      i::before {
        inset: 0 3px;
        border: 2px solid currentColor;
        border-radius: 3px;
        background:
          linear-gradient(currentColor, currentColor) 4px 6px / 9px 2px no-repeat,
          linear-gradient(currentColor, currentColor) 4px 11px / 12px 2px no-repeat,
          linear-gradient(currentColor, currentColor) 4px 16px / 7px 2px no-repeat;
      }
    }

    &.platform-function__icon--support {
      color: #ff9d57;

      i::before {
        top: 1px;
        left: 2px;
        width: 21px;
        height: 21px;
        border: 2.3px solid currentColor;
        border-bottom-color: transparent;
        border-radius: 50%;
      }

      i::after {
        left: 0;
        bottom: 2px;
        width: 7px;
        height: 10px;
        border-radius: 4px;
        background: currentColor;
        box-shadow: 18px 0 currentColor, 13px 8px 0 -2px currentColor;
      }
    }
  }

  .platform-functions-cta { margin-top: 26px; }

  .platform-functions-preview {
    position: relative;
    min-width: 0;
    margin: 0;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 10px 38px 10px 38px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .025));
    box-shadow: 0 34px 75px rgba(0, 7, 25, .35), inset 0 1px rgba(255, 255, 255, .1);

    .platform-functions-preview__label {
      position: absolute;
      z-index: 2;
      top: 10px;
      right: 14px;
      padding: 6px 9px;
      border-radius: 20px;
      color: #fff;
      background: var(--secondary);
      font-size: 8px;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: .75px;
      box-shadow: 0 7px 18px rgba(242, 103, 0, .25);
    }

    figcaption {
      margin-top: 14px;
      color: #8fa2bb;
      font-size: 9px;
      line-height: 1.5;
      text-align: center;
    }
  }

  .platform-capture-window {
    overflow: hidden;
    border: 1px solid rgba(8, 38, 92, .13);
    border-radius: 8px 25px 8px 25px;
    background: #fff;
    box-shadow: 0 22px 48px rgba(0, 8, 30, .26);

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

  .platform-capture-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
    padding-right: 142px;
  }

  .platform-capture-tab {
    min-height: 36px;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    color: #b8c6d8;
    background: rgba(255, 255, 255, .06);
    font: inherit;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .25px;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;

    &:hover {
      color: #fff;
      border-color: rgba(255, 255, 255, .32);
      background: rgba(255, 255, 255, .11);
    }

    &:focus-visible {
      outline: 3px solid rgba(242, 103, 0, .42);
      outline-offset: 3px;
    }

    &.is-active {
      color: #fff;
      border-color: var(--secondary);
      background: var(--secondary);
      box-shadow: 0 7px 18px rgba(242, 103, 0, .22);
    }
  }

  .platform-capture-window[hidden] { display: none; }
}

.reveal-ready .platform-function-list .platform-function {
  &:nth-child(2) { transition-delay: .05s; }
  &:nth-child(3) { transition-delay: .1s; }
  &:nth-child(4) { transition-delay: .15s; }
}

@media (max-width: 980px) {
  .platform-functions-section {
    .platform-functions-container {
      grid-template-columns: minmax(0, .88fr) minmax(390px, 1.12fr);
      gap: 36px;
    }

    .platform-functions-preview { padding: 18px; }
  }
}

@media (max-width: 780px) {
  .platform-functions-section {
    padding: 88px 0 82px;

    .platform-functions-container {
      width: calc(100% - 28px);
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .platform-functions-heading h2 { font-size: 42px; letter-spacing: -1.9px; }
    .platform-functions-preview { width: min(100%, 600px); margin-inline: auto; }
    .platform-capture-tabs { padding-right: 0; }
  }
}

@media (max-width: 520px) {
  .platform-functions-section {
    .platform-function {
      padding: 15px;
      grid-template-columns: 44px minmax(0, 1fr);
      gap: 13px;
    }

    .platform-function__icon { width: 44px; height: 44px; }
    .platform-functions-cta { width: 100%; }
    .platform-functions-preview { padding: 11px; border-radius: 8px 24px 8px 24px; }
    .platform-functions-preview__label { top: 4px; right: 8px; }
    .platform-capture-tabs { padding-top: 26px; }
  }
}

@media (prefers-reduced-motion: reduce) {
  .platform-capture-tab { transition: none; }
}

/* Canales de acceso */
.access-channels-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 112px 0 116px;
  background:
    linear-gradient(rgba(8, 38, 92, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 38, 92, .032) 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, #f3f8fd 52%, #eef8f5 100%);
  background-size: 44px 44px, 44px 44px, auto;

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

  &::before {
    top: -230px;
    right: -180px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(0, 168, 107, .11), transparent 68%);
  }

  &::after {
    bottom: -260px;
    left: -220px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(242, 103, 0, .09), transparent 69%);
  }

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

  .access-channels-heading {
    max-width: 820px;
    margin: 0 auto 52px;
    text-align: center;

    .section-index {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--tertiary);
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: .12em;

      &::before { content: ""; width: 26px; height: 2px; border-radius: 4px; background: var(--tertiary); }
    }

    h2 {
      margin: 17px 0 18px;
      color: var(--primary);
      font-size: clamp(43px, 5.4vw, 68px);
      line-height: .99;
      letter-spacing: -3.2px;

      span { color: var(--secondary); }
    }

    p { max-width: 730px; margin: 0 auto; color: var(--muted); font-size: 17px; line-height: 1.75; }
  }

  .access-tier {
    position: relative;
    border-radius: 30px;
  }

  .access-tier--complete {
    padding: clamp(26px, 4vw, 46px);
    color: #fff;
    background:
      radial-gradient(circle at 86% 8%, rgba(0, 168, 107, .2), transparent 30%),
      linear-gradient(145deg, #061b40, var(--primary));
    box-shadow: 0 28px 68px rgba(8, 38, 92, .18);
  }

  .access-tier--quick {
    margin-top: 30px;
    padding: clamp(25px, 3.5vw, 40px);
    border: 1px solid rgba(8, 38, 92, .09);
    background: rgba(255, 255, 255, .8);
    box-shadow: 0 20px 52px rgba(8, 38, 92, .08);
    backdrop-filter: blur(7px);
  }

  .access-tier__heading {
    margin-bottom: 28px;
    display: flex;
    align-items: flex-start;
    gap: 15px;

    .access-tier__number {
      width: 43px;
      height: 43px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, .17);
      border-radius: 13px;
      color: #fff;
      background: rgba(255, 255, 255, .09);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .08em;
    }

    div > span {
      display: block;
      margin-bottom: 4px;
      color: #7de2bc;
      font-size: 10px;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: .13em;
    }

    h3 { margin: 0; color: #fff; font-size: clamp(23px, 2.4vw, 32px); letter-spacing: -.8px; }
    p { margin: 7px 0 0; color: #b8c8dc; font-size: 13px; line-height: 1.55; }
  }

  .access-tier--quick .access-tier__heading {
    .access-tier__number { border-color: rgba(8, 38, 92, .12); color: var(--primary); background: var(--soft-blue); }
    div > span { color: var(--secondary); }
    h3 { color: var(--primary); }
    p { max-width: 720px; color: var(--muted); }
  }

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

  .access-primary-card {
    position: relative;
    min-width: 0;
    min-height: 560px;
    padding: clamp(24px, 3vw, 34px);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 23px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 20px 44px rgba(2, 18, 45, .18);
    transition: transform .24s ease, box-shadow .24s ease;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 30px;
      width: 76px;
      height: 4px;
      border-radius: 0 0 6px 6px;
      background: var(--secondary);
    }

    &:hover { transform: translateY(-4px); box-shadow: 0 26px 55px rgba(2, 18, 45, .23); }
    &.access-primary-card--android::before { background: #3ddc84; }
  }

  .access-primary-card__topline {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .access-level-label {
    padding: 7px 10px;
    border: 1px solid rgba(0, 168, 107, .19);
    border-radius: 30px;
    color: #087c52;
    background: #edf9f4;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .09em;
  }

  .access-primary-card__eyebrow {
    color: var(--secondary);
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .12em;
  }

  .access-primary-card h4 {
    margin: 7px 0 11px;
    color: var(--primary);
    font-size: clamp(27px, 3vw, 37px);
    line-height: 1.05;
    letter-spacing: -1.3px;
  }

  .access-primary-card > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

  .access-feature-list {
    margin: 23px 0 28px;
    padding: 0;
    display: grid;
    gap: 10px;
    list-style: none;

    li {
      position: relative;
      padding-left: 25px;
      color: #40516a;
      font-size: 12px;
      line-height: 1.55;

      &::before {
        content: "";
        position: absolute;
        top: 3px;
        left: 0;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: #e8f7f1;
        box-shadow: inset 0 0 0 1px rgba(0, 168, 107, .17);
      }

      &::after {
        content: "";
        position: absolute;
        top: 7px;
        left: 4px;
        width: 6px;
        height: 3px;
        border-left: 1.5px solid var(--tertiary);
        border-bottom: 1.5px solid var(--tertiary);
        transform: rotate(-45deg);
      }
    }
  }

  .access-action {
    min-height: 50px;
    margin-top: auto;
    padding: 0 19px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 2px solid var(--secondary);
    border-radius: 12px;
    color: #fff;
    background: var(--secondary);
    font-size: 13px;
    font-weight: 850;
    box-shadow: 0 12px 24px rgba(242, 103, 0, .22);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;

    span { font-size: 17px; transition: transform .2s ease; }
    &:hover { background: var(--secondary-dark); box-shadow: 0 16px 28px rgba(242, 103, 0, .28); transform: translateY(-2px); }
    &:hover span { transform: translate(2px, -2px); }
    &:active { transform: translateY(0); }
    &:focus-visible { outline: 3px solid rgba(242, 103, 0, .32); outline-offset: 3px; }
  }

  .google-play-link {
    width: 194px;
    min-height: 58px;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
    transition: transform .2s ease, filter .2s ease;

    img { width: 194px; height: auto; display: block; }
    &:hover { filter: brightness(1.08); transform: translateY(-2px); }
    &:active { transform: translateY(0); }
    &:focus-visible { outline: 3px solid var(--tertiary); outline-offset: 3px; }
  }

  .access-channel-icon {
    position: relative;
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(8, 38, 92, .1);
    border-radius: 17px;
    background: var(--soft-blue);
  }

  .access-channel-icon--web {
    color: var(--primary);

    i {
      position: relative;
      width: 31px;
      height: 22px;
      display: block;
      border: 2px solid currentColor;
      border-radius: 4px;

      &::before { content: ""; position: absolute; right: 3px; bottom: 3px; left: 3px; height: 2px; border-radius: 3px; background: var(--secondary); }
      &::after { content: ""; position: absolute; bottom: -8px; left: 9px; width: 10px; height: 6px; border-bottom: 2px solid currentColor; border-left: 2px solid currentColor; border-right: 2px solid currentColor; }
    }
  }

  .access-channel-icon--android {
    border-color: rgba(61, 220, 132, .24);
    background: #edfff5;

    i {
      position: relative;
      width: 30px;
      height: 20px;
      display: block;
      border-radius: 12px 12px 5px 5px;
      background: #2fbd71;

      &::before { content: ""; position: absolute; top: 7px; left: 8px; width: 3px; height: 3px; border-radius: 50%; background: #fff; box-shadow: 11px 0 0 #fff; }
      &::after { content: ""; position: absolute; top: -6px; left: 6px; width: 17px; height: 8px; border-left: 2px solid #2fbd71; border-right: 2px solid #2fbd71; transform: perspective(15px) rotateX(-25deg); }
    }
  }

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

  .access-message-card {
    position: relative;
    min-width: 0;
    padding: 23px;
    border: 1px solid rgba(8, 38, 92, .1);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(8, 38, 92, .07);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;

    &:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(8, 38, 92, .11); }
    &.access-message-card--whatsapp:hover { border-color: rgba(37, 211, 102, .42); }
    &.access-message-card--telegram:hover { border-color: rgba(39, 167, 231, .42); }
    &.access-message-card--messenger:hover { border-color: rgba(0, 132, 255, .42); }

    > p { min-height: 66px; margin: 18px 0 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
  }

  .access-message-card__heading {
    display: flex;
    align-items: center;
    gap: 13px;

    > div > span { color: var(--muted); font-size: 8px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
    h4 { margin: 3px 0 0; color: var(--primary); font-size: 19px; line-height: 1.15; letter-spacing: -.35px; }
  }

  .access-message-card .access-channel-icon { width: 48px; height: 48px; border-radius: 15px; }
  .access-channel-icon--whatsapp { border-color: rgba(37, 211, 102, .25); background: #eefff4; }
  .access-channel-icon--whatsapp img { width: 30px; height: 30px; display: block; object-fit: contain; }

  .access-channel-icon--telegram {
    border-color: rgba(39, 167, 231, .24);
    background: #ecf9ff;

    i {
      width: 27px;
      height: 24px;
      display: block;
      background: #27a7e7;
      clip-path: polygon(3% 43%, 96% 3%, 77% 96%, 51% 73%, 38% 88%, 38% 65%);
    }
  }

  .access-channel-icon--messenger {
    border-color: rgba(0, 132, 255, .23);
    background: #eff6ff;

    i {
      position: relative;
      width: 29px;
      height: 29px;
      display: block;
      border-radius: 50% 50% 48% 44%;
      background: linear-gradient(145deg, #00b2ff, #006aff 55%, #a033ff);

      &::before { content: ""; position: absolute; bottom: -3px; left: 4px; width: 9px; height: 9px; background: #1679fa; clip-path: polygon(0 0, 100% 0, 10% 100%); }
      &::after { content: ""; position: absolute; top: 9px; left: 6px; width: 17px; height: 10px; background: #fff; clip-path: polygon(0 60%, 38% 20%, 56% 43%, 100% 0, 62% 78%, 43% 56%); }
    }
  }

  .access-feature-list--compact {
    margin: 18px 0 0;
    padding-top: 17px;
    grid-template-columns: 1fr;
    gap: 7px;
    border-top: 1px solid rgba(8, 38, 92, .08);

    li { font-size: 11px; }
  }

  .access-channel-notices {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1.18fr .82fr;
    gap: 14px;
  }

  .access-channel-note,
  .access-channel-security {
    min-height: 76px;
    margin: 0;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    border-radius: 15px;
    font-size: 12px;
    line-height: 1.65;
  }

  .access-channel-note {
    border: 1px solid rgba(242, 103, 0, .18);
    color: #675344;
    background: #fff8f2;

    strong { margin-right: 5px; color: var(--secondary-dark); }
  }

  .access-channel-security {
    gap: 12px;
    border: 1px solid rgba(8, 38, 92, .11);
    color: #53647a;
    background: #f3f7fc;

    > span {
      position: relative;
      width: 30px;
      height: 34px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border-radius: 15px 15px 18px 18px;
      background: var(--primary);
      clip-path: polygon(50% 0, 93% 15%, 88% 70%, 50% 100%, 12% 70%, 7% 15%);

      i { width: 7px; height: 11px; display: block; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg) translate(-1px, -1px); }
    }

    strong { margin-right: 3px; color: var(--primary); }
  }
}

@media (max-width: 900px) {
  .access-channels-section {
    .access-primary-card { min-height: 610px; }
    .access-messaging-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .access-message-card--messenger { grid-column: 1 / -1; width: calc(50% - 8px); justify-self: center; }
    .access-channel-notices { grid-template-columns: 1fr; }
  }
}

@media (max-width: 700px) {
  .access-channels-section {
    padding: 88px 0 92px;

    .access-channels-container { width: calc(100% - 28px); }
    .access-channels-heading { margin-bottom: 38px; text-align: left; }
    .access-channels-heading h2 { font-size: 44px; letter-spacing: -2px; }
    .access-channels-heading p { font-size: 15px; }
    .access-primary-grid,
    .access-messaging-grid { grid-template-columns: 1fr; }
    .access-primary-card { min-height: auto; }
    .access-primary-card--web { order: 1; }
    .access-primary-card--android { order: 2; }
    .access-message-card--messenger { grid-column: auto; width: 100%; }
    .access-message-card > p { min-height: auto; }
    .access-action { width: 100%; margin-top: 4px; }
    .google-play-link { margin-top: 4px; }
    .access-channel-note,
    .access-channel-security { align-items: flex-start; }
  }
}

@media (max-width: 430px) {
  .access-channels-section {
    .access-tier--complete,
    .access-tier--quick { padding: 19px; border-radius: 22px; }
    .access-tier__heading { gap: 11px; }
    .access-tier__heading .access-tier__number { width: 38px; height: 38px; }
    .access-primary-card { padding: 22px 19px; border-radius: 18px; }
    .access-primary-card__topline { align-items: flex-start; }
    .access-level-label { max-width: 94px; text-align: center; line-height: 1.35; }
    .access-message-card { padding: 20px 18px; }
    .access-channel-notices { margin-top: 16px; }
  }
}

@media (prefers-reduced-motion: reduce) {
  .access-channels-section {
    .access-primary-card,
    .access-message-card,
    .access-action,
    .access-action span,
    .google-play-link { transition: none; }

    .access-primary-card:hover,
    .access-message-card:hover,
    .access-action:hover,
    .google-play-link:hover { transform: none; }
  }
}

/* Modalidades para operar */
.operating-modes-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0 116px;
  border-top: 1px solid rgba(8, 38, 92, .055);
  background:
    linear-gradient(rgba(8, 38, 92, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 38, 92, .035) 1px, transparent 1px),
    linear-gradient(180deg, #edf4fc 0%, #f5f9fe 46%, #fff 100%);
  background-size: 42px 42px, 42px 42px, auto;
  box-shadow: inset 0 22px 48px rgba(8, 38, 92, .035);

  &::before {
    content: "";
    position: absolute;
    top: -180px;
    left: 50%;
    width: 760px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8, 38, 92, .1), transparent 68%);
    transform: translateX(-50%);
    pointer-events: none;
  }

  .operating-modes-container {
    position: relative;
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
  }

  .operating-modes-heading {
    width: min(100%, 790px);
    margin: 0 auto 52px;
    text-align: center;

    .section-index {
      color: var(--primary-light);
      font-size: clamp(12px, 1vw, 13px);
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: 1.25px;
    }

    h2 {
      margin: 15px 0 17px;
      color: var(--primary);
      font-size: clamp(39px, 5.2vw, 62px);
      line-height: 1.02;
      letter-spacing: -2.5px;

      span { color: var(--secondary); }
    }

    p {
      margin: 0 auto;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.72;
    }
  }

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

  .operating-mode {
    position: relative;
    min-width: 0;
    min-height: 505px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(8, 38, 92, .11);
    border-radius: 10px 30px 10px 30px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 50px rgba(8, 38, 92, .09);
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;

    &::after {
      content: "";
      position: absolute;
      top: 0;
      left: 28px;
      width: 54px;
      height: 4px;
      border-radius: 0 0 5px 5px;
      background: var(--primary);
    }

    &:hover {
      border-color: rgba(8, 38, 92, .24);
      box-shadow: 0 24px 62px rgba(8, 38, 92, .13);
      transform: translateY(-5px);
    }

    &.operating-mode--main {
      border-color: rgba(242, 103, 0, .35);
      background:
        linear-gradient(145deg, rgba(242, 103, 0, .075), transparent 34%),
        #fff;
      box-shadow: 0 25px 65px rgba(242, 103, 0, .13), 0 16px 42px rgba(8, 38, 92, .09);

      &::after { width: 88px; background: var(--secondary); }
    }

    &.operating-mode--network::after { background: var(--tertiary); }

    h3 {
      margin: 9px 0 12px;
      color: var(--primary);
      font-size: 25px;
      line-height: 1.15;
      letter-spacing: -.65px;
    }

    > p {
      min-height: 84px;
      margin: 0 0 20px;
      color: #485a73;
      font-size: 14px;
      line-height: 1.68;
    }

    ul {
      margin: 0 0 27px;
      padding: 20px 0 0;
      display: grid;
      gap: 12px;
      border-top: 1px solid var(--line);
      list-style: none;
    }

    li {
      position: relative;
      padding-left: 28px;
      color: #34465f;
      font-size: 13px;
      line-height: 1.58;

      &::before {
        content: "✓";
        position: absolute;
        top: 0;
        left: 0;
        width: 19px;
        height: 19px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: #fff;
        background: var(--tertiary);
        font-size: 10px;
        font-weight: 900;
      }
    }
  }

  .operating-mode__topline {
    min-height: 58px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }

  .operating-mode__icon {
    position: relative;
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 16px 6px 16px 6px;
    color: var(--primary);
    background: var(--soft-blue);

    i,
    i::before,
    i::after {
      position: absolute;
      display: block;
      box-sizing: border-box;
      content: "";
    }

    &.operating-mode__icon--business {
      color: var(--secondary);
      background: rgba(242, 103, 0, .1);

      i {
        bottom: 12px;
        width: 25px;
        height: 19px;
        border: 2px solid currentColor;
        border-radius: 2px;
      }

      i::before {
        top: -8px;
        left: -3px;
        width: 27px;
        height: 8px;
        border: 2px solid currentColor;
        border-radius: 4px 4px 2px 2px;
        background: repeating-linear-gradient(90deg, currentColor 0 3px, transparent 3px 7px);
      }

      i::after { right: 4px; bottom: 0; width: 6px; height: 10px; background: currentColor; }
    }

    &.operating-mode__icon--branches i,
    &.operating-mode__icon--network i {
      width: 8px;
      height: 8px;
      border: 2px solid currentColor;
      border-radius: 50%;
      background: #fff;
      box-shadow: -13px 15px 0 -2px #fff, -13px 15px 0 0 currentColor, 13px 15px 0 -2px #fff, 13px 15px 0 0 currentColor;
    }

    &.operating-mode__icon--branches i::before,
    &.operating-mode__icon--network i::before {
      top: 7px;
      left: 2px;
      width: 2px;
      height: 12px;
      background: currentColor;
      box-shadow: -7px 6px 0 -1px currentColor, 7px 6px 0 -1px currentColor;
    }

    &.operating-mode__icon--network {
      color: var(--tertiary);
      background: rgba(0, 168, 107, .1);
    }
  }

  .operating-mode__badge {
    padding: 7px 10px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .65px;
  }

  .operating-mode__badge { color: #a83f00; background: rgba(242, 103, 0, .12); }

  .operating-mode__audience {
    margin-top: 17px;
    color: #00794e;
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .8px;
  }

  .operating-mode__button {
    width: 100%;
    min-height: 56px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 14px 13px 19px;
    border: 1px solid var(--primary);
    border-radius: 11px;
    color: #fff;
    background: var(--primary);
    box-shadow: 0 12px 26px rgba(8, 38, 92, .2);
    font-size: 14px;
    font-weight: 850;
    letter-spacing: .05px;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;

    > span {
      width: 29px;
      height: 29px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, .34);
      border-radius: 50%;
      background: rgba(255, 255, 255, .14);
      font-size: 16px;
      line-height: 1;
      transition: transform .2s ease, background-color .2s ease;
    }

    &:hover {
      color: #fff;
      border-color: var(--primary-light);
      background: var(--primary-light);
      box-shadow: 0 16px 32px rgba(8, 38, 92, .27);
      transform: translateY(-3px);
    }

    &:hover > span { background: rgba(255, 255, 255, .22); transform: translateX(2px); }
    &:focus-visible { outline: 3px solid rgba(242, 103, 0, .38); outline-offset: 3px; }

    &.operating-mode__button--primary {
      border-color: #bd4500;
      background: linear-gradient(135deg, #d95400, #bd4500);
      box-shadow: 0 13px 29px rgba(189, 69, 0, .28);
    }

    &.operating-mode__button--primary:hover {
      border-color: #a93d00;
      background: linear-gradient(135deg, #c64a00, #a93d00);
      box-shadow: 0 17px 34px rgba(169, 61, 0, .34);
    }

    &.operating-mode__button--secondary { border-color: var(--primary); background: var(--primary); }

    &.operating-mode__button--tertiary {
      border-color: #007e51;
      background: #007e51;
      box-shadow: 0 13px 29px rgba(0, 126, 81, .25);
    }

    &.operating-mode__button--tertiary:hover {
      border-color: #006c45;
      background: #006c45;
      box-shadow: 0 17px 34px rgba(0, 108, 69, .31);
    }
  }
}

@media (max-width: 980px) {
  .operating-modes-section {
    .operating-modes-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .operating-mode--network { width: min(100%, 560px); grid-column: 1 / -1; justify-self: center; }
  }
}

@media (max-width: 660px) {
  .operating-modes-section {
    padding: 86px 0 90px;

    .operating-modes-container { width: calc(100% - 28px); }
    .operating-modes-heading { margin-bottom: 38px; text-align: left; }
    .operating-modes-heading h2 { font-size: 41px; letter-spacing: -1.8px; }
    .operating-modes-heading p { font-size: 14px; }
    .operating-modes-grid { grid-template-columns: 1fr; }
    .operating-mode--network { width: 100%; grid-column: auto; }
    .operating-mode { min-height: 0; padding: 24px; }
    .operating-mode > p { min-height: 0; }
  }
}

@media (prefers-reduced-motion: reduce) {
  .operating-mode,
  .operating-mode__button,
  .operating-mode__button > span { transition: none; }

  .operating-mode:hover,
  .operating-mode__button:hover { transform: none; }

  .operating-mode__button:hover > span { transform: none; }
}

/* Seguridad y control */
.security-section {
  position: relative;
  overflow: hidden;
  padding: 116px 0;
  color: #fff;
  background:
    radial-gradient(circle at 8% 18%, rgba(0, 168, 107, .17), transparent 24%),
    radial-gradient(circle at 94% 85%, rgba(242, 103, 0, .13), transparent 25%),
    linear-gradient(145deg, #041633 0%, var(--primary) 58%, #0a3168 100%);

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .58;
    background:
      linear-gradient(rgba(255, 255, 255, .065) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, .065) 1px, transparent 1px);
    background-size: 44px 44px;
    background-position: center;
    pointer-events: none;
  }

  .security-container {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(285px, .72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: clamp(48px, 7vw, 92px);
  }

  .security-heading {
    .section-index {
      color: #78e2b9;
      font-size: clamp(12px, 1vw, 13px);
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: 1.25px;
    }

    h2 {
      margin: 17px 0 19px;
      color: #fff;
      font-size: clamp(42px, 5.3vw, 65px);
      line-height: 1.01;
      letter-spacing: -2.8px;

      span { color: #ff9850; }
    }

    > p {
      margin: 0;
      color: #c0cde0;
      font-size: 15px;
      line-height: 1.72;
    }
  }

  .security-signal {
    margin-top: 28px;
    padding: 14px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(120, 226, 185, .25);
    border-radius: 10px 22px 10px 22px;
    background: rgba(0, 168, 107, .09);

    strong {
      display: block;
      color: #fff;
      font-size: 12px;
      line-height: 1.35;
    }

    small {
      display: block;
      margin-top: 3px;
      color: #9fb1c9;
      font-size: 10px;
      line-height: 1.45;
    }
  }

  .security-signal__icon {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px 4px 12px 4px;
    color: #78e2b9;
    background: rgba(0, 168, 107, .14);

    i {
      position: relative;
      width: 18px;
      height: 14px;
      border: 2px solid currentColor;
      border-radius: 3px;

      &::before {
        content: "";
        position: absolute;
        left: 3px;
        bottom: 11px;
        width: 8px;
        height: 8px;
        border: 2px solid currentColor;
        border-bottom: 0;
        border-radius: 8px 8px 0 0;
      }

      &::after {
        content: "";
        position: absolute;
        top: 4px;
        left: 6px;
        width: 3px;
        height: 5px;
        border-radius: 3px;
        background: currentColor;
      }
    }
  }

  .security-cta {
    min-height: 52px;
    margin-top: 22px;
    padding: 13px 15px 13px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 9px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    font-size: 12px;
    font-weight: 800;
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease;

    span {
      color: #ff9850;
      font-size: 17px;
      transition: transform .2s ease;
    }

    &:hover {
      border-color: rgba(242, 103, 0, .7);
      background: rgba(242, 103, 0, .12);
      transform: translateY(-2px);
    }

    &:hover span { transform: translateX(3px); }
    &:focus-visible { outline: 3px solid rgba(242, 103, 0, .48); outline-offset: 3px; }
  }

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

  .security-pillar {
    position: relative;
    min-width: 0;
    min-height: 304px;
    padding: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 9px 27px 9px 27px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .045));
    box-shadow: inset 0 1px rgba(255, 255, 255, .08), 0 18px 40px rgba(0, 6, 24, .17);
    transition: border-color .22s ease, background-color .22s ease, transform .22s ease;

    &::after {
      content: "";
      position: absolute;
      right: -38px;
      bottom: -38px;
      width: 105px;
      height: 105px;
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 50%;
    }

    &:hover {
      border-color: rgba(120, 226, 185, .34);
      background: linear-gradient(145deg, rgba(255, 255, 255, .135), rgba(255, 255, 255, .06));
      transform: translateY(-4px);
    }

    h3 {
      margin: 18px 0 9px;
      color: #fff;
      font-size: 19px;
      line-height: 1.2;
      letter-spacing: -.35px;
    }

    p {
      margin: 0;
      color: #b6c5d9;
      font-size: 12px;
      line-height: 1.62;
    }

    ul {
      margin: 18px 0 0;
      padding: 15px 0 0;
      display: grid;
      gap: 7px;
      border-top: 1px solid rgba(255, 255, 255, .1);
      list-style: none;
    }

    li {
      position: relative;
      padding-left: 17px;
      color: #d9e3f0;
      font-size: 10px;
      line-height: 1.45;

      &::before {
        content: "";
        position: absolute;
        top: 6px;
        left: 1px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #78e2b9;
        box-shadow: 0 0 0 3px rgba(0, 168, 107, .12);
      }
    }
  }

  .security-pillar__number {
    position: absolute;
    top: 19px;
    right: 21px;
    color: rgba(255, 255, 255, .2);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .8px;
  }

  .security-pillar__icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 15px 5px 15px 5px;
    color: #ff9850;
    background: rgba(242, 103, 0, .12);

    i,
    i::before,
    i::after {
      position: absolute;
      display: block;
      box-sizing: border-box;
      content: "";
    }

    &.security-pillar__icon--access i {
      width: 21px;
      height: 16px;
      border: 2px solid currentColor;
      border-radius: 3px;
    }

    &.security-pillar__icon--access i::before {
      bottom: 13px;
      left: 4px;
      width: 9px;
      height: 9px;
      border: 2px solid currentColor;
      border-bottom: 0;
      border-radius: 8px 8px 0 0;
    }

    &.security-pillar__icon--access i::after { top: 5px; left: 7px; width: 3px; height: 6px; border-radius: 3px; background: currentColor; }

    &.security-pillar__icon--users {
      color: #78e2b9;
      background: rgba(0, 168, 107, .12);

      i { top: 11px; left: 20px; width: 10px; height: 10px; border: 2px solid currentColor; border-radius: 50%; }
      i::before { top: 12px; left: -10px; width: 8px; height: 8px; border: 2px solid currentColor; border-radius: 50%; box-shadow: 22px 0 0 -2px var(--primary), 22px 0 0 0 currentColor; }
      i::after { top: 22px; left: -12px; width: 30px; height: 10px; border: 2px solid currentColor; border-bottom: 0; border-radius: 12px 12px 0 0; }
    }

    &.security-pillar__icon--verification {
      color: #82bcff;
      background: rgba(76, 152, 237, .13);

      i { width: 23px; height: 23px; border: 2px solid currentColor; border-radius: 5px; }
      i::before { top: 5px; left: 5px; width: 10px; height: 6px; border-left: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(-45deg); }
    }

    &.security-pillar__icon--support i {
      width: 23px;
      height: 23px;
      border: 2px solid currentColor;
      border-bottom-color: transparent;
      border-radius: 50%;
    }

    &.security-pillar__icon--support i::before { left: -4px; bottom: 1px; width: 7px; height: 10px; border-radius: 4px; background: currentColor; box-shadow: 24px 0 currentColor; }
    &.security-pillar__icon--support i::after { right: -3px; bottom: -4px; width: 9px; height: 2px; border-radius: 2px; background: currentColor; }
  }
}

.reveal-ready .security-pillars .security-pillar {
  &:nth-child(2) { transition-delay: .05s; }
  &:nth-child(3) { transition-delay: .1s; }
  &:nth-child(4) { transition-delay: .15s; }
}

@media (max-width: 920px) {
  .security-section {
    .security-container { grid-template-columns: 1fr; gap: 48px; }
    .security-heading { width: min(100%, 720px); }
    .security-heading h2 { max-width: 760px; }
    .security-signal { max-width: 520px; }
    .security-cta { width: min(100%, 520px); }
  }
}

@media (max-width: 580px) {
  .security-section {
    padding: 88px 0 92px;

    .security-container { width: calc(100% - 28px); }
    .security-heading h2 { font-size: 42px; letter-spacing: -1.9px; }
    .security-heading > p { font-size: 14px; }
    .security-pillars { grid-template-columns: 1fr; }
    .security-pillar { min-height: 0; padding: 23px; }
    .security-cta { min-height: 56px; font-size: 11px; }
  }
}

@media (prefers-reduced-motion: reduce) {
  .security-pillar,
  .security-cta,
  .security-cta span { transition: none; }

  .security-pillar:hover,
  .security-cta:hover,
  .security-cta:hover span { transform: none; }
}

/* Testimonios y casos de éxito: componente preparado, aún no publicado */
.testimonials-section {
  position: relative;
  padding: 108px 0;
  background:
    linear-gradient(rgba(8, 38, 92, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 38, 92, .035) 1px, transparent 1px),
    var(--soft-blue);
  background-size: 44px 44px;

  &[hidden] { display: none; }

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

  .testimonials-heading {
    width: min(100%, 760px);
    margin: 0 auto 46px;
    text-align: center;

    .section-index {
      color: var(--secondary);
      font-size: clamp(12px, 1vw, 13px);
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: 1.2px;
    }

    h2 {
      margin: 14px 0 16px;
      color: var(--primary);
      font-size: clamp(38px, 5vw, 58px);
      line-height: 1.04;
      letter-spacing: -2.2px;
    }

    p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }
  }

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

  .testimonial-card {
    min-width: 0;
    padding: 28px;
    border: 1px solid rgba(8, 38, 92, .1);
    border-radius: 10px 28px 10px 28px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(8, 38, 92, .1);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;

    &:hover {
      border-color: rgba(242, 103, 0, .28);
      box-shadow: 0 24px 58px rgba(8, 38, 92, .14);
      transform: translateY(-4px);
    }

    blockquote { margin: 22px 0 0; }

    blockquote > p {
      margin: 0;
      color: var(--ink);
      font-size: 16px;
      line-height: 1.7;
    }

    blockquote footer {
      margin-top: 24px;
      padding-top: 18px;
      display: grid;
      gap: 3px;
      border-top: 1px solid var(--line);

      strong { color: var(--primary); font-size: 14px; }
      span { color: #40516b; font-size: 12px; }
      small { color: var(--muted); font-size: 11px; }
    }

    h3 {
      margin: 18px 0;
      color: var(--primary);
      font-size: 23px;
      line-height: 1.2;
    }

    dl { margin: 0; display: grid; gap: 14px; }
    dl div { padding-top: 12px; border-top: 1px solid var(--line); }
    dt { color: var(--primary); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .65px; }
    dd { margin: 5px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
  }

  .testimonial-card__type {
    display: inline-flex;
    padding: 6px 9px;
    border-radius: 20px;
    color: #00794e;
    background: rgba(0, 168, 107, .1);
    font-size: 9px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .65px;
  }

  .testimonials-cta {
    min-height: 50px;
    margin: 32px auto 0;
    padding: 12px 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    border: 1px solid var(--primary);
    border-radius: 9px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;

    &[hidden] { display: none; }
    &:hover { color: #fff; background: var(--primary); }
    &:focus-visible { outline: 3px solid rgba(242, 103, 0, .4); outline-offset: 3px; }
  }
}

@media (max-width: 900px) {
  .testimonials-section {
    .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }
}

@media (max-width: 600px) {
  .testimonials-section {
    padding: 84px 0;

    .testimonials-container { width: calc(100% - 28px); }
    .testimonials-heading { text-align: left; }
    .testimonials-heading h2 { font-size: 40px; letter-spacing: -1.7px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card { padding: 24px; }
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-card { transition: none; }
  .testimonial-card:hover { transform: none; }
}

/* Preguntas frecuentes */
.faq-section {
  position: relative;
  padding: 112px 0 118px;
  background-color: #dfe8f1;
  background-image:
    linear-gradient(rgba(8, 38, 92, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 38, 92, .035) 1px, transparent 1px),
    linear-gradient(180deg, #e4ecf3 0%, #dce6ef 100%);
  background-size: 44px 44px, 44px 44px, auto;

  .faq-container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(270px, .64fr) minmax(0, 1.36fr);
    align-items: start;
    gap: clamp(48px, 7vw, 90px);
  }

  .faq-heading {
    position: sticky;
    top: 112px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 10px 34px 10px 34px;
    background:
      radial-gradient(circle at 100% 0, rgba(242, 103, 0, .2), transparent 34%),
      linear-gradient(145deg, #041633, var(--primary));
    box-shadow: 0 28px 65px rgba(8, 38, 92, .2);

    .section-index {
      color: #ff9850;
      font-size: clamp(12px, 1vw, 13px);
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: 1.2px;
    }

    h2 {
      margin: 16px 0 18px;
      color: #fff;
      font-size: clamp(42px, 5vw, 61px);
      line-height: 1.01;
      letter-spacing: -2.6px;

      span { color: var(--secondary); }
    }

    > p {
      margin: 0;
      color: #c4d0e1;
      font-size: 15px;
      line-height: 1.72;
    }
  }

  .faq-heading__note {
    margin-top: 26px;
    padding: 14px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(120, 226, 185, .22);
    border-radius: 9px 20px 9px 20px;
    background: rgba(0, 168, 107, .1);

    > span {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: var(--tertiary);
      font-size: 16px;
      font-weight: 850;
    }

    p {
      margin: 0;
      color: #d5e1ee;
      font-size: 10px;
      line-height: 1.5;
    }
  }

  .faq-cta {
    min-height: 52px;
    margin-top: 21px;
    padding: 12px 14px 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid #bd4500;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, #d95400, #bd4500);
    box-shadow: 0 12px 28px rgba(189, 69, 0, .25);
    font-size: 12px;
    font-weight: 800;
    transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;

    span { color: #fff; font-size: 17px; transition: transform .2s ease; }

    &:hover {
      background: linear-gradient(135deg, #c64a00, #a93d00);
      box-shadow: 0 16px 34px rgba(169, 61, 0, .31);
      transform: translateY(-2px);
    }

    &:hover span { transform: translateX(3px); }
    &:focus-visible { outline: 3px solid rgba(242, 103, 0, .42); outline-offset: 3px; }
  }

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

  .faq-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(8, 38, 92, .15);
    border-radius: 18px;
    background: rgba(239, 244, 248, .88);
    box-shadow: 0 7px 18px rgba(8, 38, 92, .065);
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 4px;
      background: var(--primary);
      opacity: .68;
      transition: background-color .2s ease, opacity .2s ease;
    }

    &:hover {
      border-color: rgba(8, 38, 92, .26);
      box-shadow: 0 11px 25px rgba(8, 38, 92, .09);
      transform: translateX(3px);
    }

    &[open] {
      border-color: rgba(242, 103, 0, .34);
      background: #e8f0f6;
      box-shadow: 0 13px 30px rgba(8, 38, 92, .11);
      transform: none;
    }

    &[open]::before {
      background: var(--secondary);
      opacity: 1;
    }

    summary {
      min-height: 78px;
      padding: 18px 20px;
      display: grid;
      grid-template-columns: 36px minmax(0, 1fr) 38px;
      align-items: center;
      gap: 14px;
      color: var(--primary);
      cursor: pointer;
      font-size: 15px;
      font-weight: 800;
      line-height: 1.35;
      list-style: none;

      &::-webkit-details-marker { display: none; }

      &:hover { background: rgba(8, 38, 92, .035); }
      &:focus-visible { outline: 3px solid rgba(242, 103, 0, .42); outline-offset: -3px; }
    }
  }

  .faq-item__number {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(8, 38, 92, .1);
    border-radius: 10px;
    color: var(--primary);
    background: #d7e3ed;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .65px;
  }

  .faq-item__status {
    grid-column: 2;
    width: fit-content;
    margin-top: -7px;
    padding: 4px 7px;
    border-radius: 14px;
    color: #765718;
    background: #fff1c4;
    font-size: 8px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .55px;
  }

  .faq-item__toggle {
    position: relative;
    grid-column: 3;
    grid-row: 1 / span 2;
    width: 38px;
    height: 38px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    background: var(--primary);

    &::before,
    &::after {
      content: "";
      position: absolute;
      top: 17px;
      left: 11px;
      width: 14px;
      height: 2px;
      border-radius: 2px;
      background: #fff;
      transition: transform .2s ease, opacity .2s ease;
    }

    &::after { transform: rotate(90deg); }
  }

  .faq-item[open] {
    .faq-item__number {
      border-color: rgba(242, 103, 0, .18);
      color: #fff;
      background: var(--secondary);
    }

    .faq-item__toggle {
      border-color: var(--secondary);
      background: var(--secondary);
    }

    .faq-item__toggle::before,
    .faq-item__toggle::after { background: #fff; }
    .faq-item__toggle::after { opacity: 0; transform: rotate(0); }
  }

  .faq-item__answer {
    margin: 0 20px 0 70px;
    padding: 18px 50px 23px 0;
    border-top: 1px solid rgba(8, 38, 92, .11);

    p {
      margin: 0;
      color: #53647c;
      font-size: 13px;
      line-height: 1.68;
    }

    a {
      color: #006f48;
      font-weight: 800;
      text-decoration: underline;
      text-decoration-color: rgba(0, 168, 107, .35);
      text-underline-offset: 3px;

      &:hover { color: var(--secondary-dark); text-decoration-color: currentColor; }
      &:focus-visible { outline: 3px solid rgba(242, 103, 0, .36); outline-offset: 2px; }
    }
  }
}

.reveal-ready .faq-list .faq-item {
  &:nth-child(2) { transition-delay: .03s; }
  &:nth-child(3) { transition-delay: .06s; }
  &:nth-child(4) { transition-delay: .09s; }
  &:nth-child(5) { transition-delay: .12s; }
  &:nth-child(6) { transition-delay: .15s; }
  &:nth-child(7) { transition-delay: .18s; }
}

@media (max-width: 820px) {
  .faq-section {
    .faq-container { grid-template-columns: 1fr; gap: 44px; }
    .faq-heading { position: static; width: min(100%, 680px); }
    .faq-heading__note { max-width: 520px; }
    .faq-cta { width: min(100%, 520px); }
  }
}

@media (max-width: 540px) {
  .faq-section {
    padding: 86px 0 92px;

    .faq-container { width: calc(100% - 28px); }
    .faq-heading { padding: 25px; border-radius: 9px 25px 9px 25px; }
    .faq-heading h2 { font-size: 42px; letter-spacing: -1.8px; }
    .faq-heading > p { font-size: 14px; }
    .faq-item { border-radius: 15px; }
    .faq-item summary { min-height: 74px; padding: 15px 14px; grid-template-columns: 34px minmax(0, 1fr) 36px; gap: 10px; font-size: 13px; }
    .faq-item__number { width: 32px; height: 32px; }
    .faq-item__toggle { width: 36px; height: 36px; }
    .faq-item__toggle::before,
    .faq-item__toggle::after { top: 16px; left: 10px; }
    .faq-item__answer { margin: 0 14px 0 58px; padding: 16px 38px 19px 0; }
    .faq-item__answer p { font-size: 12px; }
    .faq-cta { min-height: 56px; }
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-cta,
  .faq-cta span,
  .faq-item__toggle::before,
  .faq-item__toggle::after { transition: none; }

  .faq-cta:hover,
  .faq-cta:hover span,
  .faq-item:hover { transform: none; }
}

/* Contacto y soporte comercial */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0 118px;
  background-color: #061d46;
  background-image:
    radial-gradient(circle at 7% 16%, rgba(0, 168, 107, .16), transparent 27%),
    radial-gradient(circle at 94% 86%, rgba(242, 103, 0, .14), transparent 25%),
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(145deg, #041633, #08265c 58%, #061d46);
  background-size: auto, auto, 46px 46px, 46px 46px, auto;

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

  .contact-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
    column-gap: clamp(48px, 8vw, 110px);

    > .section-index {
      grid-column: 1;
      display: block;
      margin-bottom: 17px;
      color: #78e2b9;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: 1.2px;
    }

    > h2 {
      grid-column: 1;
      max-width: 650px;
      margin: 0;
      color: #fff;
      font-size: clamp(43px, 5.4vw, 68px);
      line-height: 1.01;
      letter-spacing: -2.8px;

      span { color: var(--secondary); }
    }

    > p {
      grid-column: 2;
      grid-row: 2;
      align-self: end;
      max-width: 510px;
      margin: 0 0 5px;
      color: #c5d1e2;
      font-size: 15px;
      line-height: 1.75;
    }
  }

  .contact-channels {
    grid-column: 1 / -1;
    margin-top: 58px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
    counter-reset: contact-channel;
  }

  .contact-channel {
    position: relative;
    min-height: 270px;
    padding: 25px 22px 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    background: rgba(255, 255, 255, .055);
    box-shadow: 0 22px 48px rgba(1, 13, 34, .2);
    counter-increment: contact-channel;
    transition: border-color .22s ease, background-color .22s ease, box-shadow .22s ease, transform .22s ease;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      height: 4px;
      background: #6d8dbb;
    }

    &::after {
      content: "0" counter(contact-channel);
      position: absolute;
      z-index: 0;
      right: 14px;
      bottom: -12px;
      color: rgba(255, 255, 255, .045);
      font-size: 92px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: -7px;
    }

    > div {
      position: relative;
      z-index: 1;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    &:hover {
      border-color: rgba(255, 255, 255, .27);
      box-shadow: 0 30px 60px rgba(1, 13, 34, .28);
      transform: translateY(-6px);
    }

    h3 {
      order: 1;
      margin: 22px 0 0;
      color: #fff;
      font-size: 19px;
      line-height: 1.25;
      letter-spacing: -.35px;
    }

    p { margin: 0; }

    small {
      order: 2;
      display: block;
      margin-top: 10px;
      color: #aebdd1;
      font-size: 11px;
      line-height: 1.55;
    }

    &.contact-channel--whatsapp {
      border-color: rgba(87, 209, 99, .25);
      background: linear-gradient(155deg, rgba(37, 211, 102, .14), rgba(255, 255, 255, .045) 58%);
      &::before { background: #25d366; }
    }

    &.contact-channel--phone {
      border-color: rgba(242, 103, 0, .24);
      background: linear-gradient(155deg, rgba(242, 103, 0, .14), rgba(255, 255, 255, .045) 58%);
      &::before { background: var(--secondary); }
    }

    &.contact-channel--email {
      border-color: rgba(94, 157, 235, .24);
      background: linear-gradient(155deg, rgba(62, 133, 222, .15), rgba(255, 255, 255, .045) 58%);
      &::before { background: #5e9deb; }
    }

    &.contact-channel--hours {
      border-color: rgba(225, 169, 44, .22);
      background: linear-gradient(155deg, rgba(225, 169, 44, .13), rgba(255, 255, 255, .045) 58%);
      &::before { background: #e1a92c; }
    }
  }

  .contact-channel__icon {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 18px;
    color: #fff;
    background: rgba(255, 255, 255, .1);

    > i { position: relative; display: block; }

    &.contact-channel__icon--whatsapp {
      border-color: rgba(92, 235, 157, .38);
      background: rgba(32, 185, 96, .14);
      box-shadow: 0 8px 18px rgba(32, 185, 96, .2);

      > img {
        width: 37px;
        height: 37px;
        display: block;
        object-fit: contain;
      }
    }

    &.contact-channel__icon--phone {
      border-color: rgba(255, 173, 115, .3);
      background: rgba(242, 103, 0, .2);

      > i::before {
        content: "☎";
        display: block;
        color: #ffb078;
        font-size: 30px;
        font-style: normal;
        line-height: 1;
        transform: rotate(-14deg);
      }
    }

    &.contact-channel__icon--email {
      border-color: rgba(184, 214, 255, .26);
      background: rgba(62, 133, 222, .18);

      > i {
        width: 29px;
        height: 21px;
        border: 2px solid #b8d6ff;
        border-radius: 3px;

        &::before,
        &::after {
          content: "";
          position: absolute;
          top: 4px;
          width: 16px;
          height: 2px;
          border-radius: 2px;
          background: #b8d6ff;
        }

        &::before { left: -1px; transform: rotate(36deg); }
        &::after { right: -1px; transform: rotate(-36deg); }
      }
    }

    &.contact-channel__icon--hours {
      border-color: rgba(255, 227, 167, .25);
      background: rgba(225, 169, 44, .15);

      > i {
        width: 29px;
        height: 29px;
        border: 2px solid #ffe3a7;
        border-radius: 50%;

        &::before,
        &::after {
          content: "";
          position: absolute;
          left: 12px;
          width: 2px;
          border-radius: 2px;
          background: #ffe3a7;
          transform-origin: bottom center;
        }

        &::before { top: 5px; height: 8px; }
        &::after { top: 11px; height: 8px; transform: rotate(125deg); }
      }
    }
  }

  .contact-channel__link,
  .contact-channel__hours {
    color: #d5dfec;
    font-size: 12px;
    font-weight: 750;
  }

  .contact-channel__link {
    order: 3;
    min-height: 45px;
    width: 100%;
    margin-top: auto;
    padding: 11px 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 11px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    text-align: center;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease;

    &:hover { border-color: rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .14); }
    &:focus-visible { outline: 3px solid rgba(242, 103, 0, .45); outline-offset: 3px; border-radius: 3px; }
  }

  .contact-channel__hours {
    order: 2;
    margin-top: 13px !important;
    color: #fff;
    line-height: 1.55;
  }

}

@media (max-width: 1060px) {
  .contact-section {
    .contact-channels { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }
}

@media (max-width: 720px) {
  .contact-section {
    .contact-intro { display: block; }
    .contact-intro > h2 { max-width: 650px; }
    .contact-intro > p { max-width: 600px; margin-top: 22px; }
    .contact-channels { margin-top: 42px; }
  }
}

@media (max-width: 580px) {
  .contact-section {
    padding: 86px 0 92px;

    .contact-container { width: calc(100% - 28px); }
    .contact-intro > h2 { font-size: 42px; letter-spacing: -1.8px; }
    .contact-channels { grid-template-columns: 1fr; }
    .contact-channel { min-height: 248px; }
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-channel,
  .contact-channel__link { transition: none; }

  .contact-channel:hover { transform: none; }
}

/* Cierre comercial */
.final-cta-section {
  padding: 88px 0;
  background: linear-gradient(180deg, #eaf0f6 0%, #f5f8fb 100%);

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

  .final-cta-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(58px, 8vw, 94px) clamp(24px, 8vw, 110px);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 32px;
    background-color: var(--primary);
    background-image:
      radial-gradient(circle at 7% 18%, rgba(0, 168, 107, .17), transparent 24%),
      radial-gradient(circle at 94% 85%, rgba(242, 103, 0, .19), transparent 25%),
      linear-gradient(145deg, #041634 0%, var(--primary) 58%, #0c326e 100%);
    box-shadow: 0 32px 75px rgba(8, 38, 92, .2);
    text-align: center;

    &::before,
    &::after {
      content: "";
      position: absolute;
      pointer-events: none;
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 50%;
    }

    &::before {
      top: -118px;
      left: -92px;
      width: 260px;
      height: 260px;
    }

    &::after {
      right: -82px;
      bottom: -132px;
      width: 300px;
      height: 300px;
    }

    > * { position: relative; z-index: 1; }

    h2 {
      max-width: 900px;
      margin: 17px auto 0;
      color: #fff;
      font-size: clamp(39px, 5.3vw, 67px);
      line-height: 1.04;
      letter-spacing: -2.6px;
    }

    > p {
      max-width: 740px;
      margin: 24px auto 0;
      color: #c9d5e5;
      font-size: 15px;
      line-height: 1.72;
    }
  }

  .final-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #89e6c1;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 1.25px;

    &::before {
      content: "";
      width: 23px;
      height: 2px;
      border-radius: 3px;
      background: var(--tertiary);
    }
  }

  .final-cta-actions {
    margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
  }

  .final-cta-button {
    min-height: 56px;
    padding: 14px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 850;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;

    &:focus-visible {
      outline: 3px solid rgba(255, 255, 255, .78);
      outline-offset: 4px;
    }

    &:active { transform: translateY(1px); }

    &.final-cta-button--primary {
      min-width: 190px;
      color: #fff;
      border-color: #cf4e00;
      background: var(--secondary);
      box-shadow: 0 14px 30px rgba(242, 103, 0, .28);

      span { font-size: 19px; transition: transform .2s ease; }

      &:hover {
        background: var(--secondary-dark);
        box-shadow: 0 18px 38px rgba(242, 103, 0, .36);
        transform: translateY(-3px);
      }

      &:hover span { transform: translateX(3px); }
    }

    &.final-cta-button--secondary {
      color: #fff;
      border-color: rgba(255, 255, 255, .34);
      background: rgba(255, 255, 255, .06);

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

      &:hover {
        border-color: rgba(255, 255, 255, .62);
        background: rgba(255, 255, 255, .12);
        transform: translateY(-2px);
      }
    }
  }
}

@media (max-width: 620px) {
  .final-cta-section {
    padding: 64px 0;

    .final-cta-container { width: calc(100% - 28px); }
    .final-cta-panel { padding: 54px 20px; border-radius: 23px; }
    .final-cta-panel h2 { font-size: 39px; letter-spacing: -1.7px; }
    .final-cta-panel > p { font-size: 14px; }
    .final-cta-actions { flex-direction: column; }
    .final-cta-button { width: min(100%, 340px); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .final-cta-button,
  .final-cta-button span { transition: none; }

  .final-cta-button:hover,
  .final-cta-button:active,
  .final-cta-button:hover span { transform: none; }
}

.placeholder-page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  background:
    radial-gradient(circle at 80% 20%, rgba(242, 103, 0, .12), transparent 28%),
    linear-gradient(145deg, #041634, var(--primary));

  .placeholder-header {
    width: min(calc(100% - 40px), var(--container));
    min-height: 78px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .1);

    .placeholder-brand {
      color: #fff;
      font-size: 23px;
      font-weight: 850;
      letter-spacing: -.7px;

      span { color: var(--secondary); }
    }

    .placeholder-back {
      padding: 10px 14px;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 9px;
      color: #dbe5f3;
      background: rgba(255, 255, 255, .06);
      font-size: 13px;
      font-weight: 700;

      &:hover { border-color: var(--secondary); color: #fff; }
    }
  }

  .placeholder-content {
    width: min(calc(100% - 40px), 760px);
    margin: auto;
    padding: 70px 0;
    text-align: center;

    .placeholder-kicker {
      display: inline-block;
      padding: 7px 11px;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 30px;
      color: #aebdd1;
      background: rgba(255, 255, 255, .05);
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .9px;
    }

    h1 {
      margin: 20px 0 14px;
      color: #fff;
      font-size: clamp(38px, 7vw, 66px);
      line-height: 1.05;
      letter-spacing: -2.5px;
    }

    p {
      margin: 0 auto;
      color: #aebdd1;
      font-size: 16px;
      line-height: 1.7;
    }

    .placeholder-line {
      width: 62px;
      height: 4px;
      margin: 27px auto 0;
      border-radius: 5px;
      background: linear-gradient(90deg, var(--secondary), var(--tertiary));
    }
  }
}

@media (max-width: 580px) {
  .placeholder-page {
    .placeholder-header {
      width: calc(100% - 28px);
      min-height: 68px;

      .placeholder-brand { font-size: 20px; }
      .placeholder-back { padding: 8px 10px; font-size: 11px; }
    }

    .placeholder-content { width: calc(100% - 28px); }
  }
}

/* Pie de página global */
/* Documento legal: aviso de privacidad */
.legal-page {
  color: #172844;
  background:
    linear-gradient(rgba(8, 38, 92, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 38, 92, .035) 1px, transparent 1px),
    #eef3f8;
  background-size: 28px 28px;
}

.legal-header {
  border-bottom: 1px solid rgba(8, 38, 92, .1);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 30px rgba(8, 38, 92, .055);
  backdrop-filter: blur(12px);

  .legal-header__inner {
    width: min(calc(100% - 40px), var(--container));
    min-height: 76px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .legal-header__brand {
    display: inline-flex;
    border-radius: 8px;

    img { width: 142px; height: 48px; display: block; object-fit: contain; }
    &:focus-visible { outline: 3px solid var(--secondary); outline-offset: 4px; }
  }

  .legal-header__back {
    min-height: 42px;
    padding: 9px 14px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(8, 38, 92, .13);
    border-radius: 10px;
    color: var(--primary);
    background: #f7faff;
    font-size: 13px;
    font-weight: 750;
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease;

    &:hover { border-color: rgba(8, 38, 92, .28); background: #fff; transform: translateY(-1px); }
    &:active { transform: translateY(0); }
    &:focus-visible { outline: 3px solid var(--secondary); outline-offset: 3px; }
  }
}

.legal-document-wrapper {
  width: min(calc(100% - 40px), 960px);
  margin-inline: auto;
  padding: 34px 0 80px;
}

.legal-breadcrumb {
  width: min(100%, 8.5in);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #667791;
  font-size: 12px;

  a {
    color: var(--primary);
    font-weight: 750;
    &:hover { color: var(--secondary); }
    &:focus-visible { outline: 2px solid var(--secondary); outline-offset: 3px; border-radius: 2px; }
  }

  span[aria-hidden] { color: #a4b0c1; }
}

.legal-document {
  position: relative;
  width: min(100%, 8.5in);
  min-height: 11in;
  margin-inline: auto;
  padding: clamp(40px, 6vw, 72px);
  overflow: hidden;
  border: 1px solid #dce4ee;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(8, 38, 92, .14), 0 4px 14px rgba(8, 38, 92, .06);

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 7px;
    background: linear-gradient(90deg, var(--primary) 0 68%, var(--secondary) 68% 86%, var(--tertiary) 86%);
  }
}

.legal-document__header {
  padding-bottom: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid #dfe6ef;

  .legal-document__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--tertiary);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
  }

  h1 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(32px, 5vw, 46px);
    line-height: 1.06;
    letter-spacing: -1.6px;
  }

  p {
    max-width: 590px;
    margin: 14px 0 0;
    color: #5c6d86;
    font-size: 14px;
    line-height: 1.7;
  }
}

.legal-document__seal {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 168, 107, .18);
  border-radius: 16px;
  color: var(--tertiary);
  background: #effaf6;

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

.legal-document__intro {
  margin-top: 30px;
  padding: 22px 24px;
  border-left: 4px solid var(--secondary);
  border-radius: 0 10px 10px 0;
  color: #273a58;
  background: #f6f8fc;
  font-size: 14px;
  line-height: 1.85;

  strong { color: var(--primary); }
}

.legal-document__index {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid #e0e7f0;
  border-radius: 12px;
  background: #fbfcfe;

  > strong { display: block; margin-bottom: 14px; color: var(--primary); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }

  ol {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 24px;
    list-style-position: inside;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 800;
  }

  a {
    color: #41536e;
    font-weight: 650;
    line-height: 1.5;
    &:hover { color: var(--primary); }
    &:focus-visible { outline: 2px solid var(--secondary); outline-offset: 3px; border-radius: 2px; }
  }
}

.legal-document__content { margin-top: 38px; }

.legal-clause {
  scroll-margin-top: 24px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid #e3e9f1;

  &:first-child { padding-top: 0; border-top: 0; }

  .legal-clause__number {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(8, 38, 92, .12);
    border-radius: 10px;
    color: var(--primary);
    background: #f2f6fb;
    font-size: 11px;
    font-weight: 850;
  }

  h2 { margin: 4px 0 12px; color: var(--primary); font-size: 19px; line-height: 1.3; letter-spacing: -.25px; }
  p { margin: 0; color: #3f516c; font-size: 14px; line-height: 1.8; }

  ul {
    margin: 15px 0 0;
    padding: 0;
    display: grid;
    gap: 9px;
    list-style: none;

    li {
      position: relative;
      padding-left: 20px;
      color: #3f516c;
      font-size: 14px;
      line-height: 1.65;

      &::before {
        content: "";
        position: absolute;
        top: .68em;
        left: 0;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--tertiary);
        box-shadow: 0 0 0 4px rgba(0, 168, 107, .1);
      }
    }
  }

  a {
    color: #075fbe;
    font-weight: 750;
    text-decoration: underline;
    text-decoration-color: rgba(7, 95, 190, .3);
    text-underline-offset: 3px;
    &:hover { color: var(--secondary); text-decoration-color: currentColor; }
    &:focus-visible { outline: 2px solid var(--secondary); outline-offset: 3px; border-radius: 2px; }
  }
}

.legal-data-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  small { color: #76859a; font-size: 11px; }
}

.legal-document__footer {
  margin-top: 30px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #dfe6ef;

  img { width: 102px; height: 38px; object-fit: contain; }
  p { margin: 0; color: #708098; font-size: 11px; text-align: right; }
}

@media (max-width: 680px) {
  .legal-header {
    .legal-header__inner { width: calc(100% - 32px); min-height: 68px; }
    .legal-header__brand img { width: 120px; height: 42px; }
    .legal-header__back { min-height: 40px; padding: 8px 10px; font-size: 12px; }
  }

  .legal-document-wrapper { width: 100%; padding: 20px 0 48px; }
  .legal-breadcrumb { width: calc(100% - 32px); }
  .legal-document { min-height: auto; padding: 36px 20px; border-right: 0; border-left: 0; border-radius: 0; box-shadow: 0 18px 50px rgba(8, 38, 92, .09); }

  .legal-document__header {
    gap: 18px;
    h1 { font-size: 34px; }
    .legal-document__seal { width: 48px; height: 48px; border-radius: 13px; }
  }

  .legal-document__intro,
  .legal-document__index { padding: 18px; }
  .legal-document__index ol { grid-template-columns: 1fr; }

  .legal-clause {
    padding: 24px 0;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    .legal-clause__number { width: 32px; height: 32px; border-radius: 8px; }
    h2 { margin-top: 3px; font-size: 17px; }
  }

  .legal-data-list { grid-template-columns: 1fr; }
  .legal-document__footer { align-items: flex-start; flex-direction: column; }
  .legal-document__footer p { text-align: left; }
}

@media print {
  .legal-page { background: #fff; }
  .legal-header,
  .legal-breadcrumb,
  .site-footer { display: none !important; }
  .legal-document-wrapper { width: 100%; padding: 0; }
  .legal-document { width: 100%; min-height: auto; padding: .6in; border: 0; box-shadow: none; }
  .legal-document__index,
  .legal-clause { break-inside: avoid; }
}

@media (prefers-reduced-motion: reduce) {
  .legal-header__back { transition: none; }
  .legal-header__back:hover { transform: none; }
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #dce7f6;
  background: linear-gradient(145deg, var(--primary) 0%, #061c45 100%);
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--secondary), var(--tertiary)) 1;

  &::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -170px;
    right: -130px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 50%;
    box-shadow: 0 0 0 58px rgba(255, 255, 255, .018), 0 0 0 116px rgba(255, 255, 255, .012);
    pointer-events: none;
  }

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

  .site-footer__top {
    display: grid;
    grid-template-columns: minmax(300px, .95fr) minmax(0, 2.05fr);
    gap: clamp(42px, 6vw, 82px);
    padding: 70px 0 56px;
  }

  .site-footer__identity {
    align-self: start;

    .site-footer__logo {
      width: 184px;
      min-height: 58px;
      padding: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 8px;
      background: transparent;
      box-shadow: none;
      transition: transform .2s ease, opacity .2s ease;

      img {
        width: 100%;
        height: 58px;
        display: block;
        object-fit: contain;
      }

      &:hover { opacity: .9; transform: translateY(-2px); }
      &:active { transform: translateY(0); }
      &:focus-visible { outline: 3px solid var(--secondary); outline-offset: 4px; }
    }

    .site-footer__name {
      margin-top: 24px;
      display: block;
      color: #fff;
      font-size: 20px;
      letter-spacing: -.3px;
    }

    p {
      max-width: 310px;
      margin: 10px 0 0;
      color: #bac9dc;
      font-size: 14px;
      line-height: 1.75;
    }
  }

  .site-footer__social {
    position: relative;
    max-width: 360px;
    margin-top: 28px;
    padding: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .025));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 16px 36px rgba(1, 15, 42, .18);

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 18px;
      width: 72px;
      height: 3px;
      border-radius: 0 0 6px 6px;
      background: linear-gradient(90deg, var(--secondary), var(--tertiary));
    }
  }

  .site-footer__social-heading {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    > small {
      color: #90a5c1;
      font-size: 10px;
      font-weight: 750;
      letter-spacing: .04em;
    }
  }

  .site-footer__social-title {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .site-footer__social-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .site-footer__social-link {
    position: relative;
    min-width: 0;
    min-height: 58px;
    padding: 8px 8px 8px 9px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 13px;
    color: #dbe6f3;
    background: rgba(3, 23, 57, .36);
    line-height: 1;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;

    .site-footer__social-icon {
      width: 34px;
      height: 34px;
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      color: #fff;
      background: rgba(255, 255, 255, .1);

      svg { width: 18px; height: 18px; fill: currentColor; }
    }

    .site-footer__social-name {
      min-width: 0;
      overflow: hidden;
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      text-overflow: ellipsis;

      small {
        margin-top: 5px;
        display: block;
        overflow: hidden;
        color: #93a8c3;
        font-size: 9px;
        font-weight: 650;
        letter-spacing: .02em;
        text-overflow: ellipsis;
      }
    }

    .site-footer__social-arrow {
      margin-left: auto;
      align-self: flex-start;
      color: #8197b4;
      font-size: 12px;
      transition: color .2s ease, transform .2s ease;
    }

    &:hover {
      color: #fff;
      background: rgba(255, 255, 255, .105);
      border-color: rgba(255, 255, 255, .34);
      transform: translateY(-2px);
      box-shadow: 0 10px 22px rgba(0, 12, 35, .18);

      .site-footer__social-arrow { color: #fff; transform: translate(2px, -2px); }
    }

    &:active { transform: translateY(0); }
    &:focus-visible { outline: 3px solid var(--secondary); outline-offset: 3px; }

    &.site-footer__social-link--facebook .site-footer__social-icon { background: #1877f2; }
    &.site-footer__social-link--youtube .site-footer__social-icon { background: #ff0033; }
    &.site-footer__social-link--instagram .site-footer__social-icon { background: linear-gradient(135deg, #833ab4, #fd1d1d 58%, #fcb045); }
    &.site-footer__social-link--tiktok .site-footer__social-icon { background: #101217; box-shadow: inset 2px 0 #25f4ee, inset -2px 0 #fe2c55; }
    &.site-footer__social-link--x .site-footer__social-icon { background: #050505; }

    &.site-footer__social-link--facebook:hover { border-color: #6ca8f7; }
    &.site-footer__social-link--youtube:hover { border-color: #ff667f; }
    &.site-footer__social-link--instagram:hover { border-color: #d66fae; }
    &.site-footer__social-link--tiktok:hover { border-color: #69c9d0; }
    &.site-footer__social-link--x:hover { border-color: #8c99aa; }
  }

  .site-footer__navigation {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px clamp(28px, 4vw, 58px);
  }

  .site-footer__group {
    min-width: 0;

    h2 {
      position: relative;
      margin: 0 0 20px;
      padding-bottom: 12px;
      color: #fff;
      font-size: 14px;
      line-height: 1.3;
      letter-spacing: .08em;
      text-transform: uppercase;

      &::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 3px;
        border-radius: 4px;
        background: linear-gradient(90deg, var(--secondary), var(--tertiary));
      }
    }

    ul { margin: 0; padding: 0; list-style: none; }
    li + li { margin-top: 11px; }

    a {
      position: relative;
      display: inline-block;
      color: #c4d1e2;
      font-size: 13px;
      line-height: 1.55;
      transition: color .2s ease, transform .2s ease;

      &::before {
        content: "";
        position: absolute;
        top: .72em;
        left: -13px;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--secondary);
        opacity: 0;
        transform: translateX(-3px);
        transition: opacity .2s ease, transform .2s ease;
      }

      &:hover { color: #fff; transform: translateX(4px); }
      &:hover::before { opacity: 1; transform: translateX(0); }
      &:active { color: var(--secondary); }
      &:focus-visible { outline: 2px solid var(--secondary); outline-offset: 4px; border-radius: 2px; color: #fff; }
    }
  }

  .site-footer__contact {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, .11);
    border-bottom: 1px solid rgba(255, 255, 255, .11);
  }

  .site-footer__contact-list {
    display: grid;
    grid-template-columns: .85fr .85fr 1.1fr 1.45fr 1.7fr;
    gap: 12px;
    color: inherit;
    font-style: normal;

    > a,
    > div {
      min-width: 0;
      min-height: 62px;
      padding: 10px 12px;
      display: grid;
      grid-template-columns: 30px minmax(0, 1fr);
      align-items: center;
      gap: 10px;
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 12px;
      color: #fff;
      background: rgba(255, 255, 255, .045);
      font-size: 12px;
      font-weight: 720;
      line-height: 1.55;
      overflow-wrap: anywhere;

      > span:last-child { min-width: 0; }
    }

    > a {
      transition: border-color .2s ease, background .2s ease, transform .2s ease;

      &:hover { border-color: rgba(242, 103, 0, .65); background: rgba(255, 255, 255, .08); transform: translateY(-2px); }
      &:active { transform: translateY(0); }
      &:focus-visible { outline: 3px solid var(--secondary); outline-offset: 2px; }
    }

    img { display: block; object-fit: contain; }
    small { display: block; margin-bottom: 2px; color: #98abc5; font-size: 10px; font-weight: 750; text-transform: uppercase; letter-spacing: .04em; }
  }

  .site-footer__contact-symbol {
    position: relative;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    align-self: center;
    justify-self: center;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 9px;
    color: var(--secondary);
    background: rgba(255, 255, 255, .06);
    font-size: 13px;
    font-weight: 900;

    svg {
      width: 17px;
      height: 17px;
      display: block;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
  }

  .site-footer__contact-symbol--whatsapp {
    border-color: rgba(87, 209, 99, .38);
    background: rgba(87, 209, 99, .08);

    img { width: 18px; height: 18px; }
  }

  .site-footer__contact-symbol--phone {
    border-color: rgba(255, 175, 117, .38);
    color: #ffaf75;
    background: rgba(242, 103, 0, .08);
  }

  .site-footer__contact-symbol--email {
    border-color: rgba(128, 174, 236, .38);
    color: #9fc6f8;
    background: rgba(78, 132, 204, .08);
  }

  .site-footer__contact-symbol--location {
    border-color: rgba(142, 221, 189, .38);
    color: #8eddbd;
    background: rgba(0, 168, 107, .08);
  }

  .site-footer__contact-symbol--hours {
    border-color: rgba(255, 227, 167, .38);
    color: #ffe3a7;
    background: rgba(225, 169, 44, .08);
  }

  .site-footer__legal {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;

    p { margin: 0; color: #95a8c2; font-size: 12px; }

    a {
      padding: 7px 11px;
      margin-left: 2px;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 7px;
      color: #c4d3e5;
      background: rgba(255, 255, 255, .045);
      font-size: 12px;
      font-weight: 700;
      text-decoration: none;
      transition: color .2s ease, background-color .2s ease, border-color .2s ease;

      &:hover { color: #fff; border-color: rgba(255, 255, 255, .28); background: rgba(255, 255, 255, .09); }
      &:active { color: #ffbf91; }
      &:focus-visible { outline: 3px solid var(--secondary); outline-offset: 4px; border-radius: 3px; }
    }
  }
}

@media (max-width: 1020px) {
  .site-footer {
    .site-footer__top { grid-template-columns: 1fr; }
    .site-footer__identity { display: grid; grid-template-columns: auto 1fr; column-gap: 24px; align-items: center; }
    .site-footer__identity .site-footer__logo { grid-row: 1 / 3; }
    .site-footer__identity .site-footer__name { margin-top: 0; }
    .site-footer__identity p { max-width: 520px; }
    .site-footer__social { width: 100%; max-width: 520px; grid-column: 1 / -1; }
    .site-footer__contact-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .site-footer__address { grid-column: 1 / -1; }
  }
}

@media (max-width: 680px) {
  .site-footer {
    .site-footer__container { width: calc(100% - 32px); }
    .site-footer__top { gap: 44px; padding: 56px 0 46px; }
    .site-footer__identity { display: block; }
    .site-footer__identity .site-footer__name { margin-top: 22px; }
    .site-footer__social { max-width: none; padding: 16px; }
    .site-footer__social-links { grid-template-columns: 1fr; }
    .site-footer__social-link { min-height: 60px; }
    .site-footer__navigation { grid-template-columns: 1fr; gap: 34px; }
    .site-footer__group a { min-height: 34px; display: inline-flex; align-items: center; }
    .site-footer__contact { padding: 28px 0; }
    .site-footer__contact-list { grid-template-columns: 1fr; }
    .site-footer__contact-list > a,
    .site-footer__contact-list > div { min-height: 64px; padding: 12px 14px; }
    .site-footer__address { grid-column: auto; }
    .site-footer__legal {
      min-height: 100px;
      padding: 22px 0;
      flex-direction: column;
      gap: 10px;

      a { margin-left: 0; padding: 7px 11px; }
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer {
    .site-footer__logo,
    .site-footer__social-link,
    .site-footer__legal a,
    .site-footer__group a,
    .site-footer__group a::before,
    .site-footer__contact-list > a { transition: none; }

    .site-footer__logo:hover,
    .site-footer__social-link:hover,
    .site-footer__group a:hover,
    .site-footer__contact-list > a:hover { transform: none; }
  }
}

