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

    :root {
      --red: #DC2626;
      --red-dark: #B91C1C;
      --red-light: #FEE2E2;
      --zinc-900: #18181b;
      --zinc-800: #27272a;
      --zinc-700: #3f3f46;
      --zinc-500: #71717a;
      --zinc-300: #d4d4d8;
      --zinc-100: #f4f4f5;
      --zinc-50:  #fafafa;
      --white: #ffffff;
      --font-display: 'Montserrat', sans-serif;
      --font-body: 'Montserrat', sans-serif;
      --max-w: 1160px;
      --side: clamp(24px, 5vw, 100px);
    }

    /* ─── GLOBAL CONTAINER ─── */
    .container {
      max-width: var(--max-w);
      margin-left: auto;
      margin-right: auto;
      padding-left: var(--side);
      padding-right: var(--side);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--white);
      color: var(--zinc-900);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ─── TOPBAR ─── */
    .topbar {
      background: var(--zinc-900);
      color: var(--zinc-300);
      font-size: 13px;
      padding: 8px 24px;
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
    }
    .topbar span { display: flex; align-items: center; gap: 6px; }
    .topbar a { color: var(--red); text-decoration: none; font-weight: 500; }

    /* ─── NAVBAR ─── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--zinc-100);
    }
    .nav-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      height: 68px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      height: 44px;
    }
    .nav-logo img { height: 40px; width: auto; object-fit: contain; display: block; }
    .nav-logo-text {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 900;
      color: var(--zinc-900);
      letter-spacing: -0.5px;
    }
    .nav-logo-text span { color: var(--red); }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--zinc-700);
      text-decoration: none;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--red); }
    .nav-dropdown { position: relative; }
    .nav-dropdown > a::after { content: ' ▾'; font-size: 11px; }
    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      margin-top: 12px;
      background: var(--white);
      border: 1px solid var(--zinc-100);
      border-radius: 12px;
      box-shadow: 0 16px 40px rgba(0,0,0,0.10);
      padding: 8px;
      min-width: 240px;
      z-index: 200;
    }
    /* Puente invisible que cubre el hueco para que el hover no se pierda */
    .dropdown-menu::before {
      content: '';
      position: absolute;
      bottom: 100%;
      left: 0;
      right: 0;
      height: 12px;
    }
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu { display: block; }
    .dropdown-menu a {
      display: block;
      padding: 10px 14px;
      border-radius: 8px;
      font-size: 13.5px;
      color: var(--zinc-700);
      white-space: nowrap;
    }
    .dropdown-menu a:hover { background: var(--zinc-50); color: var(--red); }
    .dropdown-menu .divider {
      border: none;
      border-top: 1px solid var(--zinc-100);
      margin: 6px 8px;
    }
    .dropdown-label {
      display: block;
      padding: 6px 14px 4px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--red);
    }
    .dropdown-star {
      display: inline-block;
      margin-left: 6px;
      font-size: 12px;
      color: var(--red);
      vertical-align: middle;
    }
    .btn-nav {
      background: var(--red);
      color: var(--white) !important;
      padding: 10px 22px;
      border-radius: 99px;
      font-weight: 600 !important;
      font-size: 14px !important;
      transition: background .2s, transform .15s !important;
    }
    .btn-nav:hover { background: var(--red-dark) !important; transform: translateY(-1px); }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--zinc-900);
      border-radius: 2px;
      transition: all .3s;
    }
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--white);
      z-index: 300;
      padding: 24px;
      overflow-y: auto;
    }
    .mobile-menu.open { display: flex; flex-direction: column; gap: 8px; }
    .mobile-menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
    }
    .mobile-menu a {
      display: block;
      padding: 14px 8px;
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      color: var(--zinc-900);
      text-decoration: none;
      border-bottom: 1px solid var(--zinc-100);
    }
    .mobile-menu a:hover { color: var(--red); }
    .mobile-menu .btn-mobile {
      margin-top: 16px;
      background: var(--red);
      color: var(--white) !important;
      border-radius: 12px;
      text-align: center;
      font-size: 18px !important;
      border-bottom: none;
    }
    .close-btn {
      background: none;
      border: none;
      font-size: 28px;
      cursor: pointer;
      color: var(--zinc-700);
      line-height: 1;
    }

    /* ─── HERO (Preservado del primer código adaptado a variables) ─── */
    .hero {
      min-height: 92vh;
      position: relative;
      display: flex; align-items: center;
      overflow: hidden;
    }
    .hero-bg { position: absolute; inset: 0; z-index: 0; }
    .hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
    .hero-bg img.hero-img-mobile { display: none; }
    .hero-wrap {
      position: relative; z-index: 2;
      width: 100%; max-width: var(--max-w);
      margin: 0 auto;
      padding: 100px var(--side);
    }
    .hero-text { max-width: 520px; }
    .hero h1 {
      font-family: var(--font-display);
      font-size: 48px;
      font-weight: 600; /* Cambiado a Semibold */
      line-height: 1.1;
      letter-spacing: -1.5px;
      color: var(--zinc-900); /* Cambiado a oscuro para que se lea sin degradado */
      white-space: nowrap;
      margin-bottom: 24px;
    }
    .hero h1 em { font-style: normal; color: var(--red); }
    .hero-sub {
      font-size: 17px; line-height: 1.7;
      color: rgba(0, 0, 0, 0.78);
      max-width: 440px; margin-bottom: 36px;
    }
    .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
    .hero::after {
      content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
      height: 70px; background: var(--white);
      clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 100%);
      z-index: 3;
    }
    .btn-ghost-hero {
      display: inline-flex; align-items: center; gap: 6px;
      background: transparent; color: rgba(255,255,255,0.85);
      font-size: 14px; font-weight: 600;
      padding: 15px 24px; border-radius: 99px;
      border: 1.5px solid rgba(255,255,255,0.35); text-decoration: none;
      transition: border-color .2s, color .2s, background .2s;
    }
    .btn-ghost-hero:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.08); }

    /* ─── STATS BAR ─── */
    .stats-bar {
      background: var(--white);
      border-bottom: 1px solid var(--zinc-100);
      padding: 36px 0;
    }
    .stats-inner {
      max-width: 1060px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
    }
    .stat-block {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 32px;
    }
    .stat-num {
      font-family: var(--font-display);
      font-size: clamp(36px, 4vw, 56px);
      font-weight: 900;
      color: var(--zinc-900);
      letter-spacing: -2px;
      line-height: 1;
      display: block;
    }
    .stat-num .red { color: var(--red); }
    .stat-lbl {
      font-size: 13px;
      font-weight: 500;
      color: var(--zinc-500);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 8px;
    }
    .stat-divider {
      width: 1px;
      height: 56px;
      background: var(--zinc-200);
      flex-shrink: 0;
    }

    /* ─── ISO BADGE ─── */
    .iso-block {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 32px;
    }
    .iso-badge {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .iso-logo {
      width: auto;
      height: 64px;
      max-width: 120px;
      object-fit: contain;
      flex-shrink: 0;
    }
    .iso-text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 2px;
    }
    .iso-name {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 900;
      color: var(--zinc-900);
      letter-spacing: -1px;
      line-height: 1;
    }
    .iso-sub {
      font-size: 10px;
      font-weight: 700;
      color: var(--zinc-500);
      letter-spacing: 0.8px;
      text-transform: uppercase;
      line-height: 1.3;
      text-align: left;
    }
    .iso-lbl {
      font-size: 13px;
      font-weight: 500;
      color: var(--zinc-500);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 8px;
    }

    /* ─── BUTTONS (global) ─── */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--red);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 700;
      padding: 15px 30px;
      border-radius: 99px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 20px rgba(220,38,38,0.25);
    }
    .btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(220,38,38,0.35); }
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: transparent;
      color: var(--zinc-700);
      font-size: 14px;
      font-weight: 600;
      padding: 15px 24px;
      border-radius: 99px;
      border: 1.5px solid var(--zinc-300);
      text-decoration: none;
      transition: border-color .2s, color .2s;
    }
    .btn-ghost:hover { border-color: var(--red); color: var(--red); }

    /* ─── TRUST BAR (scrolling) ─── */
    .trust-bar {
      background: var(--white);
      padding: 40px 0 44px;
      border-bottom: 1px solid var(--zinc-100);
      overflow: hidden;
    }
    .trust-label {
      text-align: center;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--zinc-500);
      margin-bottom: 28px;
      font-weight: 600;
      padding: 0 24px;
    }
    .trust-marquee-wrapper {
      display: flex;
      overflow: hidden;
      white-space: nowrap;
    }
    .trust-marquee-track {
      display: inline-flex;
      align-items: center;
      gap: 56px;
      padding: 0 28px;
      animation: trust-scroll 22s linear infinite;
      flex-shrink: 0;
      min-width: 100%;
    }
    .trust-marquee-track img {
      height: 36px;
      width: auto;
      object-fit: contain;
      filter: grayscale(1) opacity(0.4);
      transition: filter .3s;
      flex-shrink: 0;
    }
    .trust-marquee-track img:hover { filter: grayscale(0) opacity(1); }
    @keyframes trust-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ─── PRÓXIMOS EVENTOS ─── */
    .ev-section {
      background: #f5f5f5;
      padding: 80px 0 72px;
    }
    .ev-head {
      text-align: center;
      margin-bottom: 52px;
      padding: 0 var(--side);
    }
    .ev-head .section-title { color: var(--zinc-900); margin-bottom: 0; }

    /* Stage: arrows flanking the visible cards */
    .ev-stage {
      display: flex;
      align-items: center;
      gap: 0;
      position: relative;
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 var(--side);
    }

    /* Big side arrows */
    .ev-arrow {
      flex-shrink: 0;
      width: 48px; height: 48px;
      border-radius: 50%;
      background: var(--white);
      border: 1px solid var(--zinc-300);
      color: var(--zinc-700);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: background .2s, color .2s, transform .15s;
      z-index: 2;
    }
    .ev-arrow:hover { background: var(--red); color: var(--white); transform: scale(1.08); }
    .ev-arrow:disabled { opacity: 0.35; pointer-events: none; }
    .ev-arrow svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

    /* Viewport that clips the track */
    .ev-viewport {
      flex: 1;
      overflow: hidden;
      margin: 0 16px;
    }

    /* Track slides */
    .ev-track {
      display: flex;
      gap: 20px;
      transition: transform .42s cubic-bezier(.22,1,.36,1);
      will-change: transform;
    }

    /* Product card — portrait, like a book */
    .ev-card {
      flex: 0 0 220px;
      display: flex;
      flex-direction: column;
      text-decoration: none;
      border-radius: 14px;
      overflow: hidden;
      background: var(--white);
      border: 1px solid var(--zinc-100);
      transition: transform .25s, box-shadow .25s;
      cursor: pointer;
    }
    .ev-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(0,0,0,0.12); }

    /* Cover area — the "book cover" */
    .ev-cover {
      height: 200px;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 16px;
    }
    .ev-cover-1 { background: linear-gradient(145deg, #4a0000 0%, #991b1b 55%, #dc2626 100%); }
    .ev-cover-2 { background: linear-gradient(145deg, #1e2040 0%, #1e3a5f 55%, #2563eb 100%); }
    .ev-cover-3 { background: linear-gradient(145deg, #0f2d16 0%, #14532d 55%, #16a34a 100%); }
    .ev-cover-4 { background: linear-gradient(145deg, #2d1a00 0%, #78350f 55%, #d97706 100%); }

    /* "Spine" decorative lines on the cover */
    .ev-cover::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,0.02) 0px,
        rgba(255,255,255,0.02) 1px,
        transparent 1px,
        transparent 12px
      );
    }
    .ev-cover-badge {
      position: relative; z-index: 1;
      display: inline-block;
      font-size: 9px; font-weight: 800;
      letter-spacing: 1.5px; text-transform: uppercase;
      padding: 4px 10px; border-radius: 99px;
      margin-bottom: 8px;
      align-self: flex-start;
    }
    .ev-cover-badge.free { background: var(--red); color: var(--white); }
    .ev-cover-badge.paid { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.2); }
    .ev-cover-date {
      position: relative; z-index: 1;
      font-size: 10px; font-weight: 700;
      color: rgba(255,255,255,0.55);
      letter-spacing: 1px; text-transform: uppercase;
    }

    /* Info area below the cover */
    .ev-info {
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
    }
    .ev-title {
      font-family: var(--font-display);
      font-size: 12.5px; font-weight: 800;
      line-height: 1.4; text-transform: uppercase;
      color: var(--zinc-900);
    }
    .ev-action {
      font-size: 11.5px; font-weight: 700;
      color: var(--red);
      display: flex; align-items: center; gap: 4px;
      margin-top: auto;
      transition: gap .2s;
    }
    .ev-card:not(.ev-free-card) .ev-action { color: var(--red); }
    .ev-card:hover .ev-action { gap: 8px; }

    /* Dots indicator */
    .ev-dots {
      display: flex;
      justify-content: center;
      gap: 7px;
      margin-top: 36px;
    }
    .ev-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: rgba(0,0,0,0.15);
      border: none; padding: 0; cursor: pointer;
      transition: background .25s, transform .25s;
    }
    .ev-dot.on { background: var(--red); transform: scale(1.25); }

    /* "Más Eventos" button */
    .ev-footer {
      text-align: center;
      margin-top: 44px;
    }

    /* Mobile */
    @media (max-width: 700px) {
      .ev-stage { padding: 0 12px; }
      .ev-viewport { margin: 0 10px; }
      .ev-card { flex: 0 0 160px; }
      .ev-cover { height: 150px; }
      .ev-arrow { width: 38px; height: 38px; }
    }

    /* ─── VIDEO / QUIÉNES SOMOS SECTION ─── */
        /* ─── VIDEO / QUIÉNES SOMOS SECTION ─── */
    .video-section {
      background: var(--white);
      padding: 96px 0;
      border-bottom: 1px solid var(--zinc-100);
    }
    .video-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--side);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .video-left { color: var(--zinc-900); }
    .section-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 18px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(28px, 3vw, 44px);
      font-weight: 600;
      line-height: 1.1;
      letter-spacing: -1px;
      margin-bottom: 20px;
    }
    .section-body {
      font-size: 16px;
      line-height: 1.75;
      color: var(--zinc-500);
      margin-bottom: 32px;
    }
    .video-left .section-body { color: var(--zinc-500); }
    .feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      color: var(--zinc-700);
    }
    .feature-list li::before {
      content: '';
      width: 18px; height: 18px;
      border-radius: 50%;
      background: rgba(220,38,38,0.08);
      border: 1.5px solid var(--red);
      flex-shrink: 0;
      margin-top: 3px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DC2626' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
      background-size: 11px;
      background-repeat: no-repeat;
      background-position: center;
    }
    .video-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
    .video-right { position: relative; }
    .video-wrapper {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 24px 56px rgba(0,0,0,0.12);
      aspect-ratio: 16/9;
      background: var(--zinc-100);
      position: relative;
    }
    .video-wrapper video { width: 100%; height: 100%; object-fit: cover; display: block; }
    .video-accent {
      position: absolute;
      top: -20px; right: -20px;
      width: 120px; height: 120px;
      border-radius: 50%;
      background: var(--red);
      opacity: 0.06;
      filter: blur(30px);
      z-index: 0;
    }

    /* ─── SERVICES ─── */
    .services-section {
      padding: 96px 0;
      background: var(--zinc-50);
    }
    .services-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 60px;
    }
    .services-list {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    /* Accordion service item */
    .svc-item {
      background: var(--white);
      border: 1px solid var(--zinc-100);
      border-radius: 16px;
      overflow: hidden;
      transition: box-shadow .25s;
    }
    .svc-item:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
    .svc-item.svc-featured { border-color: rgba(220,38,38,0.25); background: var(--zinc-900); }
    .svc-header {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 22px 28px;
      cursor: pointer;
      user-select: none;
      list-style: none;
    }
    .svc-header::-webkit-details-marker { display: none; }
    .svc-icon-wrap {
      width: 44px; height: 44px;
      border-radius: 10px;
      background: var(--red-light);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .svc-item.svc-featured .svc-icon-wrap { background: rgba(220,38,38,0.15); }
    .svc-icon-wrap svg { width: 20px; height: 20px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .svc-header-text { flex: 1; }
    .svc-name {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 800;
      color: var(--zinc-900);
      line-height: 1.25;
    }
    .svc-item.svc-featured .svc-name { color: var(--white); }
    .svc-tagline { font-size: 13px; color: var(--zinc-500); margin-top: 3px; }
    .svc-item.svc-featured .svc-tagline { color: #9ca3af; }
    .svc-badge {
      background: var(--red);
      color: var(--white);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 99px;
      flex-shrink: 0;
    }
    .svc-chevron {
      width: 20px; height: 20px;
      flex-shrink: 0;
      color: var(--zinc-400);
      transition: transform .3s;
    }
    details[open] .svc-chevron { transform: rotate(180deg); }
    .svc-item.svc-featured .svc-chevron { color: rgba(255,255,255,0.35); }
    /* Accordion body */
    .svc-body {
      padding: 0 28px 28px 88px;
      border-top: 1px solid var(--zinc-100);
    }
    .svc-item.svc-featured .svc-body { border-top-color: rgba(255,255,255,0.06); }
    .svc-pillars {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin: 20px 0 24px;
    }
    .svc-pillar {
      background: var(--zinc-50);
      border: 1px solid var(--zinc-100);
      border-radius: 12px;
      padding: 16px 18px;
    }
    .svc-item.svc-featured .svc-pillar { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.07); }
    .svc-pillar-name {
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 700;
      color: var(--red);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 8px;
    }
    .svc-pillar ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .svc-pillar ul li {
      font-size: 12.5px;
      color: var(--zinc-600, #52525b);
      padding-left: 14px;
      position: relative;
      line-height: 1.5;
    }
    .svc-item.svc-featured .svc-pillar ul li { color: #9ca3af; }
    .svc-pillar ul li::before {
      content: '·';
      position: absolute;
      left: 0;
      color: var(--red);
      font-weight: 700;
    }
    .svc-body-simple {
      padding: 20px 0 0;
    }
    .svc-body-simple ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 20px;
    }
    .svc-body-simple ul li {
      font-size: 14px;
      color: var(--zinc-600, #52525b);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .svc-body-simple ul li::before {
      content: '';
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--red);
      flex-shrink: 0;
    }
    .svc-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 700;
      color: var(--red);
      text-decoration: none;
      transition: gap .2s;
    }
    .svc-link:hover { gap: 10px; }
    .svc-item.svc-featured .svc-body-simple ul li { color: #9ca3af; }
    .services-cta {
      text-align: center;
      margin-top: 40px;
    }

    /* ─── TESTIMONIALS ─── */
    .testimonials-section {
      padding: 96px 0;
      background: var(--white);
    }
    .testimonials-header {
      text-align: center;
      max-width: 560px;
      margin: 0 auto 56px;
    }
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .testi-card {
      background: var(--zinc-50);
      border: 1px solid var(--zinc-100);
      border-radius: 20px;
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: transform .25s;
    }
    .testi-card:hover { transform: translateY(-4px); }
    .testi-stars { color: var(--red); font-size: 16px; letter-spacing: 2px; }
    .testi-quote {
      font-size: 15px;
      line-height: 1.7;
      color: var(--zinc-700);
      flex: 1;
    }
    .testi-quote::before { content: '"'; }
    .testi-quote::after { content: '"'; }
    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid var(--zinc-200);
      padding-top: 18px;
    }
    .testi-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--zinc-200);
      object-fit: cover;
      flex-shrink: 0;
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--zinc-600);
    }
    .testi-name { font-weight: 600; font-size: 14px; color: var(--zinc-900); }
    .testi-role { font-size: 12px; color: var(--zinc-500); margin-top: 2px; }

    /* ─── PROCESS STRIP ─── */
    .process-section {
      padding: 80px 0;
      background: var(--zinc-900);
      overflow: hidden;
    }
    .process-header { text-align: center; color: var(--white); margin-bottom: 56px; }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute;
      top: 32px;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--red), var(--red), transparent);
      opacity: 0.3;
      z-index: 0;
    }
    .process-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }
    .step-num {
      width: 64px; height: 64px;
      border-radius: 50%;
      border: 1.5px solid rgba(220,38,38,0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 800;
      color: var(--red);
      margin-bottom: 20px;
      background: rgba(220,38,38,0.06);
    }
    .step-title {
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }
    .step-desc {
      font-size: 13px;
      line-height: 1.6;
      color: #6b7280;
    }

    /* ─── PROCESS BLUR LOCK ─── */
    .process-lock-wrapper {
      position: relative;
    }
    .process-blur-overlay {
      position: absolute;
      inset: 0;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      background: linear-gradient(to bottom, rgba(10,10,10,0) 0%, rgba(10,10,10,0.65) 40%, rgba(10,10,10,0.92) 100%);
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      cursor: pointer;
      text-decoration: none;
      transition: backdrop-filter .3s;
    }
    .process-blur-overlay:hover { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
    .lock-icon {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: rgba(220,38,38,0.15);
      border: 2px solid rgba(220,38,38,0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 4px;
    }
    .lock-icon svg { width: 28px; height: 28px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .lock-text {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 800;
      color: var(--white);
      text-align: center;
      letter-spacing: -0.3px;
    }
    .lock-sub {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      text-align: center;
    }
    .lock-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--red);
      color: var(--white);
      font-size: 14px;
      font-weight: 700;
      padding: 13px 28px;
      border-radius: 99px;
      margin-top: 8px;
      box-shadow: 0 4px 20px rgba(220,38,38,0.35);
      transition: background .2s, transform .15s;
    }
    .process-blur-overlay:hover .lock-btn { background: var(--red-dark); transform: translateY(-2px); }

    /* ─── CTA FINAL ─── */
    .cta-section {
      padding: 100px 0;
      background: var(--white);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-bg-circle {
      position: absolute;
      top: -160px; left: 50%;
      transform: translateX(-50%);
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(220,38,38,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-inner {
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: 0 auto;
    }
    .cta-section .section-title { font-size: clamp(32px, 4vw, 56px); }
    .cta-section .section-body { font-size: 17px; max-width: 520px; margin: 0 auto 40px; }
    .cta-section .btn-primary { font-size: 16px; padding: 18px 40px; }
    .cta-micro {
      margin-top: 18px;
      font-size: 13px;
      color: var(--zinc-400, #a1a1aa);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
    }
    .cta-micro span { display: flex; align-items: center; gap: 5px; }
    .cta-micro span::before { content: '✓'; color: var(--red); font-weight: 700; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--zinc-900);
      color: var(--zinc-500);
      padding: 64px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 56px;
    }
    .footer-logo {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 14px;
      display: block;
    }
    .footer-logo span { color: var(--red); }
    .footer-logo-img {
      height: 44px;
      width: auto;
      object-fit: contain;
      filter: brightness(0) invert(1);
      margin-bottom: 14px;
      display: block;
    }
    .footer-tagline { font-size: 14px; line-height: 1.65; max-width: 280px; margin-bottom: 24px; }
    .footer-social { display: flex; gap: 10px; }
    .social-btn {
      width: 36px; height: 36px;
      border-radius: 8px;
      background: var(--zinc-800);
      display: flex; align-items: center; justify-content: center;
      color: var(--zinc-400);
      font-size: 14px;
      text-decoration: none;
      transition: background .2s, color .2s;
    }
    .social-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
    .social-btn:hover { background: var(--red); color: var(--white); }
    .footer-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 14px;
      color: var(--zinc-500);
      text-decoration: none;
      transition: color .2s;
    }
    .footer-whatsapp svg { color: #25D366; flex-shrink: 0; }
    .footer-whatsapp:hover { color: var(--white); }
    .footer-col h4 {
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 18px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul a { font-size: 14px; color: var(--zinc-500); text-decoration: none; transition: color .2s; }
    .footer-col ul a:hover { color: var(--white); }
    .footer-bottom {
      border-top: 1px solid var(--zinc-800);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 13px;
    }
    .footer-bottom a { color: var(--zinc-500); text-decoration: none; }
    .footer-bottom a:hover { color: var(--white); }

    /* ─── MOBILE ─── */
    @media (max-width: 900px) {
      .topbar { display: none; }
      .nav-inner { padding: 0 20px; }
      .nav-links, .nav-cta-desktop { display: none; }
      .hamburger { display: flex; }

      /* Mobile hero */
      .hero { flex-direction: column; min-height: auto; background: var(--white); }
      .hero-bg { position: relative; width: 100%; height: 58vw; min-height: 240px; max-height: 360px; overflow: hidden; }
      .hero-bg img.hero-img-desktop { display: none; }
      .hero-bg img.hero-img-mobile { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
      .hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.25) 100%); }
      .hero-wrap { padding: 28px var(--side) 48px; }
      .hero-text { max-width: 100%; }
      .hero h1 { font-size: 32px; white-space: normal; letter-spacing: -0.5px; width: 100%; color: var(--zinc-900); }
      .hero-sub { color: rgba(0,0,0,0.68); }
      .btn-ghost-hero { color: var(--zinc-700); border-color: var(--zinc-300); }
      .btn-ghost-hero:hover { border-color: var(--red); color: var(--red); background: transparent; }
      .hero::after { display: none; }

      /* Stats bar mobile */
      .stats-bar { padding: 28px 0; }
      .stats-bar .container { padding-inline: 24px; }
      .stats-inner { gap: 0; }
      .stat-block { padding: 0 16px; }
      .iso-block { padding: 0 16px; }
      .stat-num { font-size: 28px; }
      .stat-lbl { font-size: 11px; }
      .stat-divider { height: 40px; }

      .trust-bar { padding: 28px 0 32px; }
      .trust-marquee-track { gap: 36px; }
      .trust-marquee-track img { height: 26px; }


      /* Video section mobile */
      .video-section { padding: 64px 0; }
      .video-inner {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 40px;
      }
      .video-left { order: 2; }
      .video-right { order: 1; }

      .services-section { padding: 64px 0; }
      .services-section .container { padding-inline: 24px; }
      .svc-pillars { grid-template-columns: 1fr; }
      .svc-body { padding-left: 24px; }

      .testimonials-section { padding: 64px 0; }
      .testimonials-section .container { padding-inline: 24px; }
      .testi-grid { grid-template-columns: 1fr; gap: 16px; }

      .process-section { padding: 64px 0; }
      .process-section .container { padding-inline: 24px; }
      .process-steps { grid-template-columns: repeat(3, 1fr); gap: 36px 8px; }
      .process-steps::before { display: none; }

      .cta-section { padding: 72px 0; }
      .cta-section .container { padding-inline: 24px; }

      footer { padding: 48px 0 24px; }
      footer .container { padding-inline: 24px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: 28px; letter-spacing: -0.5px; }
      .hero-ctas { flex-direction: column; align-items: stretch; }
      .hero-ctas a { text-align: center; justify-content: center; }
      .stats-inner { flex-wrap: wrap; gap: 20px; }
      .stat-divider { display: none; }
      .stat-block { flex: 0 0 45%; }
      .process-steps { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr; }
      .video-ctas { flex-direction: column; align-items: stretch; }
      .video-ctas a { text-align: center; justify-content: center; }
    }

    /* ─── SCROLL ANIMATIONS ─── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
    }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }
    /* ─── WEBINARS SECTION ─── */
    .wb-section {
      background: #f5f5f5;
      padding: 80px 0 72px;
    }
    .wb-head {
      text-align: center;
      margin-bottom: 44px;
    }
    .wb-head .section-title { margin-bottom: 0; }

    /* Two cards side by side */
    .wb-list-wrap { position: relative; }
    .wb-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    /* Horizontal card: image left, text center, button right */
    .wb-row {
      display: grid;
      grid-template-columns: 140px 1fr auto;
      align-items: stretch;
      gap: 0;
      background: var(--white);
      border: 1px solid var(--zinc-100);
      border-radius: 16px;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      transition: box-shadow .25s, transform .25s;
    }
    .wb-row:hover {
      box-shadow: 0 8px 28px rgba(0,0,0,0.09);
      transform: translateY(-3px);
    }

    /* Square image — 140×140 px */
    .wb-thumb {
      width: 140px;
      height: 140px;
      flex-shrink: 0;
      align-self: stretch;
    }
    .wb-thumb-inner {
      width: 100%; height: 100%;
      background: linear-gradient(145deg, #7f1d1d 0%, #b91c1c 55%, #dc2626 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      position: relative;
    }
    .wb-thumb-inner::after {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px,
        transparent 1px, transparent 12px
      );
    }
    .wb-thumb-inner svg {
      width: 32px; height: 32px;
      position: relative; z-index: 1;
    }
    .wb-thumb-label {
      font-family: var(--font-display);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 1px;
      color: rgba(255,255,255,0.45);
      position: relative; z-index: 1;
    }

    /* Text body */
    .wb-body {
      padding: 18px 16px;
      display: flex;
      flex-direction: column;
      gap: 7px;
      justify-content: center;
    }
    .wb-badge {
      display: inline-block;
      background: var(--red-light);
      color: var(--red);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 99px;
      align-self: flex-start;
    }
    .wb-title {
      font-family: var(--font-display);
      font-size: 13.5px;
      font-weight: 600;       /* SemiBold */
      color: var(--zinc-900);
      line-height: 1.4;
      letter-spacing: -0.1px;
    }
    .wb-date {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      font-weight: 500;
      color: var(--zinc-500);
    }
    .wb-date svg { flex-shrink: 0; color: var(--red); }

    /* Right action column */
    .wb-action {
      padding: 18px 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border-left: 1px solid var(--zinc-100);
    }
    .wb-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--red);
      color: var(--white);
      font-family: var(--font-display);
      font-size: 12px;
      font-weight: 600;
      padding: 10px 16px;
      border-radius: 99px;
      white-space: nowrap;
      box-shadow: 0 3px 12px rgba(220,38,38,0.20);
      transition: background .2s, transform .15s, box-shadow .2s;
    }
    .wb-row:hover .wb-btn {
      background: var(--red-dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(220,38,38,0.30);
    }

    /* Mobile nav arrows (hidden on desktop) */
    .wb-mobile-nav { display: none; }

    /* Footer CTA */
    .wb-footer {
      text-align: center;
      margin-top: 36px;
    }

    /* ── Webinars — Mobile ── */
    @media (max-width: 700px) {
      .wb-section { padding: 56px 0 52px; }
      .wb-section .container { padding-inline: 20px; }

      /* Single column, one card visible at a time */
      .wb-list {
        grid-template-columns: 1fr;
        gap: 0;
        overflow: hidden;
      }
      .wb-list .wb-row {
        display: none;
        grid-template-columns: 110px 1fr auto;
        border-radius: 14px;
        transform: none !important;
      }
      .wb-list .wb-row.wb-active { display: grid; }
      .wb-thumb { width: 110px; height: 110px; }
      .wb-body { padding: 14px 14px; gap: 6px; }
      .wb-title { font-size: 13px; }
      .wb-action { padding: 14px 14px; }
      .wb-btn { font-size: 11px; padding: 9px 14px; }

      /* Show mobile navigation */
      .wb-mobile-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-top: 16px;
      }
      .wb-mob-arrow {
        width: 40px; height: 40px;
        border-radius: 50%;
        background: var(--white);
        border: 1px solid var(--zinc-300);
        display: flex; align-items: center; justify-content: center;
        cursor: pointer;
        transition: background .2s, color .2s;
      }
      .wb-mob-arrow:hover { background: var(--red); color: var(--white); }
      .wb-mob-arrow:disabled { opacity: 0.3; pointer-events: none; }
      .wb-mob-arrow svg {
        width: 18px; height: 18px;
        stroke: currentColor; fill: none;
        stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
      }
      .wb-mob-count {
        font-size: 13px;
        font-weight: 600;
        color: var(--zinc-500);
        min-width: 32px;
        text-align: center;
      }
    }
