/* ============================================================
       DESIGN TOKENS â€” CSS VARIABLES
    ============================================================ */
    :root {
      --primary:        #0D9488;
      --primary-hover:  #14B8A6;
      --primary-light:  #2DD4BF;
      --primary-xlight: #F0FDFA;
      --primary-dark:   #065F46;
      --accent:         #F59E0B;
      --accent-hover:   #FBBF24;
      --accent-dark:    #D97706;
      --accent-light:   #FFF7ED;
      --dark:           #0F172A;
      --dark-2:         #1E293B;
      --text:           #334155;
      --text-muted:     #64748B;
      --text-light:     #94A3B8;
      --bg:             #FFFFFF;
      --bg-alt:         #F8FAFC;
      --bg-teal:        #F0FDFA;
      --border:         #E2E8F0;
      --border-dark:    #CBD5E1;
      --success:        #10B981;
      --radius-sm:      8px;
      --radius-md:      12px;
      --radius-lg:      16px;
      --radius-xl:      24px;
      --radius-full:    9999px;
      --shadow-sm:      0 1px 3px rgba(0,0,0,0.06);
      --shadow-md:      0 4px 16px rgba(0,0,0,0.08);
      --shadow-lg:      0 8px 40px rgba(0,0,0,0.12);
      --shadow-primary: 0 8px 30px rgba(13,148,136,0.25);
      --section-py:     80px;
      --font-display:   'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      --font-body:      'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    /* ============================================================
       RESET + BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      font-family: var(--font-body);
      font-size: 16px; color: var(--text);
      background: var(--bg); line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    ul, ol { list-style: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-display);
      font-weight: 700; color: var(--dark); line-height: 1.2;
    }
    h1 { font-size: 56px; font-weight: 800; }
    h2 { font-size: 40px; }
    h3 { font-size: 24px; }
    h4 { font-size: 18px; }
    p  { line-height: 1.65; }
    @media (max-width: 767px) {
      h1 { font-size: 36px; }
      h2 { font-size: 28px; }
      h3 { font-size: 20px; }
    }

    /* ============================================================
       LAYOUT
    ============================================================ */
    .hrb-container {
      max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%;
    }
    @media (min-width: 768px)  { .hrb-container { padding: 0 40px; } }
    @media (min-width: 1280px) { .hrb-container { padding: 0 48px; } }
    .hrb-section     { padding: var(--section-py) 0; }
    .hrb-section-alt { padding: var(--section-py) 0; background: var(--bg-alt); }

    .hrb-section-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--primary);
      background: var(--primary-xlight); border-radius: var(--radius-full);
      padding: 6px 14px; margin-bottom: 12px;
    }
    .hrb-section-label::before {
      content: ''; width: 8px; height: 8px;
      background: var(--primary); border-radius: 50%;
    }

    /* ============================================================
       BUTTONS
    ============================================================ */
    .hrb-btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      min-width: 200px; height: 52px; padding: 0 28px;
      border-radius: var(--radius-md); font-family: var(--font-display);
      font-size: 15px; font-weight: 700;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      text-decoration: none; white-space: nowrap; cursor: pointer; border: none;
    }
    .hrb-btn--primary {
      background: var(--primary); color: white;
      box-shadow: 0 4px 12px rgba(13,148,136,0.25);
    }
    .hrb-btn--primary:hover {
      background: var(--primary-hover); transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(13,148,136,0.35); color: white;
    }
    .hrb-btn--accent {
      background: var(--accent); color: var(--dark);
      font-weight: 700; box-shadow: 0 4px 16px rgba(245,158,11,0.3);
    }
    .hrb-btn--accent:hover {
      background: var(--accent-hover); transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(245,158,11,0.4); color: var(--dark);
    }
    .hrb-btn--outline-white {
      background: transparent; color: white;
      border: 2px solid rgba(255,255,255,0.5);
    }
    .hrb-btn--outline-white:hover {
      background: rgba(255,255,255,0.12); border-color: white; color: white;
    }
    .hrb-btn--outline-primary {
      background: transparent; color: var(--primary);
      border: 2px solid var(--primary);
    }
    .hrb-btn--outline-primary:hover { background: var(--primary-xlight); }
    .hrb-btn--lg   { height: 56px; font-size: 16px; min-width: 220px; }
    .hrb-btn--sm   { height: 40px; min-width: 140px; font-size: 14px; padding: 0 20px; }
    .hrb-btn--full { width: 100%; min-width: unset; }

    /* ============================================================
       HEADER + NAV
    ============================================================ */
    .hrb-header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(255,255,255,0);
      transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
      border-bottom: 1px solid transparent;
    }
    .hrb-header--scrolled {
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 2px 24px rgba(13,148,136,0.09);
      border-bottom-color: var(--border);
    }
    .hrb-header__inner {
      display: flex; align-items: center; gap: 8px;
      height: 72px; padding: 0 24px; max-width: 1280px; margin: 0 auto;
    }
    @media (min-width: 768px) { .hrb-header__inner { padding: 0 40px; } }
    .hrb-header__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
    .hrb-logo-mark { flex-shrink: 0; }
    .hrb-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
    .hrb-logo-main {
      font-family: var(--font-display); font-weight: 700; font-size: 17px;
      color: white; transition: color 0.35s ease;
    }
    .hrb-logo-sub {
      font-family: var(--font-display); font-weight: 400; font-size: 12px;
      color: rgba(255,255,255,0.75); letter-spacing: 0.03em; transition: color 0.35s ease;
    }
    .hrb-header--scrolled .hrb-logo-main { color: var(--dark); }
    .hrb-header--scrolled .hrb-logo-sub  { color: var(--primary); }

    .hrb-nav { margin-left: auto; display: none; }
    @media (min-width: 1024px) { .hrb-nav { display: flex; } }
    .hrb-nav__list { display: flex; align-items: center; gap: 4px; }
    .hrb-nav__item { position: relative; }
    .hrb-nav__link {
      display: flex; align-items: center; gap: 4px;
      font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.88);
      padding: 8px 14px; border-radius: var(--radius-sm);
      transition: color 0.2s, background 0.2s; background: none; cursor: pointer; user-select: none;
    }
    .hrb-nav__link:hover { color: white; background: rgba(255,255,255,0.12); }
    .hrb-header--scrolled .hrb-nav__link { color: var(--text); }
    .hrb-header--scrolled .hrb-nav__link:hover { color: var(--primary); background: var(--primary-xlight); }
    .hrb-nav__chevron { transition: transform 0.2s ease; flex-shrink: 0; }
    .hrb-nav__item--mega:hover .hrb-nav__chevron,
    .hrb-nav__item--dropdown:hover .hrb-nav__chevron { transform: rotate(180deg); }

    .hrb-mega-menu {
      position: absolute; top: 100%; left: 50%;
      transform: translateX(-50%) translateY(4px);
      background: white; border: 1px solid var(--border);
      border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
      min-width: 760px; opacity: 0; visibility: hidden;
      transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
      pointer-events: none; z-index: 200;
    }
    /* Bridge gap so hover isn't lost moving mouse down to menu */
    .hrb-mega-menu::before {
      content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
    }
    .hrb-nav__item--mega:hover .hrb-mega-menu,
    .hrb-nav__item--mega:focus-within .hrb-mega-menu,
    .hrb-nav__item--mega.is-open .hrb-mega-menu {
      opacity: 1; visibility: visible;
      transform: translateX(-50%) translateY(0);
      pointer-events: all;
      transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
    }
    /* Columns auto-size to content so nothing clips */
    .hrb-mega-menu__inner { display: grid; grid-template-columns: auto auto 210px; gap: 0; padding: 8px; }
    .hrb-mega-menu__col { padding: 20px 20px; }
    .hrb-mega-menu__col--cta { background: var(--bg-teal); border-radius: var(--radius-md); min-width: 210px; }
    .hrb-mega-menu__heading { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 12px; }
    .hrb-mega-menu__link { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--radius-sm); font-size: 14px; color: var(--text); transition: background 0.15s; }
    .hrb-mega-menu__link:hover { background: var(--bg-alt); color: var(--primary); }
    .hrb-mega-menu__link strong { display: block; margin-bottom: 2px; color: var(--dark); white-space: nowrap; font-size: 14px; font-weight: 600; }
    .hrb-mega-menu__link small  { display: block; color: var(--text-muted); font-size: 12px; white-space: nowrap; }
    /* Clean SVG icon box â€” no emoji */
    .hrb-mega-menu__icon {
      width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
      background: var(--primary-xlight); color: var(--primary);
      display: flex; align-items: center; justify-content: center;
    }
    .hrb-mega-menu__link:hover .hrb-mega-menu__icon { background: rgba(13,148,136,0.15); }
    .hrb-mega-menu__promo { padding: 8px; }
    .hrb-mega-menu__promo-tag { display: inline-block; background: var(--accent-light); color: var(--accent); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 3px 10px; border-radius: var(--radius-full); margin-bottom: 14px; }
    .hrb-mega-menu__promo h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--dark); line-height: 1.3; }
    .hrb-mega-menu__promo p  { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; line-height: 1.55; }

    .hrb-dropdown {
      position: absolute; top: 100%; left: 0;
      background: white; border: 1px solid var(--border);
      border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
      min-width: 220px; padding: 8px;
      opacity: 0; visibility: hidden; transform: translateY(4px);
      transition: opacity 0.18s, transform 0.18s, visibility 0s linear 0.18s;
      pointer-events: none; z-index: 200;
    }
    /* Bridge gap so hover isn't lost moving mouse to dropdown */
    .hrb-dropdown::before {
      content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
    }
    .hrb-nav__item--dropdown:hover .hrb-dropdown,
    .hrb-nav__item--dropdown:focus-within .hrb-dropdown,
    .hrb-nav__item--dropdown.is-open .hrb-dropdown {
      opacity: 1; visibility: visible; transform: none; pointer-events: all;
      transition: opacity 0.18s, transform 0.18s, visibility 0s;
    }
    .hrb-dropdown__link { display: block; padding: 9px 14px; border-radius: var(--radius-sm); font-size: 14px; color: var(--text); transition: background 0.15s, color 0.15s; }
    .hrb-dropdown__link:hover { background: var(--bg-alt); color: var(--primary); }

    .hrb-header__actions { display: none; align-items: center; gap: 12px; margin-left: 16px; }
    @media (min-width: 1024px) { .hrb-header__actions { display: flex; } }
    .hrb-header__phone {
      display: flex; align-items: center; gap: 6px;
      font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.88);
      white-space: nowrap; transition: color 0.35s ease;
    }
    .hrb-header__phone:hover { color: white; }
    .hrb-header--scrolled .hrb-header__phone { color: var(--text); }
    .hrb-header--scrolled .hrb-header__phone:hover { color: var(--primary); }

    .hrb-hamburger {
      display: flex; flex-direction: column; gap: 5px;
      margin-left: auto; padding: 8px; border-radius: var(--radius-sm); transition: background 0.2s;
    }
    .hrb-hamburger:hover { background: rgba(255,255,255,0.12); }
    .hrb-header--scrolled .hrb-hamburger:hover { background: var(--bg-alt); }
    @media (min-width: 1024px) { .hrb-hamburger { display: none; } }
    .hrb-hamburger span {
      display: block; width: 22px; height: 2px; background: white;
      border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease, background 0.35s ease;
    }
    .hrb-header--scrolled .hrb-hamburger span { background: var(--dark); }
    .hrb-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hrb-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .hrb-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hrb-mobile-menu {
      position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
      background: white; overflow-y: auto;
      transform: translateX(100%); transition: transform 0.3s ease;
      z-index: 999; border-top: 1px solid var(--border);
    }
    .hrb-mobile-menu--open { transform: translateX(0); }
    .hrb-no-scroll { overflow: hidden; }
    .hrb-mobile-menu__list { padding: 16px 0 100px; }
    .hrb-mobile-menu__heading { padding: 16px 24px 8px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
    .hrb-mobile-menu__link { display: block; padding: 13px 24px; font-size: 16px; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--border); transition: color 0.15s, background 0.15s; }
    .hrb-mobile-menu__link:hover { color: var(--primary); background: var(--bg-teal); }
    .hrb-mobile-menu__link--phone { color: var(--primary); font-weight: 600; }
    .hrb-mobile-menu__divider { height: 1px; background: var(--border); margin: 8px 24px; }

    /* ============================================================
       HOMEPAGE â€” PAGE-SPECIFIC STYLES ONLY
    ============================================================ */

    /* ============================================================
       HERO SECTION
    ============================================================ */
    .hrb-hero {
      position: relative; overflow: hidden;
      background: linear-gradient(135deg, #0A7075 0%, #064E52 40%, #0F172A 100%);
      padding: 140px 0 100px;
      min-height: 100vh; display: flex; align-items: center;
    }
    /* Subtle mesh grid pattern overlay */
    .hrb-hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }
    /* Radial glow */
    .hrb-hero::after {
      content: '';
      position: absolute; top: -20%; right: -10%;
      width: 60vw; height: 60vw; max-width: 800px; max-height: 800px;
      background: radial-gradient(circle, rgba(255,107,43,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .hrb-hero__inner {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr;
      gap: 56px; align-items: center;
    }
    @media (min-width: 1024px) {
      .hrb-hero__inner { grid-template-columns: 1fr 1fr; gap: 80px; }
    }
    .hrb-hero__badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.9); border-radius: var(--radius-full);
      padding: 6px 16px; font-size: 13px; font-weight: 600; margin-bottom: 24px;
    }
    .hrb-hero__badge-dot {
      width: 8px; height: 8px; background: #4ADE80;
      border-radius: 50%; animation: hrb-pulse-green 2s ease-in-out infinite;
    }
    @keyframes hrb-pulse-green {
      0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
      50% { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
    }
    .hrb-hero__heading {
      font-family: var(--font-display); font-weight: 700;
      font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.1;
      color: white; margin-bottom: 24px;
    }
    .hrb-hero__heading em {
      font-style: normal; color: var(--accent);
      position: relative; display: inline-block;
    }
    .hrb-hero__subheading {
      font-size: clamp(1rem, 1.5vw, 1.2rem); color: rgba(255,255,255,0.8);
      line-height: 1.7; margin-bottom: 40px; max-width: 540px;
    }
    .hrb-hero__ctas {
      display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px;
    }
    .hrb-hero__trust-mini {
      display: flex; flex-wrap: wrap; gap: 20px; align-items: center;
    }
    .hrb-hero__trust-item {
      display: flex; align-items: center; gap: 7px;
      font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500;
    }
    .hrb-hero__trust-item svg { color: #4ADE80; flex-shrink: 0; }

    /* Hero Visual */
    .hrb-hero__visual { position: relative; }
    .hrb-hero__illustration {
      position: relative; display: block; width: 100%;
    }
    .hrb-hero-illustration {
      width: 100%; height: auto; max-width: 580px; display: block;
      animation: hrb-dash-pulse 6s ease-in-out infinite;
    }
    @keyframes hrb-dash-pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.004); }
    }
    /* Floating cards on visual */
    .hrb-hero__float-card {
      position: absolute; background: white; border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
      padding: 10px 14px; font-size: 12px; font-weight: 600;
      display: flex; align-items: center; gap: 8px;
      color: #1E293B; white-space: nowrap; z-index: 10;
    }
    /* Card A â€” top-right, clears the dashboard corner */
    .hrb-hero__float-card--a {
      top: 5%; right: -14px; transform: rotate(3deg);
      animation: hrb-float-a 4s ease-in-out infinite;
    }
    @keyframes hrb-float-a {
      0%, 100% { transform: translateY(0) rotate(3deg); }
      50% { transform: translateY(-12px) rotate(3deg); }
    }
    /* Card B â€” left-middle, hangs off left edge */
    .hrb-hero__float-card--b {
      top: 42%; left: -20px; transform: rotate(-2deg);
      animation: hrb-float-b 5s ease-in-out infinite; animation-delay: -1.5s;
    }
    @keyframes hrb-float-b {
      0%, 100% { transform: translateY(0) rotate(-2deg); }
      50% { transform: translateY(-10px) rotate(-2deg); }
    }
    /* Card C â€” bottom-right */
    .hrb-hero__float-card--c {
      bottom: 18%; right: -14px; transform: rotate(2deg);
      animation: hrb-float-c 4.5s ease-in-out infinite; animation-delay: -2s;
    }
    @keyframes hrb-float-c {
      0%, 100% { transform: translateY(0) rotate(2deg); }
      50% { transform: translateY(-10px) rotate(2deg); }
    }
    /* Card D â€” removed from HTML, hidden via CSS as safety */
    .hrb-hero__float-card--d { display: none !important; }
    /* Card E â€” bottom-left */
    .hrb-hero__float-card--e {
      bottom: 5%; left: -14px; transform: rotate(-1.5deg);
      animation: hrb-float-e 6s ease-in-out infinite; animation-delay: -3s;
    }
    @keyframes hrb-float-e {
      0%, 100% { transform: translateY(0) rotate(-1.5deg); }
      50% { transform: translateY(-8px) rotate(-1.5deg); }
    }
    .hrb-hero__float-dot {
      width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0;
    }
    .hrb-hero__float-dot--green { background: #16A34A; }
    .hrb-hero__float-dot--orange { background: #F59E0B; }
    .hrb-hero__float-dot--teal { background: #0D9488; }
    .hrb-hero__float-icon { width: 18px; height: 18px; flex-shrink: 0; }
    .hrb-hero__float-card__sub { font-size: 10px; color: #64748B; font-weight: 500; }
    @media (max-width: 768px) {
      /* On mobile: keep A + C only (top-right + bottom-right), hide B + E to avoid overlap */
      .hrb-hero__float-card--b,
      .hrb-hero__float-card--e { display: none; }
      .hrb-hero__float-card { font-size: 11px; padding: 8px 11px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .hrb-hero__float-card, .hrb-hero-illustration { animation: none !important; }
    }

    /* ============================================================
       SOCIAL PROOF TICKER
    ============================================================ */
    .hrb-ticker {
      background: var(--primary-dark);
      color: white; padding: 10px 0; overflow: hidden;
    }
    .hrb-ticker__track { overflow: hidden; }
    .hrb-ticker__items {
      display: inline-flex; white-space: nowrap;
      animation: hrb-ticker-scroll 40s linear infinite;
    }
    .hrb-ticker__item {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 0 40px; font-size: 13px; font-weight: 500;
      border-right: 1px solid rgba(255,255,255,0.15);
    }
    .hrb-ticker__dot {
      width: 7px; height: 7px; background: var(--accent);
      border-radius: 50%; flex-shrink: 0;
      animation: hrb-pulse-dot 1.8s ease-in-out infinite;
    }
    @keyframes hrb-ticker-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @keyframes hrb-pulse-dot {
      0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
    }

    /* ============================================================
       TRUST BAR
    ============================================================ */
    .hrb-trust-bar {
      padding: 48px 0;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
    }
    .hrb-trust-bar__heading {
      text-align: center; font-size: 40px; font-weight: 700;
      color: var(--dark); margin-bottom: 40px; letter-spacing: -0.01em;
      line-height: 1.3;
    }
    @media (max-width: 767px) { .hrb-trust-bar__heading { font-size: 28px; } }
    .hrb-trust-bar__marquee {
      overflow: hidden; position: relative;
    }
    .hrb-trust-bar__marquee::before,
    .hrb-trust-bar__marquee::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
    }
    .hrb-trust-bar__marquee::before {
      left: 0; background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
    }
    .hrb-trust-bar__marquee::after {
      right: 0; background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
    }
    .hrb-trust-bar__track {
      display: flex; align-items: center; gap: 56px;
      width: max-content;
      animation: hrb-marquee 30s linear infinite;
    }
    .hrb-trust-bar__track:hover { animation-play-state: paused; }
    @keyframes hrb-marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .hrb-trust-bar__logo-item {
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .hrb-trust-bar__logo-item img {
      max-height: 52px; max-width: 140px; width: auto; height: auto; object-fit: contain;
    }
    .hrb-trust-bar__stat {
      text-align: center; margin-top: 32px;
      font-size: 15px; font-weight: 600; color: var(--text-muted);
    }
    .hrb-trust-bar__stat strong { color: var(--primary); }

    /* ============================================================
       PROBLEM-AGITATION SECTION
    ============================================================ */
    .hrb-problems {
      padding: var(--section-py) 0;
      background: var(--bg-alt);
    }
    .hrb-problems__header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
    .hrb-problems__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }
    @media (min-width: 640px) { .hrb-problems__grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .hrb-problems__grid { grid-template-columns: repeat(3, 1fr); } }
    .hrb-problem-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      position: relative; overflow: hidden;
    }
    .hrb-problem-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--primary));
      opacity: 0; transition: opacity 0.25s;
    }
    .hrb-problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
    .hrb-problem-card:hover::before { opacity: 1; }
    .hrb-problem-card__icon {
      width: 56px; height: 56px; border-radius: var(--radius-md);
      background: var(--accent-light); display: flex; align-items: center;
      justify-content: center; margin-bottom: 20px;
    }
    .hrb-problem-card__title {
      font-family: var(--font-display); font-weight: 700;
      font-size: 18px; color: var(--dark); margin-bottom: 12px; line-height: 1.3;
    }
    .hrb-problem-card__desc {
      font-size: 15px; color: var(--text-muted); line-height: 1.65;
    }

    /* ============================================================
       CTA BANNER #1
    ============================================================ */
    .hrb-cta-banner-1 {
      width: 100vw; position: relative; left: 50%; right: 50%;
      margin-left: -50vw; margin-right: -50vw;
      background: linear-gradient(135deg, #0A7075 0%, #064E52 50%, #0F172A 100%);
      padding: 80px 24px;
      text-align: center; overflow: hidden;
    }
    .hrb-cta-banner-1::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        radial-gradient(circle at 20% 50%, rgba(255,107,43,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(20,170,175,0.10) 0%, transparent 50%);
      pointer-events: none;
    }
    .hrb-cta-banner-1__inner {
      position: relative; z-index: 1;
      max-width: 760px; margin: 0 auto;
    }
    .hrb-cta-banner-1__eyebrow {
      display: inline-block; background: rgba(255,107,43,0.2);
      color: #FFA07A; border: 1px solid rgba(255,107,43,0.3);
      font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
      padding: 5px 14px; border-radius: var(--radius-full); margin-bottom: 20px;
    }
    .hrb-cta-banner-1__headline {
      font-family: var(--font-display); font-weight: 700;
      font-size: clamp(1.9rem, 4vw, 3rem); color: white;
      line-height: 1.15; margin-bottom: 16px;
    }
    .hrb-cta-banner-1__headline span { color: var(--accent); }
    .hrb-cta-banner-1__sub {
      font-size: clamp(1rem, 1.5vw, 1.15rem);
      color: rgba(255,255,255,0.75); margin-bottom: 36px;
    }
    .hrb-cta-banner-1__btn-wrap { display: flex; justify-content: center; margin-bottom: 16px; }
    .hrb-cta-banner-1__btn {
      background: var(--accent); color: white;
      border: none; border-radius: var(--radius-md);
      font-family: var(--font-display); font-weight: 700;
      font-size: 18px; padding: 18px 48px;
      min-width: 240px; cursor: pointer;
      text-decoration: none; display: inline-block;
      box-shadow: 0 8px 32px rgba(255,107,43,0.5);
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .hrb-cta-banner-1__btn:hover {
      background: var(--accent-dark); transform: translateY(-3px);
      box-shadow: 0 14px 44px rgba(255,107,43,0.6);
      color: white;
    }
    .hrb-cta-banner-1__trust {
      display: flex; justify-content: center; flex-wrap: wrap; gap: 20px;
    }
    .hrb-cta-banner-1__trust-item {
      font-size: 13px; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 6px;
    }

    /* ============================================================
       SCROLL ANIMATION UTILITY
    ============================================================ */
    .hrb-reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .hrb-reveal.hrb-visible { opacity: 1; transform: none; }
    .hrb-reveal-delay-1 { transition-delay: 0.1s; }
    .hrb-reveal-delay-2 { transition-delay: 0.2s; }
    .hrb-reveal-delay-3 { transition-delay: 0.3s; }

    /* ============================================================
       MISC UTILITIES
    ============================================================ */
    .hrb-text-center { text-align: center; }
    .hrb-sr-only {
      position: absolute; width: 1px; height: 1px;
      padding: 0; margin: -1px; overflow: hidden;
      clip: rect(0,0,0,0); border: 0;
    }

    /* ============================================================
       MOBILE SECTION PADDING OVERRIDE
    ============================================================ */
    @media (max-width: 767px) {
      .hrb-problems, .hrb-products, .hrb-bangalore, .hrb-app,
      .hrb-certs, .hrb-testimonials, .hrb-stats, .hrb-integrations,
      .hrb-blog, .hrb-final-cta { padding: 48px 0; }
    }

    /* ============================================================
       7. PRODUCT OVERVIEW â€” TABBED
    ============================================================ */
    .hrb-products { padding: var(--section-py) 0; background: var(--bg); }
    .hrb-products__header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
    .hrb-tabs { display: flex; flex-direction: column; gap: 0; }
    .hrb-tabs__nav {
      display: flex; flex-wrap: wrap; gap: 8px;
      justify-content: center; margin-bottom: 48px;
    }
    .hrb-tabs__btn {
      display: flex; align-items: center; gap: 8px;
      padding: 10px 20px; border-radius: var(--radius-full);
      font-family: var(--font-display); font-size: 14px; font-weight: 600;
      color: var(--text-muted); background: var(--bg-alt);
      border: 1.5px solid var(--border);
      cursor: pointer; transition: all 0.2s ease; white-space: nowrap;
    }
    .hrb-tabs__btn:hover { color: var(--primary); border-color: var(--primary-light); background: var(--primary-xlight); }
    .hrb-tabs__btn.hrb-tabs__btn--active {
      background: var(--primary); color: white; border-color: var(--primary);
      box-shadow: var(--shadow-primary);
    }
    .hrb-tabs__btn-icon { font-size: 16px; }
    .hrb-tabs__panels { position: relative; }
    .hrb-tabs__panel { display: none; animation: hrb-tab-in 0.3s ease; }
    .hrb-tabs__panel.hrb-tabs__panel--active { display: block; }
    @keyframes hrb-tab-in {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: none; }
    }
    .hrb-tab-content {
      display: grid; grid-template-columns: 1fr;
      gap: 48px; align-items: center;
    }
    @media (min-width: 1024px) { .hrb-tab-content { grid-template-columns: 1fr 1fr; gap: 80px; } }
    .hrb-tab-content__eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
      color: var(--accent); margin-bottom: 12px;
    }
    .hrb-tab-content__heading {
      font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 1.875rem);
      font-weight: 700; color: var(--dark); margin-bottom: 16px; line-height: 1.2;
    }
    .hrb-tab-content__desc {
      font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px;
    }
    .hrb-tab-content__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
    .hrb-tab-content__feature {
      display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text);
    }
    .hrb-tab-content__feature-check {
      width: 20px; height: 20px; border-radius: 50%;
      background: var(--primary-xlight); display: flex; align-items: center;
      justify-content: center; flex-shrink: 0; margin-top: 2px;
    }
    .hrb-tab-content__feature-check svg { color: var(--primary); }
    .hrb-tab-content__visual {
      background: linear-gradient(135deg, var(--bg-teal) 0%, var(--primary-xlight) 100%);
      border: 2px dashed var(--border-dark); border-radius: var(--radius-xl);
      min-height: 340px; display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 12px;
    }
    .hrb-tab-content__visual-label { font-size: 13px; color: var(--text-muted); text-align: center; padding: 0 20px; }

    /* ============================================================
       8. BANGALORE VALUE PROP
    ============================================================ */
    .hrb-bangalore { padding: var(--section-py) 0; background: var(--bg-alt); }
    .hrb-bangalore__header { max-width: 680px; margin: 0 auto 56px; text-align: center; }
    .hrb-bangalore__grid {
      display: grid; grid-template-columns: 1fr; gap: 20px;
    }
    @media (min-width: 640px)  { .hrb-bangalore__grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .hrb-bangalore__grid { grid-template-columns: repeat(3, 1fr); } }
    .hrb-blr-card {
      background: white; border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 28px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .hrb-blr-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .hrb-blr-card__icon {
      width: 48px; height: 48px; border-radius: var(--radius-md);
      background: var(--primary-xlight); display: flex; align-items: center;
      justify-content: center; margin-bottom: 16px;
    }
    .hrb-blr-card__title {
      font-family: var(--font-display); font-size: 16px; font-weight: 700;
      color: var(--dark); margin-bottom: 8px;
    }
    .hrb-blr-card__desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

    /* ============================================================
       9. CTA BANNER #2
    ============================================================ */
    .hrb-cta-banner-2 {
      width: 100vw; position: relative; left: 50%; right: 50%;
      margin-left: -50vw; margin-right: -50vw;
      background: #0F172A; padding: 80px 24px; text-align: center; overflow: hidden;
    }
    .hrb-cta-banner-2::before {
      content: ''; position: absolute; inset: 0;
      background-image:
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.03) 39px, rgba(255,255,255,0.03) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.03) 39px, rgba(255,255,255,0.03) 40px);
      pointer-events: none;
    }
    .hrb-cta-banner-2::after {
      content: ''; position: absolute; bottom: -40%; left: 50%; transform: translateX(-50%);
      width: 600px; height: 400px;
      background: radial-gradient(ellipse, rgba(10,112,117,0.25) 0%, transparent 70%);
      pointer-events: none;
    }
    .hrb-cta-banner-2__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
    .hrb-cta-banner-2__eyebrow {
      display: inline-block; background: rgba(10,112,117,0.2);
      color: var(--primary-light); border: 1px solid rgba(10,112,117,0.4);
      font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
      padding: 5px 14px; border-radius: var(--radius-full); margin-bottom: 20px;
    }
    .hrb-cta-banner-2__headline {
      font-family: var(--font-display); font-weight: 700;
      font-size: clamp(1.8rem, 4vw, 2.8rem); color: white;
      line-height: 1.2; margin-bottom: 16px;
    }
    .hrb-cta-banner-2__sub {
      font-size: clamp(1rem, 1.5vw, 1.1rem); color: rgba(255,255,255,0.65); margin-bottom: 36px;
    }
    .hrb-cta-banner-2__btn {
      display: inline-block; background: white; color: var(--primary);
      border: none; border-radius: var(--radius-md);
      font-family: var(--font-display); font-weight: 700; font-size: 17px;
      padding: 17px 44px; min-width: 240px; min-height: 56px; cursor: pointer;
      text-decoration: none; box-shadow: 0 8px 32px rgba(0,0,0,0.3);
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .hrb-cta-banner-2__btn:hover {
      background: var(--bg-teal); transform: translateY(-3px);
      box-shadow: 0 14px 48px rgba(0,0,0,0.35); color: var(--primary);
    }
    .hrb-cta-banner-2__note { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.45); }

    /* ============================================================
       10. MOBILE APP SECTION
    ============================================================ */
    .hrb-app { padding: var(--section-py) 0; background: var(--bg); overflow: hidden; }
    .hrb-app__inner { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; }
    @media (min-width: 1024px) { .hrb-app__inner { grid-template-columns: 1fr 1fr; gap: 80px; } }
    .hrb-app__features { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 36px; }
    .hrb-app__feature { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text); }
    .hrb-app__feature-icon {
      width: 36px; height: 36px; border-radius: var(--radius-sm);
      background: var(--primary-xlight); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .hrb-app__feature-icon svg { color: var(--primary); }
    .hrb-app__feature strong { display: block; font-weight: 600; margin-bottom: 2px; }
    .hrb-app__feature span   { font-size: 13px; color: var(--text-muted); }
    .hrb-app__badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
    .hrb-app__badge {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--dark); color: white; border-radius: var(--radius-md);
      padding: 10px 18px; text-decoration: none; transition: background 0.2s, transform 0.2s;
    }
    .hrb-app__badge:hover { background: var(--dark-2); transform: translateY(-2px); color: white; }
    .hrb-app__badge-text { display: flex; flex-direction: column; line-height: 1.2; }
    .hrb-app__badge-text small { font-size: 10px; opacity: 0.7; }
    .hrb-app__badge-text strong { font-size: 15px; }
    .hrb-app__stats { font-size: 13px; color: var(--text-muted); }
    .hrb-app__stats strong { color: var(--text); }
    .hrb-app__phone-wrap {
      display: flex; justify-content: center; align-items: center; position: relative; padding: 40px 0;
    }
    .hrb-app__phone {
      width: 260px; background: var(--dark); border-radius: 40px;
      border: 10px solid #1E293B;
      box-shadow: 0 32px 80px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.05);
      overflow: hidden; position: relative; z-index: 1;
    }
    .hrb-app__phone-notch {
      height: 28px; background: var(--dark);
      display: flex; align-items: center; justify-content: center;
    }
    .hrb-app__phone-notch-pill { width: 80px; height: 10px; background: #0A0A14; border-radius: 10px; }
    .hrb-app__phone-screen {
      background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 40%, var(--dark) 100%);
      min-height: 460px; display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 12px; padding: 20px;
    }
    .hrb-app__phone-screen-label { font-size: 12px; color: rgba(255,255,255,0.4); text-align: center; }
    .hrb-app__phone-home { height: 4px; background: #333; width: 80px; border-radius: 4px; margin: 12px auto 0; }
    .hrb-app__notif {
      position: absolute; background: white; border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg); padding: 10px 14px; font-size: 12px; font-weight: 600;
      display: flex; align-items: center; gap: 8px; z-index: 2; white-space: nowrap;
    }
    .hrb-app__notif--1 { top: 30px; right: -10px; animation: hrb-float-1 4s ease-in-out infinite; }
    .hrb-app__notif--2 { bottom: 80px; left: -20px; animation: hrb-float-2 5s ease-in-out infinite; }
    .hrb-app__notif--3 { top: 45%; right: -24px; animation: hrb-float-3 4.5s ease-in-out infinite; }
    .hrb-app__notif-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
    .hrb-app__notif-dot--green  { background: #10B981; }
    .hrb-app__notif-dot--orange { background: var(--accent); }
    .hrb-app__notif-dot--teal   { background: var(--primary); }

    /* ============================================================
       11. CERTIFICATIONS & COMPLIANCE
    ============================================================ */
    .hrb-certs { padding: var(--section-py) 0; background: var(--bg-alt); }
    .hrb-certs__header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
    .hrb-certs__badges {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-bottom: 64px;
    }
    @media (min-width: 640px)  { .hrb-certs__badges { grid-template-columns: repeat(3, 1fr); } }
    @media (min-width: 1024px) { .hrb-certs__badges { grid-template-columns: repeat(5, 1fr); } }
    .hrb-cert-badge {
      display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center;
      background: white; border: 1.5px solid var(--border); border-radius: var(--radius-lg);
      padding: 24px 20px; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }
    .hrb-cert-badge:hover { border-color: var(--success); box-shadow: 0 4px 20px rgba(16,185,129,0.12); transform: translateY(-3px); }
    .hrb-cert-badge__icon {
      width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .hrb-cert-badge__body { display: flex; flex-direction: column; gap: 4px; }
    .hrb-cert-badge__name { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--dark); line-height: 1.3; }
    .hrb-cert-badge__desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
    .hrb-certs__divider { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; }
    .hrb-certs__divider-line { flex: 1; height: 1px; background: var(--border); }
    .hrb-certs__divider-text {
      font-family: var(--font-display); font-size: 13px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); white-space: nowrap;
    }
    .hrb-compliance-grid {
      display: grid; grid-template-columns: 1fr; gap: 16px;
    }
    @media (min-width: 640px)  { .hrb-compliance-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .hrb-compliance-grid { grid-template-columns: repeat(3, 1fr); } }
    .hrb-compliance-card {
      background: white; border: 1px solid var(--border); border-left: 4px solid var(--success);
      border-radius: var(--radius-lg); padding: 24px;
      transition: box-shadow 0.25s ease, transform 0.25s ease;
    }
    .hrb-compliance-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
    .hrb-compliance-card__icon { font-size: 24px; margin-bottom: 12px; display: block; }
    .hrb-compliance-card__title {
      font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px;
    }
    .hrb-compliance-card__desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
    .hrb-compliance-card__tag {
      display: inline-block; margin-top: 12px;
      background: rgba(16,185,129,0.1); color: var(--success);
      font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
      padding: 3px 10px; border-radius: var(--radius-full);
    }

    /* ============================================================
       12. CTA BANNER #3 â€” Compliance
    ============================================================ */
    .hrb-cta-banner-3 {
      width: 100vw; position: relative; left: 50%; right: 50%;
      margin-left: -50vw; margin-right: -50vw;
      background: linear-gradient(135deg, #064E52 0%, #0A7075 50%, #0D8A6E 100%);
      padding: 80px 24px; text-align: center; overflow: hidden;
    }
    .hrb-cta-banner-3::before {
      content: ''; position: absolute; inset: 0;
      background-image: radial-gradient(circle at 10% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
                        radial-gradient(circle at 90% 50%, rgba(255,255,255,0.04) 0%, transparent 50%);
      pointer-events: none;
    }
    .hrb-cta-banner-3__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
    .hrb-cta-banner-3__shield {
      display: inline-flex; align-items: center; justify-content: center;
      width: 64px; height: 64px; border-radius: 50%;
      background: rgba(255,255,255,0.15); margin-bottom: 20px;
    }
    .hrb-cta-banner-3__headline {
      font-family: var(--font-display); font-weight: 700;
      font-size: clamp(1.8rem, 4vw, 2.8rem); color: white; line-height: 1.15; margin-bottom: 16px;
    }
    .hrb-cta-banner-3__sub {
      font-size: clamp(1rem, 1.5vw, 1.15rem); color: rgba(255,255,255,0.8);
      max-width: 600px; margin: 0 auto 36px; line-height: 1.7;
    }
    .hrb-cta-banner-3__btn {
      display: inline-block; background: white; color: var(--primary-dark);
      border: none; border-radius: var(--radius-md);
      font-family: var(--font-display); font-weight: 700; font-size: 17px;
      padding: 18px 44px; min-width: 260px; min-height: 56px; cursor: pointer;
      text-decoration: none; box-shadow: 0 8px 32px rgba(0,0,0,0.2);
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .hrb-cta-banner-3__btn:hover {
      background: var(--bg-teal); transform: translateY(-3px);
      box-shadow: 0 14px 44px rgba(0,0,0,0.25); color: var(--primary-dark);
    }
    .hrb-cta-banner-3__trust { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; margin-top: 24px; }
    .hrb-cta-banner-3__trust-item {
      display: flex; align-items: center; gap: 8px;
      font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 500;
    }
    .hrb-cta-banner-3__trust-item svg { color: #6EE7B7; flex-shrink: 0; }

    /* ============================================================
       13. TESTIMONIALS
    ============================================================ */
    .hrb-testimonials { padding: var(--section-py) 0; background: var(--bg); }
    .hrb-testimonials__header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
    .hrb-testimonials__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
    @media (min-width: 768px)  { .hrb-testimonials__grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .hrb-testimonials__grid { grid-template-columns: repeat(3, 1fr); } }
    .hrb-tcard {
      background: white; border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 32px;
      display: flex; flex-direction: column; gap: 20px;
      transition: transform 0.25s ease, box-shadow 0.25s ease; position: relative;
    }
    .hrb-tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .hrb-tcard__quote-mark {
      position: absolute; top: 24px; right: 28px;
      font-size: 72px; line-height: 1; color: var(--primary-xlight);
      font-family: Georgia, serif; pointer-events: none;
    }
    .hrb-tcard__stars { display: flex; gap: 3px; color: #FBBF24; font-size: 16px; }
    .hrb-tcard__body { font-size: 15px; color: var(--text); line-height: 1.7; font-style: italic; flex: 1; position: relative; z-index: 1; }
    .hrb-tcard__author { display: flex; align-items: center; gap: 14px; }
    .hrb-tcard__avatar {
      width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg, var(--primary-light), var(--primary));
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-size: 18px; font-weight: 700; color: white;
    }
    .hrb-tcard__name { font-weight: 700; font-size: 15px; color: var(--dark); }
    .hrb-tcard__role { font-size: 13px; color: var(--text-muted); }
    .hrb-tcard__company { font-size: 12px; color: var(--primary); font-weight: 600; margin-top: 2px; }

    /* ============================================================
       14. STATS SECTION
    ============================================================ */
    .hrb-stats {
      padding: var(--section-py) 0;
      background: linear-gradient(135deg, #0A7075 0%, #064E52 100%);
      position: relative; overflow: hidden;
    }
    .hrb-stats::before {
      content: ''; position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 48px 48px; pointer-events: none;
    }
    .hrb-stats__heading {
      color: #fff; text-align: center;
      font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700;
      margin-bottom: 40px; position: relative; z-index: 1;
    }
    .hrb-stats__grid {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 40px 24px; text-align: center;
    }
    @media (min-width: 768px) { .hrb-stats__grid { grid-template-columns: repeat(4, 1fr); } }
    .hrb-stat__number {
      font-family: var(--font-display); font-weight: 700;
      font-size: clamp(2.2rem, 5vw, 3.5rem); color: white; line-height: 1; margin-bottom: 8px;
    }
    .hrb-stat__number span { color: var(--accent); }
    .hrb-stat__label { font-size: 15px; color: rgba(255,255,255,0.75); font-weight: 500; line-height: 1.4; }

    /* ============================================================
       15. INTEGRATIONS
    ============================================================ */
    .hrb-integrations { padding: 80px 0; background: white; }
    .hrb-integrations__header { text-align: center; max-width: 600px; margin: 0 auto 40px; }
    .hrb-filter-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
    .hrb-filter-tab {
      padding: 10px 20px; border-radius: 20px; font-size: 14px; font-weight: 600;
      border: 1px solid #E2E8F0; background: white; color: #475569;
      cursor: pointer; transition: all 0.2s;
    }
    .hrb-filter-tab.active { background: #0D9488; color: white; border-color: #0D9488; }
    .hrb-filter-tab:hover:not(.active) { border-color: #0D9488; color: #0D9488; }
    .hrb-integrations__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    @media (min-width: 640px)  { .hrb-integrations__grid { grid-template-columns: repeat(3, 1fr); } }
    @media (min-width: 1024px) { .hrb-integrations__grid { grid-template-columns: repeat(5, 1fr); } }
    .hrb-integration-card {
      background: white; border: 1px solid #E2E8F0; border-radius: 12px;
      padding: 24px 16px; text-align: center; cursor: default;
      transition: all 0.3s ease; display: flex; flex-direction: column;
      align-items: center; gap: 10px;
    }
    .hrb-integration-card:hover {
      border-color: #0D9488; box-shadow: 0 4px 16px rgba(13,148,136,0.1); transform: translateY(-2px);
    }
    .hrb-integration-card.hrb-hidden { display: none; }
    .hrb-integration-name { font-size: 13px; font-weight: 600; color: #334155; }
    .hrb-integrations__cta { text-align: center; margin-top: 36px; }
    .hrb-integrations__cta p { font-size: 15px; color: var(--text-muted); }
    .hrb-integrations__cta a { color: var(--primary); font-weight: 600; }

    /* ============================================================
       16. BLOG TEASER
    ============================================================ */
    .hrb-blog { padding: var(--section-py) 0; background: var(--bg); }
    .hrb-blog__header {
      display: flex; justify-content: space-between; align-items: flex-end;
      flex-wrap: wrap; gap: 16px; margin-bottom: 48px;
    }
    .hrb-blog__header-text { max-width: 540px; }
    .hrb-blog__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
    @media (min-width: 768px)  { .hrb-blog__grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .hrb-blog__grid { grid-template-columns: repeat(3, 1fr); } }
    .hrb-blog-card {
      border: 1px solid var(--border); border-radius: var(--radius-lg);
      overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease;
      background: white; display: flex; flex-direction: column;
    }
    .hrb-blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .hrb-blog-card__thumb {
      height: 200px;
      background: linear-gradient(135deg, var(--bg-teal), var(--primary-xlight));
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }
    .hrb-blog-card__thumb-label { font-size: 13px; color: var(--text-muted); text-align: center; padding: 0 20px; }
    .hrb-blog-card__category {
      position: absolute; top: 14px; left: 14px;
      background: var(--primary); color: white;
      font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
      padding: 4px 10px; border-radius: var(--radius-full);
    }
    .hrb-blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
    .hrb-blog-card__meta {
      font-size: 12px; color: var(--text-muted); margin-bottom: 10px;
      display: flex; gap: 12px; align-items: center;
    }
    .hrb-blog-card__title {
      font-family: var(--font-display); font-size: 17px; font-weight: 700;
      color: var(--dark); margin-bottom: 10px; line-height: 1.3; transition: color 0.15s;
    }
    .hrb-blog-card:hover .hrb-blog-card__title { color: var(--primary); }
    .hrb-blog-card__excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.65; flex: 1; }
    .hrb-blog-card__link {
      margin-top: 18px; font-size: 14px; font-weight: 700; color: var(--primary);
      display: inline-flex; align-items: center; gap: 4px; transition: gap 0.15s;
    }
    .hrb-blog-card:hover .hrb-blog-card__link { gap: 8px; }

    /* ============================================================
       17. CTA BANNER #4 â€” Saffron/Coral
    ============================================================ */
    .hrb-cta-banner-4 {
      width: 100vw; position: relative; left: 50%; right: 50%;
      margin-left: -50vw; margin-right: -50vw;
      background: linear-gradient(135deg, #FF6B2B 0%, #E55A1C 40%, #C44816 100%);
      padding: 80px 24px; text-align: center; overflow: hidden;
    }
    .hrb-cta-banner-4::before {
      content: ''; position: absolute; inset: 0;
      background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                        radial-gradient(circle at 20% 80%, rgba(0,0,0,0.1) 0%, transparent 50%);
      pointer-events: none;
    }
    .hrb-cta-banner-4__inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
    .hrb-cta-banner-4__headline {
      font-family: var(--font-display); font-weight: 700;
      font-size: clamp(1.8rem, 4vw, 3rem); color: white; line-height: 1.15; margin-bottom: 12px;
    }
    .hrb-cta-banner-4__sub {
      font-size: clamp(1rem, 1.5vw, 1.15rem); color: rgba(255,255,255,0.88); margin-bottom: 36px;
    }
    .hrb-cta-banner-4__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 20px; }
    .hrb-cta-banner-4__btn-primary {
      display: inline-block; background: white; color: var(--accent-dark);
      border: 2px solid white; border-radius: var(--radius-md);
      font-family: var(--font-display); font-weight: 700; font-size: 17px;
      padding: 17px 40px; min-width: 200px; min-height: 56px; text-decoration: none;
      box-shadow: 0 8px 32px rgba(0,0,0,0.15);
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .hrb-cta-banner-4__btn-primary:hover {
      background: var(--bg-teal); transform: translateY(-3px);
      box-shadow: 0 14px 40px rgba(0,0,0,0.2); color: var(--primary-dark);
    }
    .hrb-cta-banner-4__btn-outline {
      display: inline-block; background: transparent; color: white;
      border: 2px solid rgba(255,255,255,0.7); border-radius: var(--radius-md);
      font-family: var(--font-display); font-weight: 700; font-size: 17px;
      padding: 17px 40px; min-width: 200px; min-height: 56px; text-decoration: none;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
    }
    .hrb-cta-banner-4__btn-outline:hover {
      background: rgba(255,255,255,0.15); border-color: white;
      transform: translateY(-3px); color: white;
    }
    .hrb-cta-banner-4__microtrust {
      display: flex; justify-content: center; flex-wrap: wrap; gap: 20px;
      font-size: 13px; color: rgba(255,255,255,0.8);
    }
    .hrb-cta-banner-4__microtrust span { display: flex; align-items: center; gap: 6px; }

    /* ============================================================
       18. FINAL CTA + DEMO FORM
    ============================================================ */
    .hrb-final-cta {
      padding: var(--section-py) 0;
      background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
      position: relative; overflow: hidden;
    }
    .hrb-final-cta::before {
      content: ''; position: absolute; top: -50%; right: -20%;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(10,112,117,0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .hrb-final-cta__inner {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr; gap: 56px; align-items: start;
    }
    @media (min-width: 1024px) { .hrb-final-cta__inner { grid-template-columns: 1fr 1fr; gap: 80px; } }
    .hrb-final-cta__copy { color: white; }
    .hrb-final-cta__copy .hrb-section-label {
      background: rgba(255,107,43,0.2); color: #FFA07A;
      border: 1px solid rgba(255,107,43,0.3);
    }
    .hrb-final-cta__copy .hrb-section-label::before { background: var(--accent); }
    .hrb-final-cta__heading {
      font-family: var(--font-display); font-weight: 700;
      font-size: clamp(1.75rem, 3vw, 2.5rem); color: white;
      line-height: 1.2; margin: 16px 0;
    }
    .hrb-final-cta__desc { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
    .hrb-final-cta__trust-list { display: flex; flex-direction: column; gap: 12px; }
    .hrb-final-cta__trust-item {
      display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.8);
    }
    .hrb-final-cta__trust-item svg { color: #6EE7B7; flex-shrink: 0; }
    .hrb-demo-form {
      background: white; border-radius: var(--radius-xl); padding: 40px 36px; box-shadow: var(--shadow-lg);
    }
    @media (max-width: 479px) { .hrb-demo-form { padding: 28px 20px; } }
    .hrb-demo-form__heading { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
    .hrb-demo-form__sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
    .hrb-demo-form__row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
    @media (min-width: 480px) { .hrb-demo-form__row { grid-template-columns: 1fr 1fr; } }
    .hrb-demo-form__group { display: flex; flex-direction: column; gap: 6px; }
    .hrb-demo-form__group--full { grid-column: 1 / -1; }
    .hrb-demo-form__label { font-size: 13px; font-weight: 600; color: var(--text); }
    .hrb-demo-form__input,
    .hrb-demo-form__select {
      padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
      font-family: var(--font-body); font-size: 15px; color: var(--text); background: white;
      transition: border-color 0.2s, box-shadow 0.2s; outline: none; width: 100%;
    }
    .hrb-demo-form__input:focus,
    .hrb-demo-form__select:focus {
      border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-xlight);
    }
    .hrb-demo-form__input.hrb-input-error { border-color: #EF4444; }
    .hrb-demo-form__error { font-size: 12px; color: #EF4444; display: none; }
    .hrb-demo-form__error.hrb-visible { display: block; }
    .hrb-demo-form__submit { width: 100%; margin-top: 8px; padding: 16px; font-size: 17px; font-weight: 700; }
    .hrb-demo-form__privacy { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 12px; }
    .hrb-demo-form__privacy a { color: var(--primary); }
    .hrb-demo-form__success { display: none; text-align: center; padding: 32px 0; }
    .hrb-demo-form__success.hrb-visible { display: block; }
    .hrb-demo-form__success-icon { font-size: 48px; margin-bottom: 12px; }
    .hrb-demo-form__success h3 { font-size: 22px; color: var(--dark); margin-bottom: 8px; }
    .hrb-demo-form__success p { font-size: 15px; color: var(--text-muted); }

    /* ============================================================
       HOME FINAL CTA + GRAVITY FORM (match Attendance page)
    ============================================================ */
    #hrb-demo-form .hrb-final-cta__inner { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
    @media (max-width: 767px) { #hrb-demo-form .hrb-final-cta__inner { gap: 28px; } }
    @media (min-width: 768px) and (max-width: 1023px) { #hrb-demo-form .hrb-final-cta__inner { grid-template-columns: 0.82fr 1.18fr; gap: 24px; } }
    @media (min-width: 1024px) { #hrb-demo-form .hrb-final-cta__inner { grid-template-columns: 0.8fr 1.2fr; gap: 32px; } }

    #hrb-demo-form .hrb-final-cta__copy .hrb-section-label {
      background: rgba(255,255,255,0.12);
      color: white;
      border: 1px solid rgba(255,255,255,0.2);
    }
    #hrb-demo-form .hrb-final-cta__copy .hrb-section-label::before { background: #2DD4BF; }

    #hrb-demo-form .hrb-demo-form {
      background: white;
      border-radius: var(--radius-xl);
      padding: 40px 36px;
      box-shadow: var(--shadow-lg);
      display: block;
    }
    #hrb-demo-form .hrb-demo-form__sub { margin-bottom: 24px; }
    @media (max-width: 767px) { #hrb-demo-form .hrb-demo-form { padding: 24px 16px; } }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_wrapper,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_wrapper form {
      margin: 0 !important;
      padding: 0 !important;
      max-width: none !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_heading,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_description,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_required_legend {
      display: none !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_fields {
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) !important;
      gap: 18px !important;
      row-gap: 18px !important;
      margin: 0 !important;
    }

    @media (min-width: 768px) {
      #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_fields {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
      }
      #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf #field_1_6,
      #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf #field_1_7,
      #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf #field_1_9,
      #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf #field_1_25 {
        grid-column: 1 / -1 !important;
      }
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield .ginput_container {
      margin: 0 !important;
      padding: 0 !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield.gform_hidden,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield--type-hidden,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield_visibility_hidden,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield--visibility-hidden {
      display: none !important;
      margin: 0 !important;
      padding: 0 !important;
      min-height: 0 !important;
      height: 0 !important;
      border: 0 !important;
      overflow: hidden !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield--type-honeypot,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_validation_container,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf #field_1_26,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield--type-honeypot * {
      position: absolute !important;
      left: -99999px !important;
      top: auto !important;
      width: 1px !important;
      height: 1px !important;
      overflow: hidden !important;
      opacity: 0 !important;
      visibility: hidden !important;
      pointer-events: none !important;
      margin: 0 !important;
      padding: 0 !important;
      border: 0 !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield_label,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform-field-label {
      margin: 0 0 10px !important;
      color: #0f172a !important;
      font-size: 13px !important;
      font-weight: 600 !important;
      line-height: 1.35 !important;
      display: block !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield_required,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield_required_asterisk {
      color: #ef4444 !important;
      margin-left: 2px !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield select,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield textarea,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .ginput_container input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .ginput_container select,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .ginput_container textarea {
      width: 100% !important;
      min-height: 52px !important;
      padding: 0 16px !important;
      border: 1.5px solid #d7e1ec !important;
      border-radius: 12px !important;
      background: #ffffff !important;
      color: #24344d !important;
      box-shadow: none !important;
      outline: 0 !important;
      font-family: var(--font-body) !important;
      font-size: 15px !important;
      line-height: 1.45 !important;
      transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
      -webkit-appearance: none !important;
      appearance: none !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield textarea,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .ginput_container textarea {
      min-height: 110px !important;
      height: 110px !important;
      padding: 14px 16px !important;
      resize: vertical !important;
      line-height: 1.6 !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield input::placeholder,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield textarea::placeholder {
      color: #8fa1bb !important;
      opacity: 1 !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield input:focus,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield select:focus,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield textarea:focus {
      border-color: #14b8a6 !important;
      box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.12) !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield select {
      padding-right: 44px !important;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
      background-repeat: no-repeat !important;
      background-position: right 14px center !important;
      background-size: 16px 16px !important;
      cursor: pointer !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield_error input,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield_error select,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield_error textarea {
      border-color: #ef4444 !important;
      background: #ffffff !important;
      box-shadow: none !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .validation_message,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield_validation_message,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield_description.validation_message {
      margin: 8px 0 0 !important;
      padding: 0 !important;
      border: 0 !important;
      border-radius: 0 !important;
      background: transparent !important;
      color: #ef4444 !important;
      font-size: 13px !important;
      line-height: 1.35 !important;
      font-weight: 500 !important;
      box-shadow: none !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_validation_errors,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_submission_error {
      margin: 0 0 16px !important;
      padding: 14px !important;
      border: 1px solid #f4bcbc !important;
      border-radius: 12px !important;
      background: #fff3f3 !important;
      box-shadow: none !important;
      color: #ef4444 !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_validation_errors > h2,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_submission_error {
      margin: 0 !important;
      padding: 0 !important;
      border: 0 !important;
      background: transparent !important;
      color: #ef4444 !important;
      font-size: 14px !important;
      font-weight: 600 !important;
      line-height: 1.45 !important;
      box-shadow: none !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_validation_errors .gform-icon,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_validation_errors ol,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_validation_errors ul {
      display: none !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield--type-captcha .gfield_label,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield--type-recaptcha .gfield_label,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield--type-captcha .gform-field-label,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield--type-recaptcha .gform-field-label {
      display: none !important;
      margin: 0 !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_footer,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_page_footer {
      margin: 8px 0 0 !important;
      padding: 0 !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_footer .gform_button.button,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_page_footer .gform_button.button,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_footer input[type="submit"],
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_page_footer input[type="submit"],
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_footer button[type="submit"],
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_page_footer button[type="submit"] {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      width: 100% !important;
      min-height: 58px !important;
      margin: 0 !important;
      padding: 16px 24px !important;
      border: 0 !important;
      border-radius: 14px !important;
      background: #f59e0b !important;
      color: #0f172a !important;
      box-shadow: 0 8px 24px rgba(245, 158, 11, 0.22) !important;
      font-family: var(--font-display) !important;
      font-size: 17px !important;
      font-weight: 700 !important;
      line-height: 1.2 !important;
      text-transform: none !important;
      cursor: pointer !important;
      transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_footer .gform_button.button:hover,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_page_footer .gform_button.button:hover,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_footer input[type="submit"]:hover,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_page_footer input[type="submit"]:hover,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_footer button[type="submit"]:hover,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_page_footer button[type="submit"]:hover {
      background: #f3a915 !important;
      transform: translateY(-1px) !important;
      box-shadow: 0 12px 28px rgba(245, 158, 11, 0.28) !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_wrapper,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_body,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_fields,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti {
      overflow: visible !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone {
      position: relative !important;
      overflow: visible !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field { z-index: 20 !important; }
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti { width: 100% !important; display: block !important; }
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti input[type="tel"] { padding-left: 68px !important; padding-right: 12px !important; }
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__flag-container { z-index: 30 !important; }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__selected-country {
      height: 100% !important;
      display: inline-flex !important;
      align-items: center !important;
      padding: 0 4px 0 7px !important;
      border: 0 !important;
      border-right: 1px solid #d5dfec !important;
      border-radius: 10px 0 0 10px !important;
      background: #fff !important;
      box-sizing: border-box !important;
      box-shadow: none !important;
      outline: 0 !important;
      -webkit-appearance: none !important;
      appearance: none !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__selected-country-primary {
      display: inline-flex !important;
      align-items: center !important;
      gap: 6px !important;
      padding-right: 0 !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__selected-country-primary .iti__flag,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__country .iti__flag {
      zoom: 1.22 !important;
      transform: translateZ(0) !important;
      transform-origin: left center !important;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
      margin-right: 2px !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__selected-dial-code {
      color: #2d3d5a !important;
      font-size: 0.9rem !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__country-list {
      z-index: 9999 !important;
      top: calc(100% + 6px) !important;
      left: 0 !important;
      width: 100% !important;
      max-width: 100% !important;
      max-height: 240px !important;
      overflow-y: auto !important;
      overflow-x: hidden !important;
      border: 1px solid #d5dfec !important;
      border-radius: 10px !important;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12) !important;
      background: #fff !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__country {
      display: flex !important;
      align-items: center !important;
      gap: 12px !important;
      padding: 9px 10px !important;
      font-size: 0.9rem !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__country.iti__highlight {
      background: #f3f7ff !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__country-container {
      left: 1px !important;
      top: 1px !important;
      bottom: 1px !important;
      width: 58px !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__selected-country {
      min-width: 58px !important;
      gap: 4px !important;
      padding-right: 2px !important;
    }

    @media (max-width: 575px) {
      #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown input[type="tel"] {
        padding-left: 74px !important;
      }
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf #field_1_9 {
      margin-bottom: 0 !important;
      padding-bottom: 0 !important;
      min-height: 0 !important;
    }
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf #field_1_9 .ginput_container {
      margin-bottom: 0 !important;
      padding-bottom: 0 !important;
      min-height: 0 !important;
    }
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf #field_1_9 textarea {
      min-height: 84px !important;
      height: 84px !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf #field_1_25 {
      margin-top: 0 !important;
      margin-bottom: 10px !important;
      padding: 0 !important;
    }
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf #field_1_25 .gfield_label,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf #field_1_25 .gform-field-label {
      display: none !important;
      margin: 0 !important;
    }
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf #field_1_25 .ginput_container,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf #field_1_25 .ginput_recaptcha {
      min-height: 74px !important;
      display: flex !important;
      align-items: flex-start !important;
      justify-content: flex-start !important;
      margin: 0 !important;
    }
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf #field_1_25 .grecaptcha-badge {
      position: static !important;
      inset: auto !important;
      transform: none !important;
      box-shadow: none !important;
      margin: 0 !important;
      max-width: 100% !important;
    }
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf #field_1_25 .grecaptcha-badge iframe {
      width: 256px !important;
      max-width: 100% !important;
      height: 60px !important;
      border-radius: 8px !important;
    }

    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield--type-captcha .validation_message,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gfield--type-recaptcha .validation_message {
      margin-top: 8px !important;
    }
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_footer,
    #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf .gform_page_footer {
      margin-top: 8px !important;
    }
    @media (max-width: 575px) {
      #hrb-demo-form .hrb-demo-form #hrb-contact-form-gf #field_1_25 .grecaptcha-badge {
        transform: scale(0.92) !important;
        transform-origin: left top !important;
      }
    }

    /* ============================================================
       19. FOOTER
    ============================================================ */
    .hrb-footer { background: var(--dark); color: rgba(255,255,255,0.75); }
    .hrb-footer__top { padding: 72px 0 48px; }
    .hrb-footer__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
    @media (min-width: 640px)  { .hrb-footer__grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .hrb-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; } }
    .hrb-footer__logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 16px; }
    .hrb-footer__logo .hrb-logo-main { color: white; }
    .hrb-footer__logo .hrb-logo-sub  { color: var(--primary-light); }
    .hrb-footer__tagline { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 20px; max-width: 260px; }
    .hrb-footer__address {
      display: flex; align-items: flex-start; gap: 8px; font-size: 13px; font-style: normal;
      margin-bottom: 10px; color: rgba(255,255,255,0.6);
    }
    .hrb-footer__address svg { flex-shrink: 0; margin-top: 2px; opacity: 0.7; }
    .hrb-footer__phone, .hrb-footer__email {
      display: flex; align-items: center; gap: 8px; font-size: 13px;
      color: rgba(255,255,255,0.7); text-decoration: none; margin-bottom: 8px; transition: color 0.15s;
    }
    .hrb-footer__phone:hover, .hrb-footer__email:hover { color: white; }
    .hrb-footer__phone svg, .hrb-footer__email svg { opacity: 0.6; flex-shrink: 0; }
    .hrb-footer__social { display: flex; gap: 10px; margin: 20px 0; }
    .hrb-footer__social-link {
      width: 36px; height: 36px; border-radius: var(--radius-sm);
      background: rgba(255,255,255,0.08); display: flex; align-items: center;
      justify-content: center; color: rgba(255,255,255,0.6);
      transition: background 0.2s, color 0.2s; text-decoration: none;
    }
    .hrb-footer__social-link:hover { background: var(--primary); color: white; }
    .hrb-footer__app-badges { display: flex; flex-wrap: wrap; gap: 8px; }
    .hrb-footer__app-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius-sm); padding: 7px 14px;
      color: rgba(255,255,255,0.8); font-size: 13px; text-decoration: none;
      transition: background 0.2s; white-space: nowrap;
    }
    .hrb-footer__app-badge:hover { background: rgba(255,255,255,0.15); color: white; }
    .hrb-footer__app-badge-text { display: flex; flex-direction: column; line-height: 1.2; }
    .hrb-footer__app-badge-text small { font-size: 9px; opacity: 0.7; }
    .hrb-footer__app-badge-text strong { font-size: 13px; }
    .hrb-footer__col-heading {
      font-family: var(--font-display); font-size: 13px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.08em; color: white; margin-bottom: 18px;
    }
    .hrb-footer__links { display: flex; flex-direction: column; gap: 10px; }
    .hrb-footer__links a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.15s; }
    .hrb-footer__links a:hover { color: white; }
    .hrb-footer__certs { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
    .hrb-footer__certs-inner {
      display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: center;
    }
    .hrb-footer__cert-badge { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.55); }
    .hrb-footer__cert-badge svg { opacity: 0.8; flex-shrink: 0; }
    .hrb-footer__compliance-text { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
    .hrb-footer__compliance-text p { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.7; text-align: center; }
    .hrb-footer__compliance-text strong { color: rgba(255,255,255,0.5); }
    .hrb-footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
    .hrb-footer__bottom-inner { display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; }
    @media (min-width: 768px) { .hrb-footer__bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; } }
    .hrb-footer__copyright { font-size: 13px; color: rgba(255,255,255,0.4); }
    .hrb-footer__seo-text { font-size: 12px; color: rgba(255,255,255,0.25); }
    .hrb-footer__seo-text a { color: rgba(255,255,255,0.3); text-decoration: none; }
    .hrb-footer__seo-text a:hover { color: rgba(255,255,255,0.5); }

    /* ============================================================
       STICKY CTA
    ============================================================ */
    @media (max-width: 768px) {
      }
    .hrb-sticky-cta {
      display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
      background: var(--dark); border-top: 1px solid rgba(255,255,255,0.1);
      padding: 10px 16px; box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    }
    .hrb-sticky-cta__inner {
      display: flex; align-items: center; justify-content: space-between;
      gap: 12px; max-width: 480px; margin: 0 auto;
    }
    .hrb-sticky-cta__text { color: white; }
    .hrb-sticky-cta__text strong { display: block; font-size: 14px; }
    .hrb-sticky-cta__text span  { font-size: 11px; color: rgba(255,255,255,0.6); }
    .hrb-sticky-cta__btn {
      background: var(--accent); color: white; padding: 10px 20px;
      border-radius: 8px; text-decoration: none; font-weight: 700;
      font-size: 14px; white-space: nowrap; transition: background 0.2s;
    }
    .hrb-sticky-cta__btn:hover { background: var(--accent-dark); color: white; }
    @media (max-width: 768px) { .hrb-sticky-cta { display: block; } }

    /* Mobile app section chips */
    .hrb-app__phone-wrap {
      display: flex; justify-content: center; align-items: center;
      position: relative; padding: 40px 40px;
    }
    .hrb-app__chip {
      position: absolute;
      display: flex; align-items: center; gap: 8px;
      background: white; color: var(--dark);
      border-radius: 999px; padding: 10px 18px;
      font-size: 13px; font-weight: 600;
      box-shadow: 0 4px 20px rgba(0,0,0,0.13);
      white-space: nowrap; z-index: 2;
    }
    .hrb-app__chip--top { top: 20px; left: 0; }
    .hrb-app__chip--mid { top: 40%; right: -20px; }
    .hrb-app__chip--bot { bottom: 15%; left: -10px; }
    .hrb-app__chip-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }