    :root {
      --navy: #0a2e5c;
      --navy-2: #062143;
      --cyan: #23b8d6;
      --ink: #0b1220;
      --muted: #5d6b82;
      --bg: #f4f6f9;
      --card: #ffffff;
      --line: #d9e2ef;
      --shadow: 0 20px 60px rgba(5, 20, 45, .12);
      --shadow-2: 0 14px 35px rgba(5, 20, 45, .14);
      --radius: 18px;
      --radius-2: 26px;
      --container: 1200px;

      --ease: cubic-bezier(.2, .8, .2, 1);
      --ease2: cubic-bezier(.16, 1, .3, 1);
    }

    * {
      box-sizing: border-box
    }

    html,
    body {
      height: 100%
    }

    body {
      margin: 0;
      font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--ink);
      background: radial-gradient(1400px 900px at 20% -20%, rgba(35, 184, 214, .14), transparent 55%),
        radial-gradient(1200px 700px at 90% 20%, rgba(10, 46, 92, .10), transparent 55%),
        var(--bg);
      overflow-x: hidden;
    }

    a {
      color: inherit
    }

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

    /* ======= Top Header ======= */
    .header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, .75);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(217, 226, 239, .75);
    }

    .header__bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
      gap: 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      user-select: none;
    }

    .brand__mark {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--navy), #103e7d);
      box-shadow: 0 16px 30px rgba(10, 46, 92, .22);
      position: relative;
      overflow: hidden;
    }

    .brand__mark:before {
      content: "";
      position: absolute;
      inset: -40%;
      background: radial-gradient(circle at 20% 30%, rgba(35, 184, 214, .55), transparent 60%);
      transform: rotate(12deg);
    }

    .brand__name {
      line-height: 1.05;
    }

    .brand__name strong {
      display: block;
      letter-spacing: .02em;
      color: var(--navy);
      font-weight: 800;
      font-size: 14px;
      text-transform: uppercase;
    }

    .brand__name span {
      display: block;
      font-size: 12px;
      color: var(--muted);
      font-weight: 500;
    }

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

    .nav__group {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav a,
    .navbtn {
      text-decoration: none;
      appearance: none;
      border: 1px solid rgba(10, 46, 92, .28);
      background: #fff;
      color: var(--navy);
      padding: 10px 14px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: .02em;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
    }

    .navbtn:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(10, 46, 92, .12);
      border-color: rgba(10, 46, 92, .45);
    }

    .navbtn[aria-expanded="true"] {
      border-color: rgba(35, 184, 214, .75);
      box-shadow: 0 18px 35px rgba(35, 184, 214, .12);
    }

    .chev {
      width: 10px;
      height: 10px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg);
      margin-top: -2px;
      transition: transform .18s var(--ease);
    }

    .navbtn[aria-expanded="true"] .chev {
      transform: rotate(-135deg);
      margin-top: 2px;
    }

    .nav__right {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .iconbtn {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid rgba(10, 46, 92, .18);
      background: #fff;
      cursor: pointer;
      display: grid;
      place-items: center;
      transition: transform .18s var(--ease), box-shadow .18s var(--ease);
    }

    .iconbtn:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(10, 46, 92, .12);
    }

    .icon {
      width: 18px;
      height: 18px;
      stroke: var(--navy);
      stroke-width: 2;
      fill: none;
    }

    /* Mega menu */
    .mega {
      position: fixed;
      /* 🔥 NO absolute */
      left: 50%;
      top: 80px;
      /* JS lo ajusta */
      transform: translateX(-50%) translateY(10px);

      width: 420px;
      max-width: calc(100% - 32px);

      background: #fff;
      border: 1px solid rgba(217, 226, 239, .9);
      border-radius: 22px;
      box-shadow: var(--shadow);

      opacity: 0;
      pointer-events: none;
      z-index: 3000;

      transition: opacity .22s var(--ease), transform .22s var(--ease);
    }

    .mega[data-open="true"] {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    /* =========================
   MOBILE MENU BREAKPOINT
   ========================= */
    @media (max-width: 768px) {

      /* Oculta el grupo de links */
      .nav__group {
        display: none;
      }

      /* Muestra el botón hamburguesa */
      .hamburger {
        display: inline-grid;
      }
    }

    .mega__top {
      padding: 14px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background:
        radial-gradient(600px 240px at 15% 0%, rgba(35, 184, 214, .15), transparent 55%),
        radial-gradient(480px 220px at 90% 20%, rgba(10, 46, 92, .10), transparent 55%),
        #fff;
      border-bottom: 1px solid rgba(217, 226, 239, .7);
    }

    .mega__top strong {
      font-size: 12px;
      color: var(--navy);
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .mega__hint {
      font-size: 12px;
      color: var(--muted);
      font-weight: 600;
    }

    .mega__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
    }

    .mega__col {
      padding: 18px 22px;
      border-right: 1px solid rgba(217, 226, 239, .7);
    }

    .mega__col:last-child {
      border-right: 0
    }

    .mega__col h4 {
      margin: 0 0 10px;
      font-size: 12px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .mega__list {
      display: grid;
      gap: 10px;
    }

    .mlink {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 8px 8px;
      border-radius: 14px;
      text-decoration: none;
      transition: background .18s var(--ease), transform .18s var(--ease);
    }

    .mlink:hover {
      background: rgba(35, 184, 214, .08);
      transform: translateY(-1px);
    }

    .micon {
      width: 28px;
      height: 28px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(10, 46, 92, .95), rgba(10, 46, 92, .65));
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      position: relative;
      overflow: hidden;
    }

    .micon:before {
      content: "";
      position: absolute;
      inset: -40%;
      background: radial-gradient(circle at 30% 30%, rgba(35, 184, 214, .55), transparent 60%);
      transform: rotate(18deg);
    }

    .mlink strong {
      display: block;
      font-size: 13px;
      color: var(--navy);
      font-weight: 800;
    }

    .mlink span {
      display: block;
      font-size: 12px;
      color: var(--muted);
      font-weight: 600;
      margin-top: 2px;
      line-height: 1.3;
    }

    /* Mobile menu */
    .hamburger {
      display: none
    }

    .drawer {
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(7, 16, 35, .55);
      opacity: 0;
      pointer-events: none;
      transition: opacity .22s var(--ease);
    }

    .drawer[data-open="true"] {
      opacity: 1;
      pointer-events: auto;
    }

    .drawer__panel {
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: min(420px, 92vw);
      background: #fff;
      border-left: 1px solid rgba(217, 226, 239, .85);
      box-shadow: var(--shadow);
      transform: translateX(12px);
      opacity: 0;
      transition: transform .22s var(--ease), opacity .22s var(--ease);
      padding: 18px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .drawer[data-open="true"] .drawer__panel {
      transform: none;
      opacity: 1;
    }

    .drawer__top {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .drawer__nav {
      display: grid;
      gap: 10px;
    }

    .drawer__nav button {
      width: 100%;
      justify-content: space-between;
      padding: 12px 14px;
      border-radius: 14px;
    }

    .drawer__links {
      padding: 8px 6px 0;
      display: none;
      gap: 8px;
    }

    .drawer__links a {
      text-decoration: none;
      font-weight: 700;
      color: var(--navy);
      padding: 10px 12px;
      border-radius: 12px;
      background: rgba(35, 184, 214, .07);
    }

    .drawer__block {
      padding-top: 12px;
      border-top: 1px solid rgba(217, 226, 239, .8);
      display: flex;
      gap: 10px;
    }

    /* ======= Hero ======= */
    .hero {
      position: relative;
      min-height: calc(100svh - 74px);
      display: grid;
      place-items: center;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(6, 33, 67, .92), rgba(6, 33, 67, .55) 55%, rgba(6, 33, 67, .20)),
        url("https://images.unsplash.com/photo-1528740561666-dc2479dc08ab?auto=format&fit=crop&w=2200&q=80");
      background-size: cover;
      background-position: center;
      border-bottom: 1px solid rgba(217, 226, 239, .55);
    }

    .hero:before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(900px 500px at 20% 10%, rgba(35, 184, 214, .16), transparent 55%),
        radial-gradient(1100px 700px at 80% 30%, rgba(10, 46, 92, .20), transparent 55%);
      pointer-events: none;
      mix-blend-mode: screen;
      opacity: .85;
    }

    .hero__content {
      position: relative;
      width: min(var(--container), calc(100% - 40px));
      margin-inline: auto;
      padding: 70px 0 110px;
      color: #fff;
      display: grid;
      gap: 16px;
      align-content: center;
    }

    .breadcrumb {
      display: flex;
      gap: 8px;
      align-items: center;
      font-size: 12px;
      font-weight: 700;
      color: rgba(255, 255, 255, .78);
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .dot {
      width: 4px;
      height: 4px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .55);
    }

    .hero__title {
      font-size: clamp(42px, 5vw, 78px);
      line-height: 1.02;
      letter-spacing: -0.03em;
      font-weight: 800;
      margin: 0;
      max-width: 16ch;
    }

    .hl {
      position: relative;
      display: inline-block;
      padding: .06em .14em;
      margin-left: -.14em;
    }

    .hl:before {
      content: "";
      position: absolute;
      inset: .58em -0.08em -0.06em -0.08em;
      background: rgba(35, 184, 214, .90);
      border-radius: 10px;
      z-index: -1;
      transform-origin: left center;
      transform: scaleX(.2);
      opacity: .0;
    }

    .hero__lead {
      max-width: 62ch;
      color: rgba(255, 255, 255, .86);
      font-weight: 600;
      line-height: 1.65;
      font-size: clamp(14px, 1.2vw, 16px);
      margin: 0;
    }

    .hero__cta {
      display: flex;
      gap: 12px;
      align-items: center;
      margin-top: 8px;
      flex-wrap: wrap;
    }

    .btn {
      appearance: none;
      border: 1px solid rgba(255, 255, 255, .35);
      background: rgba(255, 255, 255, .10);
      color: #fff;
      padding: 12px 18px;
      border-radius: 999px;
      font-weight: 800;
      letter-spacing: .02em;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      gap: 10px;
      align-items: center;
      transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
    }

    .btn--primary {
      background: linear-gradient(135deg, rgba(35, 184, 214, .95), rgba(35, 184, 214, .70));
      border-color: rgba(35, 184, 214, .35);
      box-shadow: 0 18px 40px rgba(35, 184, 214, .18);
      color: #062143;
    }

    .btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 40px rgba(255, 255, 255, .10);
    }

    .btn--primary:hover {
      box-shadow: 0 22px 55px rgba(35, 184, 214, .22);
    }

    .hero__curve {
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      width: 100%;
      height: 180px;
      pointer-events: none;
      opacity: .95;
    }

    .curve-path {
      stroke: rgba(35, 184, 214, .85);
      stroke-width: 3;
      fill: none;
      stroke-linecap: round;
      stroke-dasharray: 1200;
      stroke-dashoffset: 1200;
    }

    .curve-path2 {
      stroke: rgba(35, 184, 214, .35);
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-dasharray: 1200;
      stroke-dashoffset: 1200;
    }

    /* ======= Sections base ======= */
    section {
      padding: clamp(60px, 7vw, 100px) 0;
    }

    .section__head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 26px;
    }

    .kicker {
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .10em;
      font-weight: 800;
      font-size: 12px;
    }

    h2 {
      margin: 8px 0 32px;
      font-size: clamp(26px, 2.5vw, 40px);
      letter-spacing: -0.03em;
      color: var(--navy);
      line-height: 1.15;
    }

    .subcopy {
      margin: 0;
      color: var(--muted);
      font-weight: 600;
      line-height: 1.6;
      max-width: 62ch;
    }

    /* ======= Split editorial ======= */
    .split {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: clamp(18px, 3vw, 44px);
      align-items: center;
    }

    .panel {
      background: rgba(255, 255, 255, .72);
      border: 1px solid rgba(217, 226, 239, .85);
      border-radius: var(--radius-2);
      box-shadow: var(--shadow);
      padding: clamp(18px, 2.6vw, 28px);
      position: relative;
      overflow: hidden;
    }

    .panel:before {
      content: "";
      position: absolute;
      inset: -40%;
      background: radial-gradient(circle at 25% 30%, rgba(35, 184, 214, .12), transparent 58%);
      transform: rotate(10deg);
    }

    .panel__inner {
      position: relative;
    }

    .panel__inner p {
      margin: 14px 0 0;
      color: var(--muted);
      font-weight: 600;
      line-height: 1.7;
      font-size: 14px;
    }

    .media {
      position: relative;
      border-radius: var(--radius-2);
      overflow: hidden;
      box-shadow: var(--shadow-2);
      transform: translateZ(0);
      border: 1px solid rgba(217, 226, 239, .9);
    }

    .media img {
      width: 100%;
      height: 520px;
      object-fit: cover;
      display: block;
      transform: scale(1.04);
      transition: transform .6s var(--ease2), filter .6s var(--ease2);
      filter: saturate(1.05) contrast(1.02);
    }

    .media:hover img {
      transform: scale(1.10);
      filter: saturate(1.12) contrast(1.04);
    }

    /* “L” frame like EULEN */
    .frameL {
      position: absolute;
      inset: 18px;
      pointer-events: none;
    }

    .frameL:before,
    .frameL:after {
      content: "";
      position: absolute;
      width: 120px;
      height: 120px;
      border: 6px solid var(--navy);
      opacity: .90;
    }

    .frameL:before {
      top: 0;
      right: 0;
      border-left: 0;
      border-bottom: 0;
    }

    .frameL:after {
      bottom: 0;
      left: 0;
      border-right: 0;
      border-top: 0;
    }

    /* ======= Services Grid (premium tiles) ======= */
    .tiles {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 18px;
    }

    .tile {
      position: relative;
      border-radius: 22px;
      overflow: hidden;
      min-height: 240px;
      box-shadow: var(--shadow-2);
      border: 1px solid rgba(217, 226, 239, .85);
      background: #000;
      cursor: pointer;
      transform: translateZ(0);
    }

    .tile img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1.02);
      transition: transform .9s var(--ease2);
      opacity: .95;
    }

    .tile:hover img {
      transform: scale(1.12);
    }

    .tile:before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(6, 33, 67, .25), rgba(6, 33, 67, .75));
      opacity: .95;
      transition: opacity .35s var(--ease);
    }

    .tile:hover:before {
      opacity: 1;
    }

    .tile__label {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      color: #fff;
    }

    .tile__label strong {
      font-size: 18px;
      font-weight: 800;
      letter-spacing: -.02em;
      line-height: 1.15;
      max-width: 16ch;
    }

    .tile__label span {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .80);
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 12px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .02em;
      transition: transform .35s var(--ease), background .35s var(--ease);
    }

    .tile:hover .chip {
      transform: translateY(-4px);
      background: rgba(35, 184, 214, .18);
      border-color: rgba(35, 184, 214, .30);
    }

    .span-4 {
      grid-column: span 4;
    }

    .span-5 {
      grid-column: span 5;
    }

    .span-6 {
      grid-column: span 6;
    }

    .span-7 {
      grid-column: span 7;
    }

    .span-8 {
      grid-column: span 8;
    }

    .span-12 {
      grid-column: span 12;
    }

    /* ======= Locations carousel ======= */
    .carousel {
      position: relative;
      background: #fff;
      border: 1px solid rgba(217, 226, 239, .85);
      border-radius: 26px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .carousel__head {
      padding: 22px 22px 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .carousel__title {
      margin: 0;
      color: var(--navy);
      font-weight: 900;
      letter-spacing: -.02em;
      font-size: 18px;
    }

    .carousel__controls {
      display: flex;
      gap: 10px;
    }

    .cbtn {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      border: 1px solid rgba(10, 46, 92, .18);
      background: #fff;
      cursor: pointer;
      display: grid;
      place-items: center;
      transition: transform .18s var(--ease), box-shadow .18s var(--ease);
    }

    .cbtn:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(10, 46, 92, .12);
    }

    .cartrack {
      display: flex;
      gap: 16px;
      padding: 10px 22px 22px;
      overflow: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 14px 22px 22px;
    }

    .cartrack::-webkit-scrollbar {
      display: none;
    }

    .loc {
      flex: 0 0 auto;
      width: min(240px, 72vw);
      height: 170px;
      border-radius: 18px;
      overflow: hidden;
      scroll-snap-align: start;
      position: relative;
      background: #0a2e5c;
      box-shadow: 0 14px 35px rgba(5, 20, 45, .18);
      cursor: grab;
    }

    .loc img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .75;
      transform: scale(1.05);
      transition: transform .65s var(--ease2), opacity .65s var(--ease2);
    }

    .loc:hover img {
      transform: scale(1.12);
      opacity: .85;
    }

    .loc:after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(6, 33, 67, .20), rgba(6, 33, 67, .88));
    }

    .loc strong {
      position: absolute;
      left: 16px;
      bottom: 16px;
      color: #fff;
      z-index: 1;
      font-weight: 900;
      letter-spacing: .03em;
      text-transform: uppercase;
      font-size: 14px;
    }

    /* ======= Stats + logos ======= */
    .stats {
      background:
        radial-gradient(900px 300px at 12% 0%, rgba(35, 184, 214, .12), transparent 60%),
        #fff;
      border-top: 1px solid rgba(217, 226, 239, .7);
      border-bottom: 1px solid rgba(217, 226, 239, .7);
    }

    .stats__grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 26px;
      align-items: center;
    }

    .bigstat {
      padding: 26px 0;
    }

    .bigstat__num {
      font-size: clamp(52px, 6vw, 92px);
      color: var(--cyan);
      font-weight: 900;
      letter-spacing: -.04em;
      line-height: 1;
      display: flex;
      align-items: flex-end;
      gap: 10px;
    }

    .bigstat__num span {
      font-size: clamp(18px, 2vw, 26px);
      color: var(--navy);
      font-weight: 900;
      letter-spacing: -.02em;
      padding-bottom: 10px;
    }

    .bigstat__cap {
      margin-top: 10px;
      color: var(--muted);
      font-weight: 700;
      line-height: 1.6;
      max-width: 62ch;
    }

    .logos {
      border: 1px solid rgba(217, 226, 239, .85);
      border-radius: 26px;
      background: #fff;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .logos__track {
      display: flex;
      gap: 22px;
      padding: 22px;
      align-items: center;
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    }

    .logoitem {
      flex: 0 0 auto;
      width: 120px;
      height: 58px;
      border-radius: 16px;
      border: 1px solid rgba(217, 226, 239, .85);
      display: grid;
      place-items: center;
      color: var(--navy);
      font-weight: 900;
      letter-spacing: .02em;
      background:
        radial-gradient(220px 80px at 20% 20%, rgba(35, 184, 214, .10), transparent 60%),
        #fff;
      opacity: .9;
    }

    /* ===============================
   TESTIMONIOS – ESTILOS
   =============================== */

    /* Contenedor general del carrusel */
    #testimonials.carousel {
      background: #fff;
    }

    /* Track horizontal */
    #testimonials .cartrack {
      display: flex;
      align-items: stretch;
      gap: 16px;
    }

    /* Card individual */
    #testimonials .testimonial-card {
      flex: 0 0 auto;
      width: 320px;
      max-width: 90vw;
    }

    /* Cabecera: foto + datos */
    .testimonial-card__head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    /* Foto del cliente */
    .testimonial-card__head img {
      width: 46px;
      height: 46px;
      border-radius: 999px;
      object-fit: cover;
      border: 2px solid rgba(35, 184, 214, .35);
      flex-shrink: 0;
    }

    /* Nombre del cliente */
    .testimonial-card__head strong {
      display: block;
      font-size: 14px;
      font-weight: 800;
      color: var(--navy);
      line-height: 1.2;
    }

    /* Rol / tipo de cliente */
    .testimonial-card__head span {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
      margin-top: 2px;
    }

    /* Texto del testimonio */
    .testimonial-card__text {
      font-size: 13px;
      line-height: 1.6;
      font-weight: 600;
      color: var(--muted);

      display: -webkit-box;
      -webkit-line-clamp: 5;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* Hover suave */
    #testimonials .testimonial-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 40px rgba(10, 46, 92, .12);
    }

    /* ===============================
   RESPONSIVE
   =============================== */

    /* ===== TABLET ===== */
    @media (max-width: 900px) {

      #testimonials .testimonial-card {
        width: 280px;
      }

    }

    /* ===== MOBILE ===== */
    @media (max-width: 600px) {

      /* El carrusel centra la card */
      #testimonials .cartrack {
        scroll-snap-type: x mandatory;
        padding-left: 16px;
        padding-right: 16px;
      }

      #testimonials .testimonial-card {
        width: 85vw;
        scroll-snap-align: center;
      }

      /* Texto más compacto */
      .testimonial-card__text {
        font-size: 13px;
        line-height: 1.55;
        -webkit-line-clamp: 4;
      }
    }

    /* ======= Trust (tabs/accordion) ======= */
    .trust {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 56px;
      /* ⬅ más aire */
      align-items: center;
      /* ⬅ mejor balance vertical */
    }


    .trust__list {
      border-radius: 26px;
      background: #fff;
      border: 1px solid rgba(217, 226, 239, .85);
      box-shadow: var(--shadow);
      overflow: hidden;
      margin-top: 10px;
    }


    .titem {
      border-top: 1px solid rgba(217, 226, 239, .8);
    }

    .titem:first-child {
      border-top: 0;
    }

    .tbtn {
      width: 100%;
      text-align: left;
      background: transparent;
      border: 0;
      padding: 24px 26px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-weight: 900;
      color: var(--navy);
      letter-spacing: -.02em;
    }

    .tbtn small {
      font-weight: 900;
      color: rgba(10, 46, 92, .55);
      letter-spacing: .12em;
      text-transform: uppercase;
      font-size: 11px;
      margin-right: 10px;
    }

    .tpanel {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s var(--ease);
    }

    .tpanel__inner {
      padding: 0 18px 18px;
      color: var(--muted);
      font-weight: 650;
      line-height: 1.7;
      font-size: 14px;
    }

    .trust__media {
      position: relative;
      border-radius: 26px;
      overflow: hidden;
      box-shadow: var(--shadow-2);
      border: 1px solid rgba(217, 226, 239, .85);
      background: #0a2e5c;
    }

    .trust__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .85;
      transform: scale(1.06);
      transition: transform .8s var(--ease2), opacity .8s var(--ease2);
      display: block;
    }

    .trust__media:hover img {
      transform: scale(1.14);
      opacity: .92;
    }

    .trust__badge {
      position: absolute;
      left: 18px;
      bottom: 18px;
      padding: 12px 14px;
      border-radius: 18px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .18);
      color: #fff;
      font-weight: 900;
      letter-spacing: .02em;
      backdrop-filter: blur(10px);
    }

    /* ======= CTA ======= */
    .cta {
      padding: 0 0 110px;
    }

    .cta__box {
      border-radius: 30px;
      overflow: hidden;
      border: 1px solid rgba(217, 226, 239, .85);
      box-shadow: var(--shadow);
      background:
        linear-gradient(135deg, rgba(6, 33, 67, .98), rgba(6, 33, 67, .70)),
        url("https://images.unsplash.com/photo-1553413077-190dd305871c?auto=format&fit=crop&w=2200&q=80");
      background-size: cover;
      background-position: center;
      padding: clamp(26px, 4vw, 44px);
      color: #fff;
      position: relative;
    }

    .cta__box:before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(900px 400px at 20% 10%, rgba(35, 184, 214, .18), transparent 55%);
      pointer-events: none;
    }

    .cta__inner {
      position: relative;
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 20px;
      align-items: center;
    }

    .cta h3 {
      margin: 0;
      font-size: clamp(20px, 2.5vw, 34px);
      letter-spacing: -.03em;
      line-height: 1.1;
    }

    .cta p {
      margin: 12px 0 0;
      color: rgba(255, 255, 255, .86);
      font-weight: 650;
      line-height: 1.6;
      max-width: 62ch;
    }

    .cta__actions {
      display: flex;
      justify-content: flex-end;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* ======= Reveal / motion ======= */
    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .75s var(--ease), transform .75s var(--ease);
      will-change: opacity, transform;
    }

    .reveal.is-in {
      opacity: 1;
      transform: none;
    }

    /* ======= Footer ======= */
    footer {
      padding: 40px 0;
      color: var(--muted);
      font-weight: 650;
      border-top: 1px solid rgba(217, 226, 239, .75);
    }

    /* ======= Responsive ======= */
    @media (max-width: 980px) {
      .nav__group {
        display: none;
      }

      .hamburger {
        display: inline-grid;
      }

      .hero__content {
        padding: 54px 0 96px;
      }

      .split,
      .stats__grid,
      .trust,
      .cta__inner {
        grid-template-columns: 1fr;
      }

      .media img {
        height: 420px;
      }

      .tile {
        min-height: 220px;
      }

      .span-8,
      .span-7,
      .span-6,
      .span-5,
      .span-4 {
        grid-column: span 12;
      }

      .cta__actions {
        justify-content: flex-start;
      }
    }

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

      .reveal {
        transition: none !important;
      }

      .navbtn,
      .btn,
      .tile img,
      .media img,
      .trust__media img {
        transition: none !important;
      }

      .curve-path,
      .curve-path2 {
        stroke-dashoffset: 0 !important;
      }
    }








    .navbtn.is-active {
  background: linear-gradient(
    90deg,
    rgba(6, 33, 67, 0.12),
    rgba(6, 33, 67, 0.05)
  );
  border-color: rgba(6, 33, 67, 0.35);
  color: var(--navy);
  font-weight: 700;
}

.navbtn.is-active .chev {
  transform: rotate(180deg);
}
