/* ============================================================
        REAL LATINO TALENT — Design Tokens
        ============================================================ */
    :root {
      --rlt-blue: #0055B8;
      --rlt-lime: #CDDE00;
      --rlt-pearl: #F6F6F6;
      --rlt-navy: #08223D;
      --rlt-white: #FFFFFF;
      --rlt-blue-hover: #003D85;
      --rlt-lime-hover: #A3B200;
      --rlt-font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --rlt-radius-lg: 16px;
      --rlt-radius-full: 50px;
      --rlt-ease-default: cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Global font override */
    body,
    html,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    a,
    span,
    li,
    button,
    input,
    textarea,
    select {
      font-family: var(--rlt-font-family) !important;
    }

    /* ─── RLT HERO SECTION ─── */
    .rlt-hero {
      background-color: var(--rlt-blue, #0055B8);
      position: relative;
      overflow: hidden;
    }

    .rlt-hero-content-wrapper {
      position: relative;
      z-index: 2;
      padding: 160px 0 100px;
    }

    .rlt-hero .rlt-hero-content {
      max-width: 580px;
    }

    .rlt-hero h1 {
      font-family: var(--rlt-font-family) !important;
      font-weight: 900 !important;
      font-size: clamp(2.25rem, 4.5vw, 3.5rem);
      line-height: 1.15;
      letter-spacing: -0.01em;
      color: var(--rlt-white, #FFFFFF);
      margin-bottom: 24px;
      text-transform: none;
    }

    .rlt-hero h1 .rlt-accent {
      color: var(--rlt-lime, #CDDE00);
    }

    .rlt-hero .rlt-subheadline {
      font-family: var(--rlt-font-family) !important;
      font-weight: 400;
      font-size: 1.125rem;
      line-height: 1.7;
      color: rgba(246, 246, 246, 0.9);
      margin-bottom: 40px;
      max-width: 520px;
    }

    /* CTA Button group */
    .rlt-cta-group {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      margin-bottom: 40px;
    }

    .rlt-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: var(--rlt-lime, #CDDE00);
      color: var(--rlt-navy, #08223D);
      font-family: var(--rlt-font-family) !important;
      font-weight: 800;
      font-size: 0.9375rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 16px 36px;
      border-radius: var(--rlt-radius-full, 50px);
      border: none;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
      white-space: nowrap;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    }

    .rlt-btn-primary:hover {
      background-color: var(--rlt-lime, #CDDE00);
      color: var(--rlt-navy, #08223D);
      text-decoration: none;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }

    .rlt-btn-primary:active {
      transform: scale(0.98);
    }

    .rlt-btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: transparent;
      color: var(--rlt-white, #FFFFFF);
      font-family: var(--rlt-font-family) !important;
      font-weight: 700;
      font-size: 0.9375rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 14px 30px;
      border-radius: var(--rlt-radius-full, 50px);
      border: 2px solid rgba(255, 255, 255, 0.4);
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
      white-space: nowrap;
    }

    .rlt-btn-secondary:hover {
      border-color: var(--rlt-white, #FFFFFF);
      background-color: rgba(255, 255, 255, 0.08);
      color: var(--rlt-white, #FFFFFF);
      text-decoration: none;
      transform: translateY(-2px);
    }

    /* Trust line */
    .rlt-trust-line {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: var(--rlt-font-family) !important;
      font-size: 0.85rem;
      font-weight: 400;
      color: rgba(246, 246, 246, 0.7);
    }

    .rlt-trust-line::before {
      content: '';
      display: inline-block;
      width: 24px;
      height: 1.5px;
      background-color: var(--rlt-lime, #CDDE00);
      flex-shrink: 0;
    }

    /* Decorative badge */
    .rlt-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: rgba(255, 255, 255, 0.12);
      color: var(--rlt-white, #FFFFFF);
      font-family: var(--rlt-font-family) !important;
      font-weight: 800;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: var(--rlt-radius-full, 50px);
      margin-bottom: 24px;
    }

    .rlt-hero-badge span.dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: var(--rlt-lime, #CDDE00);
      display: inline-block;
    }

    /* Desktop 50% split screen styling */
    @media (min-width: 992px) {
      .rlt-hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
      }

      .rlt-hero-image-pane {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 50%;
        z-index: 1;
      }

      .rlt-hero-image-pane img {
        width: 100%;
        height: 85%;
        position: absolute;
        bottom: 0;
        right: 0;
        object-fit: contain;
        object-position: bottom center;
      }
    }

    /* Mobile/tablet stacked layout */
    @media (max-width: 991px) {
      .rlt-hero-content-wrapper {
        padding: 130px 0 50px;
      }

      .rlt-hero-image-pane {
        width: 100%;
        height: 400px;
        margin-top: 30px;
      }

      .rlt-hero-image-pane img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: bottom center;
        border-radius: 16px;
      }

      .rlt-cta-group {
        flex-direction: column;
        align-items: stretch;
      }

      .rlt-btn-primary,
      .rlt-btn-secondary {
        width: 100%;
        justify-content: center;
      }
    }

    /* Remove template nav dropdown arrow that appears as stray gray arrow */
    li.menu-item-children>a:before {
      display: none !important;
    }

    /* ─── CUSTOM HEADER NAV & LOGO ─── */
    .rlt-header {
      position: fixed !important;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 9999;
      background-color: var(--rlt-navy);
      border-top: 3px solid var(--rlt-lime);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    .rlt-header.scrolled {
      background-color: rgba(8, 34, 61, 0.97);
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .top-bar {
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
    }

    .top-bar .logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    .top-bar .logo a {
      display: flex;
      align-items: center;
    }

    .rlt-main-nav {
      display: none;
    }

    .rlt-main-nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .rlt-main-nav-links a {
      color: var(--rlt-white);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      font-family: var(--rlt-font-family);
      transition: color 0.3s ease;
    }

    .rlt-main-nav-links a:hover {
      color: var(--rlt-lime);
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
    }

    .rlt-header-cta {
      display: none;
    }

    @media (min-width: 992px) {
      .rlt-main-nav {
        display: flex;
        flex: 1;
        justify-content: center;
      }

      .rlt-header-cta {
        display: inline-flex;
        align-items: center;
        padding: 12px 24px;
        font-size: 0.85rem;
        letter-spacing: 0.05em;
        background-color: var(--rlt-lime);
        color: var(--rlt-navy);
        font-weight: 800;
        border-radius: 50px;
        text-decoration: none;
        text-transform: uppercase;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        white-space: nowrap;
      }

      .rlt-header-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(205, 222, 0, 0.3);
        color: var(--rlt-navy);
        text-decoration: none;
      }

      #mobile-menu-trigger {
        display: none !important;
      }

      .rlt-mobile-menu {
        display: none !important;
      }
    }

    @media (max-width: 991px) {
      .header-right {
        display: flex !important;
      }

      #mobile-menu-trigger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        padding: 0;
        margin: 0;
      }

      .rlt-header-cta {
        display: none !important;
      }

      .top-bar {
        justify-content: space-between !important;
      }
      
      .logo-desktop {
        display: none !important;
      }
      
      .logo-mobile {
        display: block !important;
      }

      .rlt-mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--rlt-navy);
        z-index: 10000;
        padding: 40px 30px;
        display: flex;
        flex-direction: column;
        transition: right 0.3s ease;
        box-shadow: -4px 0 15px rgba(0,0,0,0.5);
      }

      .rlt-mobile-menu.open {
        right: 0;
      }

      .rlt-mobile-menu-close {
        align-self: flex-end;
        background: none;
        border: none;
        color: var(--rlt-lime);
        font-size: 3rem;
        line-height: 1;
        cursor: pointer;
        margin-bottom: 40px;
      }

      .rlt-mobile-nav-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 25px;
      }

      .rlt-mobile-nav-links a {
        color: var(--rlt-white);
        text-decoration: none;
        font-size: 1.25rem;
        font-weight: 600;
        font-family: var(--rlt-font-family);
      }

      .rlt-mobile-nav-links a:hover {
        color: var(--rlt-lime);
      }

      .rlt-mobile-cta {
        margin-top: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 24px;
        font-size: 1rem;
        letter-spacing: 0.05em;
        background-color: var(--rlt-lime);
        color: var(--rlt-navy);
        font-weight: 800;
        border-radius: 50px;
        text-decoration: none;
        text-transform: uppercase;
      }
      
      body.rlt-business-page .rlt-hero-content {
        display: flex;
        flex-direction: column;
      }
      body.rlt-business-page .rlt-hero-badge {
        order: -1 !important;
        align-self: flex-start;
      }
      body.rlt-business-page .rlt-hero-content h1 {
        order: 0 !important;
      }
      body.rlt-business-page .rlt-subheadline {
        order: 1 !important;
      }
      body.rlt-business-page .rlt-cta-group {
        order: 2 !important;
        margin-top: 10px;
        margin-bottom: 15px;
      }
      body.rlt-business-page .rlt-trust-line {
        order: 3 !important;
        margin-bottom: 30px;
      }
      body.rlt-business-page .rlt-hero-image-pane {
        order: 4 !important;
        margin-bottom: 0 !important;
      }
    }