/* ============================================================
       DESIGN TOKENS â€” CSS VARIABLES
    ============================================================ */
    :root {
      --primary:        #0D9488;
      --primary-hover:  #14B8A6;
      --primary-light:  #2DD4BF;
      --primary-xlight: #F0FDFA;
      --primary-dark:   #065F46;
      --accent:         #F59E0B;
      --accent-hover:   #FBBF24;
      --accent-dark:    #D97706;
      --accent-light:   #FFF7ED;
      --dark:           #0F172A;
      --dark-2:         #1E293B;
      --text:           #334155;
      --text-muted:     #64748B;
      --text-light:     #94A3B8;
      --bg:             #FFFFFF;
      --bg-alt:         #F8FAFC;
      --bg-teal:        #F0FDFA;
      --border:         #E2E8F0;
      --border-dark:    #CBD5E1;
      --success:        #10B981;
      --radius-sm:      8px;
      --radius-md:      12px;
      --radius-lg:      16px;
      --radius-xl:      24px;
      --radius-full:    9999px;
      --shadow-sm:      0 1px 3px rgba(0,0,0,0.06);
      --shadow-md:      0 4px 16px rgba(0,0,0,0.08);
      --shadow-lg:      0 8px 40px rgba(0,0,0,0.12);
      --shadow-primary: 0 8px 30px rgba(13,148,136,0.25);
      --section-py:     80px;
      --font-display:   'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      --font-body:      'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    /* ============================================================
       RESET + BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      font-family: var(--font-body);
      font-size: 16px; color: var(--text);
      background: var(--bg); line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    ul, ol { list-style: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-display);
      font-weight: 700; color: var(--dark); line-height: 1.2;
    }
    h1 { font-size: 56px; font-weight: 800; }
    h2 { font-size: 40px; }
    h3 { font-size: 24px; }
    h4 { font-size: 18px; }
    p  { line-height: 1.65; }
    @media (max-width: 767px) {
      h1 { font-size: 36px; }
      h2 { font-size: 28px; }
      h3 { font-size: 20px; }
    }

    /* ============================================================
       LAYOUT
    ============================================================ */
    .hrb-container {
      max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%;
    }
    @media (min-width: 768px)  { .hrb-container { padding: 0 40px; } }
    @media (min-width: 1280px) { .hrb-container { padding: 0 48px; } }
    .hrb-section     { padding: var(--section-py) 0; }
    .hrb-section-alt { padding: var(--section-py) 0; background: var(--bg-alt); }

    .hrb-section-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--primary);
      background: var(--primary-xlight); border-radius: var(--radius-full);
      padding: 6px 14px; margin-bottom: 12px;
    }
    .hrb-section-label::before {
      content: ''; width: 8px; height: 8px;
      background: var(--primary); border-radius: 50%;
    }

    /* ============================================================
       BUTTONS
    ============================================================ */
    .hrb-btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      min-width: 200px; height: 52px; padding: 0 28px;
      border-radius: var(--radius-md); font-family: var(--font-display);
      font-size: 15px; font-weight: 700;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      text-decoration: none; white-space: nowrap; cursor: pointer; border: none;
    }
    .hrb-btn--primary {
      background: var(--primary); color: white;
      box-shadow: 0 4px 12px rgba(13,148,136,0.25);
    }
    .hrb-btn--primary:hover {
      background: var(--primary-hover); transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(13,148,136,0.35); color: white;
    }
    .hrb-btn--accent {
      background: var(--accent); color: var(--dark);
      font-weight: 700; box-shadow: 0 4px 16px rgba(245,158,11,0.3);
    }
    .hrb-btn--accent:hover {
      background: var(--accent-hover); transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(245,158,11,0.4); color: var(--dark);
    }
    .hrb-btn--outline-white {
      background: transparent; color: white;
      border: 2px solid rgba(255,255,255,0.5);
    }
    .hrb-btn--outline-white:hover {
      background: rgba(255,255,255,0.12); border-color: white; color: white;
    }
    .hrb-btn--outline-primary {
      background: transparent; color: var(--primary);
      border: 2px solid var(--primary);
    }
    .hrb-btn--outline-primary:hover { background: var(--primary-xlight); }
    .hrb-btn--lg   { height: 56px; font-size: 16px; min-width: 220px; }
    .hrb-btn--sm   { height: 40px; min-width: 140px; font-size: 14px; padding: 0 20px; }
    .hrb-btn--full { width: 100%; min-width: unset; }

    /* ============================================================
       HEADER + NAV
    ============================================================ */
    .hrb-header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(255,255,255,0);
      transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
      border-bottom: 1px solid transparent;
    }
    .hrb-header--scrolled {
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 2px 24px rgba(13,148,136,0.09);
      border-bottom-color: var(--border);
    }
    .hrb-header__inner {
      display: flex; align-items: center; gap: 8px;
      height: 72px; padding: 0 24px; max-width: 1280px; margin: 0 auto;
    }
    @media (min-width: 768px) { .hrb-header__inner { padding: 0 40px; } }
    .hrb-header__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
    .hrb-logo-mark { flex-shrink: 0; }
    .hrb-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
    .hrb-logo-main {
      font-family: var(--font-display); font-weight: 700; font-size: 17px;
      color: white; transition: color 0.35s ease;
    }
    .hrb-logo-sub {
      font-family: var(--font-display); font-weight: 400; font-size: 12px;
      color: rgba(255,255,255,0.75); letter-spacing: 0.03em; transition: color 0.35s ease;
    }
    .hrb-header--scrolled .hrb-logo-main { color: var(--dark); }
    .hrb-header--scrolled .hrb-logo-sub  { color: var(--primary); }

    .hrb-nav { margin-left: auto; display: none; }
    @media (min-width: 1024px) { .hrb-nav { display: flex; } }
    .hrb-nav__list { display: flex; align-items: center; gap: 4px; }
    .hrb-nav__item { position: relative; }
    .hrb-nav__link {
      display: flex; align-items: center; gap: 4px;
      font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.88);
      padding: 8px 14px; border-radius: var(--radius-sm);
      transition: color 0.2s, background 0.2s; background: none;
    }
    .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; }

    /* ============================================================
       PRICING PAGE â€” PAGE-SPECIFIC STYLES
    ============================================================ */

    /* HERO */
    .hrb-pricing-hero {
      background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0D3B36 100%);
      padding: 140px 0 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hrb-pricing-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(13,148,136,0.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .hrb-pricing-hero__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
    .hrb-pricing-hero__badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(13,148,136,0.15); border: 1px solid rgba(13,148,136,0.35);
      color: var(--primary-light); font-size: 13px; font-weight: 600;
      padding: 6px 16px; border-radius: var(--radius-full); margin-bottom: 24px;
    }
    .hrb-pricing-hero h1 {
      color: white; font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 800; line-height: 1.15; margin-bottom: 20px;
    }
    .hrb-pricing-hero__sub {
      font-size: 18px; color: rgba(255,255,255,0.65);
      line-height: 1.65; margin-bottom: 16px; max-width: 560px; margin-left: auto; margin-right: auto;
    }
    .hrb-pricing-hero__note {
      font-size: 13px; color: rgba(255,255,255,0.4);
    }

    /* PRICING CARDS SECTION */
    .hrb-pricing-cards { padding: var(--section-py) 0; background: var(--bg-alt); }
    .hrb-pricing-cards__header { text-align: center; margin-bottom: 56px; }
    .hrb-pricing-cards__header h2 { margin-bottom: 12px; }
    .hrb-pricing-cards__header p { font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

    .hrb-pricing-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      align-items: stretch;
    }
    @media (min-width: 768px) { .hrb-pricing-grid { grid-template-columns: repeat(3, 1fr); } }

    .hrb-plan {
      background: white;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 36px 32px;
      position: relative;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      display: flex; flex-direction: column;
    }
    .hrb-plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

    .hrb-plan--popular {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(13,148,136,0.12), var(--shadow-md);
      background: linear-gradient(180deg, #F0FDFA 0%, white 60%);
    }
    .hrb-plan--popular:hover { box-shadow: 0 0 0 3px rgba(13,148,136,0.18), var(--shadow-lg); }

    .hrb-plan__popular-badge {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--primary); color: white;
      font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
      padding: 4px 16px; border-radius: var(--radius-full);
      white-space: nowrap;
    }

    .hrb-plan__name {
      font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 8px;
    }
    .hrb-plan__desc {
      font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; min-height: 56px;
    }

    .hrb-plan__price-block { margin-bottom: 8px; }
    .hrb-plan__price {
      font-size: 32px; font-weight: 800; color: var(--dark); line-height: 1;
    }
    .hrb-plan__price span { font-size: 16px; font-weight: 500; color: var(--text-muted); }
    .hrb-plan__base-note {
      font-size: 13px; color: var(--text-muted); margin-top: 6px;
    }
    .hrb-plan__addl {
      font-size: 13px; color: var(--text-muted); margin-top: 4px;
    }
    .hrb-plan__billing {
      display: inline-block;
      font-size: 12px; font-weight: 600; color: var(--primary);
      background: var(--primary-xlight); border-radius: var(--radius-full);
      padding: 3px 12px; margin-top: 10px; margin-bottom: 24px;
    }

    .hrb-plan__cta {
      display: flex; align-items: center; justify-content: center;
      width: 100%; height: 48px; border-radius: var(--radius-md);
      font-family: var(--font-display); font-size: 15px; font-weight: 700;
      cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      text-decoration: none; border: 2px solid var(--primary);
      margin-bottom: 28px;
    }
    .hrb-plan__cta--outline {
      background: transparent; color: var(--primary);
    }
    .hrb-plan__cta--outline:hover {
      background: var(--primary-xlight); transform: translateY(-1px);
    }
    .hrb-plan__cta--filled {
      background: var(--primary); color: white; border-color: var(--primary);
      box-shadow: 0 4px 12px rgba(13,148,136,0.3);
    }
    .hrb-plan__cta--filled:hover {
      background: var(--primary-hover); transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(13,148,136,0.4); color: white;
    }

    .hrb-plan__divider { border: none; border-top: 1px solid var(--border); margin-bottom: 24px; }

    .hrb-plan__features-heading {
      font-size: 13px; font-weight: 700; color: var(--text-muted);
      text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px;
    }
    .hrb-plan__features { display: flex; flex-direction: column; gap: 12px; flex: 1; }
    .hrb-plan__feature {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 14px; color: var(--text); line-height: 1.5;
    }
    .hrb-plan__feature-check {
      width: 18px; height: 18px; border-radius: 50%;
      background: var(--primary-xlight); flex-shrink: 0; margin-top: 1px;
      display: flex; align-items: center; justify-content: center;
    }
    .hrb-plan--popular .hrb-plan__feature-check { background: rgba(13,148,136,0.15); }
    .hrb-plan__feature-check svg { color: var(--primary); }

    /* FEATURE COMPARISON TABLE */
    .hrb-compare { padding: var(--section-py) 0; background: var(--bg); overflow-x: auto; }
    .hrb-compare__header { text-align: center; margin-bottom: 48px; }
    .hrb-compare__header h2 { margin-bottom: 12px; }
    .hrb-compare__header p { font-size: 17px; color: var(--text-muted); max-width: 520px; margin: 0 auto; }

    .hrb-compare-table {
      width: 100%; border-collapse: collapse; min-width: 640px;
    }
    .hrb-compare-table thead th {
      padding: 16px 20px; text-align: center;
      font-family: var(--font-display); font-size: 15px; font-weight: 700;
      color: var(--dark); background: white;
      border-bottom: 2px solid var(--border);
      position: sticky; top: 72px; z-index: 10;
    }
    .hrb-compare-table thead th:first-child { text-align: left; }
    .hrb-compare-table thead th.hrb-col-popular {
      background: var(--primary-xlight); color: var(--primary);
      border-bottom-color: var(--primary);
    }
    .hrb-compare-table .hrb-compare-category {
      background: var(--bg-alt);
      font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--text-muted); padding: 12px 20px;
    }
    .hrb-compare-table tbody td {
      padding: 14px 20px; border-bottom: 1px solid var(--border);
      font-size: 14px; color: var(--text); text-align: center; vertical-align: middle;
    }
    .hrb-compare-table tbody td:first-child { text-align: left; font-weight: 500; color: var(--dark); }
    .hrb-compare-table tbody tr:hover td { background: var(--bg-alt); }
    .hrb-compare-table .hrb-col-popular { background: rgba(240,253,250,0.5); }
    .hrb-compare-table tr:hover .hrb-col-popular { background: var(--primary-xlight); }

    .hrb-check { color: var(--primary); font-size: 18px; font-weight: 700; }
    .hrb-dash  { color: var(--border-dark); font-size: 18px; }

    /* FAQ SECTION */
    .hrb-faq { padding: var(--section-py) 0; background: var(--bg-alt); }
    .hrb-faq__header { text-align: center; margin-bottom: 48px; }
    .hrb-faq__header h2 { margin-bottom: 12px; }
    .hrb-faq__header p { font-size: 17px; color: var(--text-muted); max-width: 520px; margin: 0 auto; }

    .hrb-faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .hrb-faq__item {
      background: white; border: 1px solid var(--border);
      border-radius: var(--radius-lg); overflow: hidden;
      transition: box-shadow 0.2s;
    }
    .hrb-faq__item.hrb-faq__item--open { box-shadow: var(--shadow-md); border-color: var(--primary); }
    .hrb-faq__question {
      width: 100%; display: flex; align-items: center; justify-content: space-between;
      gap: 16px; padding: 20px 24px;
      font-family: var(--font-display); font-size: 16px; font-weight: 600;
      color: var(--dark); text-align: left; background: none; cursor: pointer;
    }
    .hrb-faq__icon {
      width: 24px; height: 24px; border-radius: 50%;
      background: var(--primary-xlight); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s, transform 0.3s;
    }
    .hrb-faq__item--open .hrb-faq__icon { background: var(--primary); transform: rotate(45deg); }
    .hrb-faq__icon svg { color: var(--primary); transition: color 0.2s; }
    .hrb-faq__item--open .hrb-faq__icon svg { color: white; }
    .hrb-faq__answer {
      max-height: 0; overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
      padding: 0 24px;
    }
    .hrb-faq__item--open .hrb-faq__answer { max-height: 400px; padding: 0 24px 20px; }
    .hrb-faq__answer p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

    /* TRUST STRIP */
    .hrb-pricing-trust { padding: 56px 0; background: var(--bg); border-top: 1px solid var(--border); }
    .hrb-pricing-trust__inner {
      display: flex; flex-wrap: wrap; gap: 32px;
      align-items: center; justify-content: center; text-align: center;
    }
    .hrb-pricing-trust__stat { display: flex; flex-direction: column; gap: 4px; }
    .hrb-pricing-trust__number {
      font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--primary);
    }
    .hrb-pricing-trust__label { font-size: 13px; color: var(--text-muted); }
    .hrb-pricing-trust__divider { width: 1px; height: 48px; background: var(--border); }
    @media (max-width: 639px) { .hrb-pricing-trust__divider { display: none; } }

    /* CTA BANNER */
    .hrb-pricing-cta {
      background: linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #0D3B36 100%);
      padding: 80px 24px; text-align: center; overflow: hidden; position: relative;
    }
    .hrb-pricing-cta::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(13,148,136,0.2) 0%, transparent 70%);
      pointer-events: none;
    }
    .hrb-pricing-cta__inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
    .hrb-pricing-cta h2 {
      color: white; font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 700; margin-bottom: 16px;
    }
    .hrb-pricing-cta p { font-size: 17px; color: rgba(255,255,255,0.65); margin-bottom: 36px; }
    .hrb-pricing-cta__btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 24px; }
    .hrb-pricing-cta__phone {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      font-size: 14px; color: rgba(255,255,255,0.5);
    }
    .hrb-pricing-cta__phone a { color: rgba(255,255,255,0.75); font-weight: 600; }
    .hrb-pricing-cta__phone a:hover { color: white; }

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

    /* MISC UTILITIES */
    .hrb-text-center { text-align: center; }
    .hrb-sr-only {
      position: absolute; width: 1px; height: 1px;
      padding: 0; margin: -1px; overflow: hidden;
      clip: rect(0,0,0,0); border: 0;
    }

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

    @media (max-width: 767px) {
      .hrb-pricing-hero { padding: 120px 0 56px; }
      .hrb-pricing-cards, .hrb-compare, .hrb-faq { padding: 48px 0; }
      .hrb-plan { padding: 28px 20px; }
      .hrb-pricing-trust { padding: 40px 0; }
    }
