/* ============================================================
       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%; }
    .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; }

    /* ============================================================
       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; } }

    /* ============================================================
       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; }

    /* ============================================================
       ROI CALCULATOR â€” PAGE-SPECIFIC STYLES
    ============================================================ */

    /* Hero section â€” dark gradient matching homepage pattern */
    .hrb-roi-hero {
      position: relative; overflow: hidden;
      background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0D3B36 100%);
      padding: 140px 0 80px;
      min-height: 100vh; display: flex; align-items: center;
    }
    .hrb-roi-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;
    }
    .hrb-roi-hero::after {
      content: '';
      position: absolute; top: -10%; left: -10%;
      width: 50vw; height: 50vw; max-width: 600px; max-height: 600px;
      background: radial-gradient(circle, rgba(13,148,136,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .hrb-roi-hero__inner {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr;
      gap: 48px; align-items: start;
    }
    @media (min-width: 1024px) {
      .hrb-roi-hero__inner { grid-template-columns: 45fr 55fr; gap: 64px; align-items: center; }
    }

    /* Left copy */
    .hrb-roi-hero__copy { color: white; }
    .hrb-roi-hero__badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(13,148,136,0.2); border: 1px solid rgba(13,148,136,0.4);
      color: var(--primary-light); border-radius: var(--radius-full);
      padding: 6px 16px; font-size: 12px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 24px;
    }
    .hrb-roi-hero__badge::before { content: ''; width: 7px; height: 7px; background: var(--primary-light); border-radius: 50%; }
    .hrb-roi-hero__h1 {
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(2rem, 4.5vw, 3.5rem);
      line-height: 1.1; color: white; margin-bottom: 20px;
    }
    .hrb-roi-hero__sub {
      font-size: 17px; color: rgba(255,255,255,0.72);
      line-height: 1.65; margin-bottom: 32px;
    }
    .hrb-roi-hero__trust { display: flex; flex-direction: column; gap: 10px; }
    .hrb-roi-hero__trust-item { display: flex; align-items: center; gap: 9px; font-size: 14px; color: rgba(255,255,255,0.7); }
    .hrb-roi-hero__trust-item svg { color: #4ADE80; flex-shrink: 0; }

    /* Calculator Card */
    .hrb-calc-card {
      background: white;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 24px 80px rgba(0,0,0,0.3);
      position: relative;
    }
    @media (max-width: 479px) { .hrb-calc-card { padding: 24px 20px; } }
    .hrb-calc-card__heading {
      font-family: var(--font-display); font-size: 20px; font-weight: 700;
      color: var(--dark); margin-bottom: 4px;
    }
    .hrb-calc-card__sub { font-size: 13px; color: var(--text-muted); margin-bottom: 32px; }

    /* Input groups */
    .hrb-calc-group { margin-bottom: 28px; }
    .hrb-calc-label {
      display: block; font-size: 14px; font-weight: 700; color: var(--dark);
      margin-bottom: 10px;
    }
    .hrb-calc-label span { font-weight: 400; color: var(--text-muted); }

    /* Employee count display */
    .hrb-calc-emp-row { display: flex; align-items: center; gap: 16px; margin-bottom: 10px; }
    .hrb-calc-emp-count {
      font-family: var(--font-display); font-size: 36px; font-weight: 800;
      color: var(--primary); min-width: 72px; line-height: 1;
    }
    .hrb-calc-emp-label { font-size: 13px; color: var(--text-muted); line-height: 1.3; }

    /* Range slider */
    .hrb-calc-slider {
      width: 100%; height: 6px; -webkit-appearance: none; appearance: none;
      background: var(--border); border-radius: var(--radius-full);
      outline: none; cursor: pointer;
    }
    .hrb-calc-slider::-webkit-slider-thumb {
      -webkit-appearance: none; appearance: none;
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--primary); cursor: pointer;
      box-shadow: 0 2px 8px rgba(13,148,136,0.4);
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .hrb-calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); box-shadow: 0 4px 14px rgba(13,148,136,0.5); }
    .hrb-calc-slider::-moz-range-thumb {
      width: 22px; height: 22px; border-radius: 50%; border: none;
      background: var(--primary); cursor: pointer;
      box-shadow: 0 2px 8px rgba(13,148,136,0.4);
    }
    .hrb-calc-slider-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-light); margin-top: 6px; }

    /* Radio cards */
    .hrb-calc-radio-group { display: flex; flex-direction: column; gap: 8px; }
    @media (min-width: 480px) { .hrb-calc-radio-group { flex-direction: row; } }
    .hrb-calc-radio-card { position: relative; flex: 1; }
    .hrb-calc-radio-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
    .hrb-calc-radio-card__label {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      padding: 14px 12px; border: 2px solid var(--border); border-radius: var(--radius-md);
      font-size: 13px; font-weight: 600; color: var(--text);
      text-align: center; cursor: pointer; line-height: 1.3;
      transition: border-color 0.2s, background 0.2s, color 0.2s;
      min-height: 68px;
    }
    .hrb-calc-radio-card__icon { font-size: 20px; margin-bottom: 5px; }
    .hrb-calc-radio-card input:checked + .hrb-calc-radio-card__label {
      border-color: var(--primary); background: var(--primary-xlight); color: var(--primary);
    }
    .hrb-calc-radio-card__label:hover { border-color: var(--primary-light); background: var(--bg-teal); }

    /* Select */
    .hrb-calc-select {
      width: 100%; padding: 14px 16px; border: 2px solid var(--border); border-radius: var(--radius-md);
      font-family: var(--font-body); font-size: 15px; color: var(--text); background: white;
      transition: border-color 0.2s, box-shadow 0.2s; outline: none; cursor: pointer;
      -webkit-appearance: none; appearance: none;
      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");
      background-repeat: no-repeat; background-position: right 14px center;
    }
    .hrb-calc-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-xlight); }

    /* Calculate button */
    .hrb-calc-btn {
      width: 100%; min-width: unset; height: 56px; font-size: 17px; font-weight: 700;
      background: var(--accent); color: var(--dark); border-radius: var(--radius-md);
      display: flex; align-items: center; justify-content: center; gap: 8px;
      cursor: pointer; border: none; font-family: var(--font-display);
      box-shadow: 0 4px 16px rgba(245,158,11,0.35);
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s; margin-top: 8px;
    }
    .hrb-calc-btn:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,0.45); }

    /* Loading pulse */
    .hrb-calc-loading {
      display: none; text-align: center; padding: 20px 0 10px;
      font-size: 15px; color: var(--text-muted); font-weight: 500;
    }
    .hrb-calc-loading.hrb-show { display: block; }
    @keyframes hrb-pulse {
      0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
    }
    .hrb-calc-loading span { display: inline-block; animation: hrb-pulse 1s ease-in-out infinite; }
    .hrb-calc-loading span:nth-child(2) { animation-delay: 0.15s; }
    .hrb-calc-loading span:nth-child(3) { animation-delay: 0.3s; }

    /* ============================================================
       RESULTS SECTION
    ============================================================ */
    .hrb-results {
      display: none; overflow: hidden;
      background: linear-gradient(135deg, #ECFDF5 0%, var(--primary-xlight) 100%);
      border-top: 3px solid var(--success);
    }
    .hrb-results.hrb-results--visible { display: block; animation: hrb-slide-down 0.4s ease; }
    @keyframes hrb-slide-down {
      from { opacity: 0; transform: translateY(-20px); }
      to   { opacity: 1; transform: none; }
    }
    .hrb-results__inner { padding: 64px 0 72px; }

    .hrb-results__header { text-align: center; margin-bottom: 48px; }
    .hrb-results__eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(16,185,129,0.12); color: var(--success);
      border: 1px solid rgba(16,185,129,0.25);
      border-radius: var(--radius-full); padding: 6px 16px;
      font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
      margin-bottom: 16px;
    }
    .hrb-results__title { font-size: clamp(1.6rem, 3vw, 2.25rem); color: var(--dark); margin-bottom: 8px; }
    .hrb-results__sub { font-size: 16px; color: var(--text-muted); }

    /* 4-metric cards */
    .hrb-results__grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 16px; margin-bottom: 40px;
    }
    @media (min-width: 768px) { .hrb-results__grid { grid-template-columns: repeat(4, 1fr); } }
    @media (max-width: 479px) { .hrb-results__grid { grid-template-columns: 1fr; } }

    .hrb-rcard {
      background: white; border-radius: var(--radius-lg);
      padding: 28px 24px; text-align: center;
      border: 1px solid rgba(16,185,129,0.15);
      box-shadow: var(--shadow-sm);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .hrb-rcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .hrb-rcard__icon { font-size: 28px; margin-bottom: 12px; }
    .hrb-rcard__value {
      font-family: var(--font-display); font-size: 28px; font-weight: 800;
      color: var(--primary); line-height: 1; margin-bottom: 6px;
    }
    @media (min-width: 768px) { .hrb-rcard__value { font-size: 32px; } }
    .hrb-rcard__label { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
    .hrb-rcard__sub { font-size: 12px; color: var(--text-muted); }
    .hrb-rcard--highlight .hrb-rcard__value { color: var(--accent-dark); }

    /* Summary box */
    .hrb-results__summary {
      background: white; border-radius: var(--radius-lg);
      padding: 32px; border: 1px solid rgba(13,148,136,0.2);
      margin-bottom: 32px; text-align: center;
    }
    .hrb-results__summary p { font-size: 16px; color: var(--text); line-height: 1.75; }
    .hrb-results__summary strong { color: var(--primary); }
    .hrb-results__summary em { color: var(--accent-dark); font-style: normal; font-weight: 700; }

    /* CTA row */
    .hrb-results__ctas { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

    /* ============================================================
       TRUST STRIP (Section 2)
    ============================================================ */
    .hrb-trust-strip { padding: 64px 0; background: white; border-top: 1px solid var(--border); }
    .hrb-trust-strip__grid {
      display: grid; grid-template-columns: 1fr;
      gap: 32px; text-align: center;
    }
    @media (min-width: 768px) { .hrb-trust-strip__grid { grid-template-columns: repeat(3, 1fr); } }
    .hrb-trust-strip__item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
    .hrb-trust-strip__icon {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--primary-xlight); display: flex; align-items: center; justify-content: center;
      font-size: 24px;
    }
    .hrb-trust-strip__stat {
      font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--primary);
    }
    .hrb-trust-strip__desc { font-size: 15px; color: var(--text-muted); max-width: 240px; }

    /* Final CTA Banner */
    .hrb-roi-cta {
      background: linear-gradient(135deg, #0D9488 0%, #06B6D4 100%);
      padding: 80px 0; text-align: center; position: relative; overflow: hidden;
    }
    .hrb-roi-cta::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
      pointer-events: none;
    }
    .hrb-roi-cta__inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
    .hrb-roi-cta__eyebrow {
      display: inline-block; background: rgba(255,255,255,0.15); color: white;
      border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius-full);
      font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
      padding: 5px 16px; margin-bottom: 20px;
    }
    .hrb-roi-cta__heading { font-size: clamp(1.75rem, 3.5vw, 2.5rem); color: white; margin-bottom: 12px; }
    .hrb-roi-cta__sub { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 36px; line-height: 1.6; }
    .hrb-roi-cta__btn {
      background: white; color: var(--primary);
      border-radius: var(--radius-md); font-family: var(--font-display);
      font-size: 17px; font-weight: 700; padding: 17px 44px;
      display: inline-block; text-decoration: none;
      box-shadow: 0 8px 32px rgba(0,0,0,0.2);
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .hrb-roi-cta__btn:hover { background: var(--bg-teal); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.25); color: var(--primary); }
