/* ============================================================
       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%; }
    /* alias used in product pages */
    .hrb-section-badge {
      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-badge::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; }
    .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: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-8px);
      background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg); min-width: 680px; opacity: 0; visibility: hidden;
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s; pointer-events: none; z-index: 200;
    }
    .hrb-nav__item--mega:hover .hrb-mega-menu,
    .hrb-nav__item--mega:focus-within .hrb-mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: all; }
    .hrb-mega-menu__inner { display: grid; grid-template-columns: 1fr 1fr auto; gap: 0; padding: 8px; }
    .hrb-mega-menu__col { padding: 16px; }
    .hrb-mega-menu__col--cta { background: var(--bg-teal); border-radius: var(--radius-md); min-width: 200px; }
    .hrb-mega-menu__heading { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 10px; }
    .hrb-mega-menu__link { display: flex; align-items: flex-start; gap: 10px; 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); }
    .hrb-mega-menu__link small  { color: var(--text-muted); font-size: 12px; }
    .hrb-mega-menu__icon { font-size: 18px; margin-top: 1px; flex-shrink: 0; }
    .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: 12px; }
    .hrb-mega-menu__promo h3 { font-size: 16px; margin-bottom: 8px; color: var(--dark); }
    .hrb-mega-menu__promo p  { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
    .hrb-dropdown {
      position: absolute; top: calc(100% + 8px); 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(-8px);
      transition: opacity 0.2s, transform 0.2s, visibility 0.2s; pointer-events: none; z-index: 200;
    }
    .hrb-nav__item--dropdown:hover .hrb-dropdown,
    .hrb-nav__item--dropdown:focus-within .hrb-dropdown { opacity: 1; visibility: visible; transform: none; pointer-events: all; }
    .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; }

    /* ============================================================
       SCROLL REVEAL
    ============================================================ */
    .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; }
    .hrb-reveal-delay-4 { transition-delay: 0.4s; }

    /* ============================================================
       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; }

    /* ============================================================
       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__logo-item { background: none; border: none; border-radius: 0; min-width: 0; padding: 0; height: auto; box-shadow: none; }
    .hrb-trust-bar__logo-item:hover { border-color: transparent; box-shadow: none; }
    .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); }

    /* ============================================================
       TESTIMONIAL
    ============================================================ */
    .hrb-testimonials { padding: var(--section-py) 0; background: var(--bg-alt); }
    .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; }

    /* ============================================================
       DEMO FORM (Final CTA section)
    ============================================================ */
    .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); }

    /* ============================================================
       Payroll CTA + Gravity Form (match attendance page behavior)
    ============================================================ */
    .hrb-final-cta__inner { gap: 40px; }
    @media (max-width: 767px) { .hrb-final-cta__inner { gap: 28px; } }
    @media (min-width: 768px) and (max-width: 1023px) { .hrb-final-cta__inner { grid-template-columns: 0.82fr 1.18fr; gap: 24px; } }
    @media (min-width: 1024px) { .hrb-final-cta__inner { grid-template-columns: 0.8fr 1.2fr; gap: 32px; } }
    .hrb-final-cta__form { width: 100%; max-width: none; justify-self: stretch; }

    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_wrapper,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_wrapper form {
      margin: 0 !important;
      padding: 0 !important;
      max-width: none !important;
    }

    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_heading,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_description,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_required_legend {
      display: none !important;
    }

    .hrb-final-cta .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-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_fields {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
      }

      .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf #field_1_6,
      .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf #field_1_7,
      .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf #field_1_9,
      .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf #field_1_25 {
        grid-column: 1 / -1 !important;
      }
    }

    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield .ginput_container {
      margin: 0 !important;
      padding: 0 !important;
    }

    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield.gform_hidden,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield--type-hidden,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield_visibility_hidden,
    .hrb-final-cta .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-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield--type-honeypot,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_validation_container,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf #field_1_26,
    .hrb-final-cta .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-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield_label,
    .hrb-final-cta .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-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield_required,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield_required_asterisk {
      color: #ef4444 !important;
      margin-left: 2px !important;
    }

    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield select,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield textarea,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .ginput_container input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .ginput_container select,
    .hrb-final-cta .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-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield textarea,
    .hrb-final-cta .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-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield input::placeholder,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield textarea::placeholder {
      color: #8fa1bb !important;
      opacity: 1 !important;
    }

    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield input:focus,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield select:focus,
    .hrb-final-cta .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-final-cta .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-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield_error input,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield_error select,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield_error textarea {
      border-color: #ef4444 !important;
      background: #ffffff !important;
      box-shadow: none !important;
    }

    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .validation_message,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield_validation_message,
    .hrb-final-cta .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-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_validation_errors,
    .hrb-final-cta .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-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_validation_errors > h2,
    .hrb-final-cta .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-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_validation_errors .gform-icon,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_validation_errors ol,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_validation_errors ul {
      display: none !important;
    }

    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield--type-captcha .gfield_label,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield--type-recaptcha .gfield_label,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield--type-captcha .gform-field-label,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield--type-recaptcha .gform-field-label {
      display: none !important;
      margin: 0 !important;
    }

    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_footer,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_page_footer {
      margin: 16px 0 0 !important;
      padding: 0 !important;
    }

    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_footer .gform_button.button,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_page_footer .gform_button.button,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_footer input[type="submit"],
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_page_footer input[type="submit"],
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_footer button[type="submit"],
    .hrb-final-cta .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-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_footer .gform_button.button:hover,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_page_footer .gform_button.button:hover,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_footer input[type="submit"]:hover,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_page_footer input[type="submit"]:hover,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_footer button[type="submit"]:hover,
    .hrb-final-cta .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-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_wrapper,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_body,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_fields,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti {
      overflow: visible !important;
    }

    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone {
      position: relative !important;
      overflow: visible !important;
    }

    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field {
      z-index: 20 !important;
    }

    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti {
      width: 100% !important;
      display: block !important;
    }

    .hrb-final-cta .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-final-cta .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__flag-container {
      z-index: 30 !important;
    }

    .hrb-final-cta .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-final-cta .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-final-cta .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__selected-country-primary .iti__flag,
    .hrb-final-cta .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-final-cta .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-final-cta .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-final-cta .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-final-cta .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__country.iti__highlight {
      background: #f3f7ff !important;
    }

    .hrb-final-cta .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-final-cta .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-final-cta .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-final-cta .hrb-demo-form #hrb-contact-form-gf #field_1_9 {
      margin-bottom: 0 !important;
      padding-bottom: 0 !important;
      min-height: 0 !important;
    }

    .hrb-final-cta .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-final-cta .hrb-demo-form #hrb-contact-form-gf #field_1_9 textarea {
      min-height: 84px !important;
      height: 84px !important;
    }

    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf #field_1_25 {
      margin-top: 0 !important;
      margin-bottom: 10px !important;
      padding: 0 !important;
    }

    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf #field_1_25 .gfield_label,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf #field_1_25 .gform-field-label {
      display: none !important;
      margin: 0 !important;
    }

    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf #field_1_25 .ginput_container,
    .hrb-final-cta .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-final-cta .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-final-cta .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-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield--type-captcha .validation_message,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gfield--type-recaptcha .validation_message {
      margin-top: 8px !important;
    }

    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_footer,
    .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf .gform_page_footer {
      margin-top: 8px !important;
    }

    @media (max-width: 575px) {
      .hrb-final-cta .hrb-demo-form #hrb-contact-form-gf #field_1_25 .grecaptcha-badge {
        transform: scale(0.92) !important;
        transform-origin: left top !important;
      }
    }

    /* ============================================================
       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; } }

    /* ============================================================
       HERO â€” COMPACT PRODUCT PAGE HERO
    ============================================================ */
    .hrb-hero-product {
      position: relative; overflow: hidden;
      background: linear-gradient(135deg, #0A7075 0%, #064E52 40%, #0F172A 100%);
      padding: 120px 0 80px;
    }
    .hrb-hero-product::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;
    }
    .hrb-hero-product::after {
      content: '';
      position: absolute; top: -20%; right: -10%;
      width: 55vw; height: 55vw; max-width: 700px; max-height: 700px;
      background: radial-gradient(circle, rgba(255,107,43,0.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .hrb-hero-product__inner {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr;
      gap: 48px; align-items: center;
    }
    @media (min-width: 1024px) {
      .hrb-hero-product__inner { grid-template-columns: 1fr 1fr; gap: 72px; }
    }
    .hrb-hero-product__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: 20px;
    }
    .hrb-hero-product__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-product__heading {
      font-family: var(--font-display); font-weight: 700;
      font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.1;
      color: white; margin-bottom: 20px;
    }
    .hrb-hero-product__heading em {
      font-style: normal; color: var(--accent);
    }
    .hrb-hero-product__subheading {
      font-size: clamp(1rem, 1.4vw, 1.15rem); color: rgba(255,255,255,0.8);
      line-height: 1.7; margin-bottom: 36px; max-width: 520px;
    }
    .hrb-hero-product__ctas {
      display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px;
    }
    .hrb-hero-product__trust {
      display: flex; flex-wrap: wrap; gap: 18px;
    }
    .hrb-hero-product__trust-item {
      display: flex; align-items: center; gap: 7px;
      font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500;
    }
    .hrb-hero-product__trust-item svg { color: #4ADE80; flex-shrink: 0; }
    /* Right visual */
    .hrb-hero-product__visual { position: relative; }
    .hrb-hero-product__screen-wrap {
      border-radius: var(--radius-xl);
      overflow: hidden;
    }
    .hrb-hero-product__screen-wrap img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 16px;
    }
    .hrb-hero-product__screen-text {
      color: rgba(255,255,255,0.4); font-size: 13px; text-align: center; line-height: 1.5;
    }
    /* Floating stat cards */
    .hrb-hero-product__float {
      position: absolute; background: white; border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg); padding: 10px 14px;
      font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 8px;
    }
    .hrb-hero-product__float--1 { top: -16px; left: -20px; animation: hrb-float-1 4s ease-in-out infinite; }
    .hrb-hero-product__float--2 { bottom: 32px; right: -16px; animation: hrb-float-2 5s ease-in-out infinite; }
    .hrb-hero-product__float--3 { top: 50%; left: -28px; transform: translateY(-50%); animation: hrb-float-3 4.5s ease-in-out infinite; }
    @keyframes hrb-float-1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
    @keyframes hrb-float-2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
    @keyframes hrb-float-3 { 0%,100%{transform:translateY(-50%)} 50%{transform:translateY(calc(-50% - 6px))} }
    .hrb-hero-product__float-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
    .hrb-hero-product__float-dot--green  { background: #10B981; }
    .hrb-hero-product__float-dot--orange { background: var(--accent); }
    .hrb-hero-product__float-dot--teal   { background: var(--primary-light); }

    /* ============================================================
       FEATURE GRID
    ============================================================ */
    .hrb-payroll-features { padding: var(--section-py) 0; background: var(--bg-alt); }
    .hrb-payroll-features__header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
    .hrb-payroll-features__grid {
      display: grid; grid-template-columns: 1fr; gap: 24px;
    }
    @media (min-width: 640px)  { .hrb-payroll-features__grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .hrb-payroll-features__grid { grid-template-columns: repeat(4, 1fr); } }
    .hrb-feat-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, border-color 0.25s ease;
      position: relative; overflow: hidden;
    }
    .hrb-feat-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--primary-light));
      opacity: 0; transition: opacity 0.25s;
    }
    .hrb-feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
    .hrb-feat-card:hover::before { opacity: 1; }
    .hrb-feat-card__icon {
      width: 52px; height: 52px; border-radius: var(--radius-md);
      background: var(--primary-xlight); display: flex; align-items: center;
      justify-content: center; margin-bottom: 18px;
    }
    .hrb-feat-card__title {
      font-family: var(--font-display); font-weight: 700;
      font-size: 16px; color: var(--dark); margin-bottom: 10px; line-height: 1.3;
    }
    .hrb-feat-card__desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

    /* ============================================================
       HOW IT WORKS â€” 3-STEP
    ============================================================ */
    .hrb-how-it-works {
      padding: var(--section-py) 0;
      background: linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #0A3B3F 100%);
      position: relative; overflow: hidden;
    }
    .hrb-how-it-works::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-how-it-works__header { text-align: center; max-width: 640px; margin: 0 auto 64px; position: relative; z-index: 1; }
    .hrb-how-it-works__header .hrb-section-badge { background: rgba(255,255,255,0.1); color: #2DD4BF; border: 1px solid rgba(255,255,255,0.15); }
    .hrb-how-it-works__header .hrb-section-badge::before { background: #2DD4BF; }
    .hrb-how-it-works__header h2 { color: white; }
    .hrb-how-it-works__header p { color: rgba(255,255,255,0.7); }
    .hrb-how-it-works__steps {
      display: grid; grid-template-columns: 1fr; gap: 32px; position: relative; z-index: 1;
    }
    @media (min-width: 768px) {
      .hrb-how-it-works__steps { grid-template-columns: repeat(3, 1fr); gap: 0; }
    }
    .hrb-how-it-works__steps::before { content: ''; display: none; }
    @media (min-width: 768px) {
      .hrb-how-it-works__steps::before {
        display: block; position: absolute;
        top: 36px; left: calc(16.66% + 20px); right: calc(16.66% + 20px);
        height: 2px; background: linear-gradient(90deg, rgba(45,212,191,0.2), rgba(45,212,191,0.6), rgba(45,212,191,0.2));
        z-index: 0;
      }
    }
    .hrb-step {
      display: flex; flex-direction: column; align-items: center;
      text-align: center; padding: 0 24px; position: relative; z-index: 1;
    }
    .hrb-step__number {
      width: 72px; height: 72px; border-radius: 50%;
      background: linear-gradient(135deg, var(--primary-light), var(--primary));
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-size: 28px; font-weight: 700; color: white;
      margin-bottom: 24px; box-shadow: 0 8px 30px rgba(10,112,117,0.4);
      flex-shrink: 0;
    }
    .hrb-step__title {
      font-family: var(--font-display); font-weight: 700;
      font-size: 20px; color: white; margin-bottom: 12px; line-height: 1.3;
    }
    .hrb-step__desc { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; }
    .hrb-step__tag {
      display: inline-block; margin-top: 16px;
      background: rgba(45,212,191,0.15); color: #2DD4BF;
      font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
      padding: 4px 12px; border-radius: var(--radius-full);
      border: 1px solid rgba(45,212,191,0.3);
    }
    .hrb-how-it-works__cta { text-align: center; margin-top: 56px; position: relative; z-index: 1; }

    /* ============================================================
       KARNATAKA COMPLIANCE SECTION
    ============================================================ */
    .hrb-karnataka-compliance { padding: var(--section-py) 0; background: var(--bg); }
    .hrb-karnataka-compliance__header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
    .hrb-karnataka-compliance__grid {
      display: grid; grid-template-columns: 1fr; gap: 24px;
    }
    @media (min-width: 640px)  { .hrb-karnataka-compliance__grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .hrb-karnataka-compliance__grid { grid-template-columns: repeat(4, 1fr); } }
    .hrb-compliance-card {
      background: white; border: 1px solid var(--border);
      border-left: 4px solid var(--success);
      border-radius: var(--radius-lg); padding: 28px;
      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: 28px; margin-bottom: 14px; display: block; }
    .hrb-compliance-card__title {
      font-family: var(--font-display); font-size: 17px; font-weight: 700;
      color: var(--dark); margin-bottom: 10px;
    }
    .hrb-compliance-card__rate {
      font-family: var(--font-display); font-size: 22px; font-weight: 700;
      color: var(--primary); margin-bottom: 12px; line-height: 1.2;
    }
    .hrb-compliance-card__desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
    .hrb-compliance-card__tag {
      display: inline-block; margin-top: 14px;
      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);
    }
    .hrb-karnataka-compliance__note {
      margin-top: 40px; padding: 20px 24px;
      background: var(--primary-xlight); border-radius: var(--radius-lg);
      border-left: 4px solid var(--primary);
      font-size: 14px; color: var(--text-muted); line-height: 1.7;
    }
    .hrb-karnataka-compliance__note strong { color: var(--primary); }

    /* ============================================================
       BEFORE VS AFTER COMPARISON
    ============================================================ */
    .hrb-before-after {
      padding: 80px 0;
      background: linear-gradient(135deg, #0D9488 0%, #0A7075 50%, #065F46 100%);
      position: relative; overflow: hidden;
    }
    .hrb-before-after::before {
      content: ''; position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 48px 48px; pointer-events: none;
    }
    .hrb-before-after__header { text-align: center; margin-bottom: 48px; position: relative; z-index: 1; }
    .hrb-before-after__header .hrb-section-badge { background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.2); margin-bottom: 14px; }
    .hrb-before-after__header .hrb-section-badge::before { background: white; }
    .hrb-before-after__header h2 { font-size: 40px; font-weight: 700; color: white; margin-bottom: 14px; }
    .hrb-before-after__header p { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; }

    .hrb-comparison-table {
      position: relative; z-index: 1;
      width: 100%; border-collapse: separate; border-spacing: 0;
      border-radius: var(--radius-lg); overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.15);
      background: white;
    }
    .hrb-comparison-table thead tr th {
      padding: 20px 28px; text-align: left;
      font-family: var(--font-display); font-size: 15px; font-weight: 700;
    }
    .hrb-comparison-table thead tr th:first-child {
      background: #F8FAFC; color: var(--text-muted);
      border-right: 1px solid var(--border);
      width: 40%;
    }
    .hrb-comparison-table thead tr th.col-before {
      background: #FEF2F2; color: #DC2626;
      border-right: 1px solid var(--border);
      width: 30%;
    }
    .hrb-comparison-table thead tr th.col-after {
      background: #F0FDF4; color: #16A34A;
      width: 30%;
    }
    .hrb-comparison-table tbody tr { border-top: 1px solid var(--border); }
    .hrb-comparison-table tbody tr td {
      padding: 18px 28px; font-size: 14px; vertical-align: middle;
      color: var(--text-muted); line-height: 1.55;
      border-top: 1px solid var(--border);
    }
    .hrb-comparison-table tbody tr td:first-child {
      font-weight: 600; color: var(--dark);
      border-right: 1px solid var(--border);
      background: #F8FAFC;
    }
    .hrb-comparison-table tbody tr td.col-before {
      border-right: 1px solid var(--border);
      background: #FFFAFA;
    }
    .hrb-comparison-table tbody tr td.col-after { background: #F9FFFE; }
    .hrb-neg { display: flex; align-items: flex-start; gap: 8px; }
    .hrb-neg::before { content: '\2717'; color: #DC2626; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
    .hrb-pos { display: flex; align-items: flex-start; gap: 8px; }
    .hrb-pos::before { content: '\2713'; color: #16A34A; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
    .hrb-comparison-table tfoot td {
      padding: 20px 28px; font-size: 13px;
      border-top: 2px solid var(--border);
    }
    .hrb-comparison-table tfoot td:first-child {
      border-right: 1px solid var(--border);
      background: #F8FAFC; color: var(--text-muted); font-weight: 600;
    }
    .hrb-comparison-table tfoot td.col-before {
      border-right: 1px solid var(--border);
      background: #FEF2F2; color: #DC2626; font-weight: 700;
    }
    .hrb-comparison-table tfoot td.col-after {
      background: #F0FDF4; color: #16A34A; font-weight: 700;
    }
    @media (max-width: 767px) {
      .hrb-comparison-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
      .hrb-comparison-table table { min-width: 560px; }
      .hrb-before-after__header h2 { font-size: 28px; }
    }

    /* ============================================================
       FAQ ACCORDION
    ============================================================ */
    .hrb-faq { padding: 80px 0; background: var(--bg); }
    .hrb-faq__header { text-align: center; margin-bottom: 48px; }
    .hrb-faq__header .hrb-section-badge { margin-bottom: 14px; }
    .hrb-faq__header h2 { font-size: 40px; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
    .hrb-faq__header p { font-size: 17px; color: var(--text-muted); max-width: 540px; margin: 0 auto; }
    .hrb-faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .hrb-faq__item {
      border: 1px solid var(--border); border-radius: var(--radius-lg);
      background: white; overflow: hidden;
      transition: box-shadow 0.2s ease;
    }
    .hrb-faq__item.is-open { box-shadow: 0 4px 20px rgba(10,112,117,0.1); border-color: var(--primary); }
    .hrb-faq__question {
      width: 100%; background: none; border: none; padding: 22px 24px;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      cursor: pointer; text-align: left;
    }
    .hrb-faq__question span {
      font-family: var(--font-display); font-size: 16px; font-weight: 600;
      color: var(--dark); line-height: 1.4;
    }
    .hrb-faq__icon {
      width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
      background: var(--primary-xlight); color: var(--primary);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; font-weight: 700; transition: transform 0.25s ease, background 0.2s ease;
      line-height: 1;
    }
    .hrb-faq__item.is-open .hrb-faq__icon { transform: rotate(45deg); background: var(--primary); color: white; }
    .hrb-faq__answer {
      max-height: 0; overflow: hidden;
      transition: max-height 0.35s ease, padding 0.25s ease;
      padding: 0 24px;
    }
    .hrb-faq__item.is-open .hrb-faq__answer { max-height: 400px; padding: 0 24px 22px; }
    .hrb-faq__answer p { font-size: 15px; color: var(--text-muted); line-height: 1.75; }
    .hrb-faq__answer a { color: var(--primary); text-decoration: underline; }
    @media (max-width: 767px) {
      .hrb-faq__header h2 { font-size: 28px; }
      .hrb-faq__question span { font-size: 15px; }
    }

    /* ============================================================
       MOBILE SECTION PADDING OVERRIDE
    ============================================================ */
    @media (max-width: 767px) {
      .hrb-payroll-features, .hrb-how-it-works, .hrb-karnataka-compliance,
      .hrb-before-after, .hrb-testimonial-section, .hrb-faq, .hrb-final-cta { padding: 48px 0; }
    }