  /* ============================================================
     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; }

  /* ============================================================
     STATUTORY COMPLIANCE PAGE â€” PAGE-SPECIFIC STYLES ONLY
  ============================================================ */

  /* ============================================================
     HERO â€” .hrb-sc-hero
  ============================================================ */
  .hrb-sc-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0D3B36 100%); padding: 140px 0 100px; min-height: 100vh; display: flex; align-items: center; }
  .hrb-sc-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-sc-hero__inner { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
  @media (min-width: 1024px) { .hrb-sc-hero__inner { grid-template-columns: 1fr 1fr; gap: 80px; } }
  .hrb-sc-hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-full); padding: 6px 16px; font-size: 13px; font-weight: 600; color: #2DD4BF; margin-bottom: 24px; }
  .hrb-sc-hero__badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #2DD4BF; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }
  .hrb-sc-hero h1 { font-size: 56px; font-weight: 800; color: white; line-height: 1.1; margin-bottom: 24px; }
  .hrb-sc-hero h1 em { font-style: normal; color: #2DD4BF; }
  @media (max-width: 767px) { .hrb-sc-hero h1 { font-size: 36px; } }
  .hrb-sc-hero__sub { font-size: 18px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
  .hrb-sc-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
  .hrb-sc-hero__pills { display: flex; flex-wrap: wrap; gap: 10px; }
  .hrb-sc-hero__pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-full); padding: 6px 14px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); }
  .hrb-sc-hero__pill-dot { width: 6px; height: 6px; border-radius: 50%; background: #2DD4BF; flex-shrink: 0; }

  /* Hero dashboard visual */
  .hrb-sc-hero__visual { display: flex; justify-content: center; }
  .hrb-sc-dashboard { background: white; border-radius: 20px; padding: 28px; box-shadow: 0 32px 80px rgba(0,0,0,0.4); width: 100%; max-width: 420px; }
  .hrb-sc-dashboard__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
  .hrb-sc-dashboard__title { font-size: 15px; font-weight: 700; color: var(--dark); }
  .hrb-sc-dashboard__month { font-size: 12px; color: var(--text-muted); background: var(--bg-alt); padding: 4px 10px; border-radius: var(--radius-full); }
  .hrb-sc-dashboard__rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
  .hrb-sc-row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--radius-md); border: 1px solid var(--border); }
  .hrb-sc-row__icon { width: 36px; height: 36px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
  .hrb-sc-row__info { flex: 1; }
  .hrb-sc-row__name { font-size: 13px; font-weight: 600; color: var(--dark); }
  .hrb-sc-row__due { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
  .hrb-sc-row__status { font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-full); white-space: nowrap; }
  .hrb-sc-row__status--filed { background: #D1FAE5; color: #059669; }
  .hrb-sc-row__status--due { background: #FEF3C7; color: #D97706; }
  .hrb-sc-dashboard__footer { background: #D1FAE5; border-radius: var(--radius-md); padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
  .hrb-sc-dashboard__footer-icon { font-size: 20px; }
  .hrb-sc-dashboard__footer-text { font-size: 13px; font-weight: 700; color: #059669; }
  .hrb-sc-dashboard__footer-sub { font-size: 11px; color: #059669; opacity: 0.8; }

  /* ============================================================
     TRUST BAR â€” teal tint
  ============================================================ */
  .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-logo { display: none; }
  .hrb-trust-bar__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  @media (min-width: 768px) { .hrb-trust-bar__stats { grid-template-columns: repeat(4, 1fr); } }
  .hrb-trust-bar__stat { text-align: center; }
  .hrb-trust-bar__stat-num { font-size: 32px; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 6px; }
  .hrb-trust-bar__stat-label { font-size: 14px; color: var(--text-muted); }

  /* ============================================================
     FEATURES â€” light grey
  ============================================================ */
  .hrb-features { padding: var(--section-py) 0; background: var(--bg-alt); }
  .hrb-features__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
  @media (min-width: 640px)  { .hrb-features__grid { grid-template-columns: 1fr 1fr; } }
  @media (min-width: 1024px) { .hrb-features__grid { grid-template-columns: repeat(3, 1fr); } }
  .hrb-fcard { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; transition: transform 0.25s, box-shadow 0.25s; }
  .hrb-fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .hrb-fcard__icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: var(--primary-xlight); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .hrb-fcard__icon svg { color: var(--primary); }
  .hrb-fcard h3 { font-size: 18px; font-weight: 700; color: var(--dark); }
  .hrb-fcard p { font-size: 14px; color: var(--text-muted); line-height: 1.65; flex: 1; }
  .hrb-fcard__rate { display: inline-flex; align-items: center; gap: 6px; background: var(--primary-xlight); color: var(--primary); font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: var(--radius-full); margin-top: 4px; width: fit-content; }

  /* ============================================================
     HOW IT WORKS â€” dark gradient
  ============================================================ */
  .hrb-how { padding: var(--section-py) 0; background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); position: relative; overflow: hidden; }
  .hrb-how::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-how .hrb-section-header h2 { color: white; }
  .hrb-how .hrb-section-header p { color: rgba(255,255,255,0.65); }
  .hrb-how__steps { display: grid; grid-template-columns: 1fr; gap: 32px; position: relative; z-index: 1; }
  @media (min-width: 768px) { .hrb-how__steps { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
  .hrb-how__step { text-align: center; }
  .hrb-how__step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: white; font-size: 22px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
  .hrb-how__step h3 { font-size: 20px; font-weight: 700; color: white; margin-bottom: 12px; }
  .hrb-how__step p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; }
  .hrb-how__step-tag { display: inline-block; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-full); padding: 4px 14px; font-size: 12px; font-weight: 600; color: #2DD4BF; margin-top: 14px; }

  /* ============================================================
     KARNATAKA CONTEXT â€” white
  ============================================================ */
  .hrb-sc-context { padding: var(--section-py) 0; background: white; }
  .hrb-sc-context__inner { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
  @media (min-width: 1024px) { .hrb-sc-context__inner { grid-template-columns: 1fr 1fr; gap: 72px; } }
  .hrb-sc-context__left h2 { margin-bottom: 16px; }
  .hrb-sc-context__left > p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
  .hrb-sc-context__alert { background: #FFF3EE; border: 1px solid #FDBA9A; border-left: 4px solid var(--accent); border-radius: var(--radius-md); padding: 18px 20px; margin-bottom: 28px; }
  .hrb-sc-context__alert-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 6px; }
  .hrb-sc-context__alert p { font-size: 14px; color: #7C2D12; line-height: 1.6; }
  .hrb-sc-context__portal { background: var(--primary-xlight); border: 1px solid #B2E8E5; border-radius: var(--radius-md); padding: 18px 20px; }
  .hrb-sc-context__portal p { font-size: 14px; color: var(--primary); font-weight: 600; line-height: 1.6; }
  .hrb-sc-context__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .hrb-sc-stat { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 20px; text-align: center; }
  .hrb-sc-stat__num { font-size: 28px; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 8px; }
  .hrb-sc-stat__label { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

  /* ============================================================
     COMPARISON â€” teal gradient
  ============================================================ */
  .hrb-compare { padding: var(--section-py) 0; background: linear-gradient(135deg, #0D9488 0%, #0A7075 50%, #065F46 100%); position: relative; overflow: hidden; }
  .hrb-compare::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-compare__header { text-align: center; margin-bottom: 48px; position: relative; z-index: 1; }
  .hrb-compare__header h2 { color: white; margin-bottom: 12px; }
  .hrb-compare__header p { color: rgba(255,255,255,0.75); font-size: 17px; max-width: 620px; margin: 0 auto; }
  .hrb-compare__table { width: 100%; border-collapse: collapse; position: relative; z-index: 1; }
  .hrb-compare__table-head th { padding: 14px 24px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
  .hrb-compare__table-head th:first-child { color: rgba(255,255,255,0.55); text-align: left; width: 50%; }
  .hrb-compare__table-head th:last-child { color: var(--primary); background: white; border-radius: 12px 12px 0 0; text-align: left; width: 50%; }
  .hrb-compare__row td { padding: 20px 24px; vertical-align: top; border-top: 1px solid rgba(255,255,255,0.1); }
  .hrb-compare__row:first-child td { border-top: none; }
  .hrb-compare__row td:first-child { color: rgba(255,255,255,0.8); font-size: 15px; line-height: 1.6; }
  .hrb-compare__row td:last-child { background: white; font-size: 15px; line-height: 1.6; color: var(--dark); border-top: 1px solid #E2E8F0; }
  .hrb-compare__row:first-child td:last-child { border-top: none; }
  .hrb-compare__row:last-child td:last-child { border-radius: 0 0 12px 12px; }
  .hrb-compare__row td:last-child strong { color: var(--primary); }
  .hrb-compare__row td:first-child::before { content: '\2717'; display: inline-block; width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); font-size: 11px; font-weight: 700; text-align: center; line-height: 22px; margin-right: 12px; flex-shrink: 0; vertical-align: middle; }
  .hrb-compare__row td:last-child::before { content: '\2713'; display: inline-block; width: 22px; height: 22px; border-radius: 50%; background: #D1FAE5; color: #059669; font-size: 11px; font-weight: 700; text-align: center; line-height: 22px; margin-right: 12px; flex-shrink: 0; vertical-align: middle; }
  @media (max-width: 767px) {
    .hrb-compare__table, .hrb-compare__table tbody, .hrb-compare__table tr, .hrb-compare__table td, .hrb-compare__table thead, .hrb-compare__table th { display: block; width: 100%; }
    .hrb-compare__table-head { display: none; }
    .hrb-compare__row { margin-bottom: 16px; border-radius: 12px; overflow: hidden; }
    .hrb-compare__row td { display: block; border-top: none !important; border-radius: 0 !important; }
    .hrb-compare__row td:first-child { background: rgba(255,255,255,0.1); padding: 16px 20px; }
    .hrb-compare__row td:first-child::before { content: 'BEFORE  \2717'; display: inline; width: auto; height: auto; background: none; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; margin-right: 8px; line-height: inherit; vertical-align: baseline; border-radius: 0; }
    .hrb-compare__row td:last-child { border-top: 1px solid #E2E8F0 !important; border-radius: 0 !important; padding: 16px 20px; }
    .hrb-compare__row td:last-child::before { content: 'AFTER  \2713'; display: inline; width: auto; height: auto; background: none; color: var(--primary); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; margin-right: 8px; line-height: inherit; vertical-align: baseline; border-radius: 0; }
  }

  /* ============================================================
     TESTIMONIALS â€” light grey
  ============================================================ */
  .hrb-testimonials { padding: var(--section-py) 0; background: var(--bg-alt); }
  .hrb-testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  @media (max-width: 1023px) { .hrb-testimonials__grid { grid-template-columns: 1fr; gap: 20px; } }
  .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: #F59E0B; font-size: 16px; }
  .hrb-tcard__quote { 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-size: 16px; font-weight: 700; color: white; }
  .hrb-tcard__info strong { display: block; font-size: 15px; font-weight: 700; color: var(--dark); }
  .hrb-tcard__info span { display: block; font-size: 13px; color: var(--text-muted); }
  .hrb-tcard__result { font-size: 13px; font-weight: 700; color: var(--primary); background: var(--primary-xlight); padding: 6px 14px; border-radius: var(--radius-full); display: inline-block; }

  /* ============================================================
     FAQ â€” white
  ============================================================ */
  .hrb-faq { padding: var(--section-py) 0; background: white; }
  .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, border-color 0.2s; }
  .hrb-faq__item--open { border-color: var(--primary); box-shadow: 0 4px 20px rgba(10,112,117,0.1); }
  .hrb-faq__q { 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; font-size: 16px; font-weight: 600; color: var(--dark); line-height: 1.4; font-family: var(--font-display); }
  .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; line-height: 1; transition: transform 0.25s, background 0.2s; }
  .hrb-faq__item--open .hrb-faq__icon { transform: rotate(45deg); background: var(--primary); color: white; }
  .hrb-faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; padding: 0 24px; }
  .hrb-faq__item--open .hrb-faq__a { max-height: 600px; padding: 0 24px 22px; }
  .hrb-faq__a p { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

  /* ============================================================
     RELATED FEATURES â€” teal tint
  ============================================================ */
  .hrb-related { padding: var(--section-py) 0; background: var(--bg-teal); border-top: 1px solid #D1EEF0; }
  .hrb-related__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
  @media (min-width: 768px) { .hrb-related__grid { grid-template-columns: repeat(3, 1fr); } }
  .hrb-related__card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; display: flex; flex-direction: column; gap: 12px; transition: transform 0.25s, box-shadow 0.25s; text-decoration: none; }
  .hrb-related__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .hrb-related__icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: var(--primary-xlight); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .hrb-related__content { display: flex; flex-direction: column; gap: 8px; flex: 1; }
  .hrb-related__card h3 { font-size: 18px; font-weight: 700; color: var(--dark); line-height: 1.3; }
  .hrb-related__card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; flex: 1; }
  .hrb-related__link { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--primary); margin-top: 4px; }

  /* ============================================================
     DEMO CTA + FORM â€” dark gradient
  ============================================================ */
  .hrb-demo-cta { padding: var(--section-py) 0; background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); position: relative; overflow: hidden; }
  .hrb-demo-cta::before { content: ''; position: absolute; top: -40%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(10,112,117,0.15) 0%, transparent 70%); pointer-events: none; }
  .hrb-demo-cta__inner { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: start; position: relative; z-index: 1; }
  @media (min-width: 1024px) { .hrb-demo-cta__inner { grid-template-columns: 1fr 1fr; gap: 80px; } }
  .hrb-demo-cta__content .hrb-section-badge { margin-bottom: 16px; display: inline-block; }
  .hrb-demo-cta__content h2 { font-size: 40px; font-weight: 700; color: white; line-height: 1.2; margin: 0 0 16px; }
  @media (max-width: 767px) { .hrb-demo-cta__content h2 { font-size: 28px; } }
  .hrb-demo-cta__content > p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 28px; }
  .hrb-demo-cta__list { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 12px; }
  .hrb-demo-cta__list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.8); }
  .hrb-demo-cta__list li svg { color: #2DD4BF; flex-shrink: 0; }
  .hrb-demo-cta__form-wrap { display: flex; flex-direction: column; }
  .hrb-demo-cta__form-card { background: white; border-radius: var(--radius-xl); padding: 40px 36px; box-shadow: var(--shadow-lg); }
  @media (max-width: 479px) { .hrb-demo-cta__form-card { padding: 28px 20px; } }
  .hrb-demo-cta__form-card h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
  .hrb-demo-cta__form-card > p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
  .hrb-demo-form { display: flex; flex-direction: column; gap: 16px; }
  .hrb-form__field { display: flex; flex-direction: column; gap: 6px; }
  .hrb-form__field label { font-size: 13px; font-weight: 600; color: var(--text); }
  .hrb-form__field input,
  .hrb-form__field select { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-display); font-size: 15px; color: var(--text); background: white; transition: border-color 0.2s, box-shadow 0.2s; outline: none; width: 100%; }
  .hrb-form__field input:focus,
  .hrb-form__field select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-xlight); }
  .hrb-form__field--error input,
  .hrb-form__field--error select { border-color: #EF4444; }
  .hrb-form__error { font-size: 12px; color: #EF4444; display: none; }
  .hrb-form__field--error .hrb-form__error { display: block; }
  .hrb-form__privacy { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 4px; }

  /* ============================================================
     FOOTER (exact homepage)
  ============================================================ */
  .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 (exact homepage)
  ============================================================ */
  @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; } }

  /* ============================================================
     SECTION HEADER + UTILITIES
  ============================================================ */
  .hrb-section-header { text-align: center; max-width: 700px; margin: 0 auto 56px; }
  .hrb-section-header h2 { font-size: 40px; font-weight: 700; color: var(--dark); margin-bottom: 14px; line-height: 1.2; }
  @media (max-width: 767px) { .hrb-section-header h2 { font-size: 28px; } }
  .hrb-section-header p { font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--text-muted); line-height: 1.7; }
  .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); white-space: nowrap; border: 0; }

  /* ============================================================
     SCROLL ANIMATION UTILITY
  ============================================================ */
  .hrb-reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .hrb-reveal.hrb-visible { opacity: 1; transform: none; }
  .hrb-reveal-delay-1 { transition-delay: 0.1s; }
  .hrb-reveal-delay-2 { transition-delay: 0.2s; }
  .hrb-reveal-delay-3 { transition-delay: 0.3s; }

  /* ============================================================
     MOBILE SECTION PADDING
  ============================================================ */
  @media (max-width: 767px) { :root { --section-py: 48px; } }


/* ============================================================
   STATUTORY CTA + GRAVITY FORM (match Attendance page)
============================================================ */
    .hrb-badge {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--primary); background: var(--primary-xlight);
      border-radius: var(--radius-full); padding: 6px 16px; margin-bottom: 16px;
    }
    .hrb-badge::before { content: ''; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; }
    .hrb-badge--light { background: rgba(255,255,255,0.12); color: white; border: 1px solid rgba(255,255,255,0.2); }
    .hrb-badge--light::before { background: #2DD4BF; }

    .hrb-demo-cta__layout { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; position: relative; z-index: 1; }
    @media (max-width: 767px) { .hrb-demo-cta__layout { gap: 28px; } }
    @media (min-width: 768px) and (max-width: 1023px) { .hrb-demo-cta__layout { grid-template-columns: 0.82fr 1.18fr; gap: 24px; } }
    @media (min-width: 1024px) { .hrb-demo-cta__layout { grid-template-columns: 0.8fr 1.2fr; gap: 32px; } }
    .hrb-demo-cta__right { width: 100%; max-width: none; justify-self: stretch; }
    .hrb-demo-cta__left h2 { font-size: 40px; font-weight: 700; color: white; line-height: 1.2; margin: 12px 0 16px; }
    @media (max-width: 767px) { .hrb-demo-cta__left h2 { font-size: 28px; } }
    .hrb-demo-cta__left p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 32px; }
    .hrb-demo-cta__trust { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
    .hrb-demo-cta__trust li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.8); }
    .hrb-demo-cta__contact { display: flex; flex-direction: column; gap: 6px; }
    .hrb-demo-cta__contact p { font-size: 14px; color: rgba(255,255,255,0.5); margin: 0; }
    .hrb-demo-cta__phone { display: inline-flex; align-items: center; gap: 8px; font-size: 18px; font-weight: 700; color: #2DD4BF; transition: color 0.2s; }
    .hrb-demo-cta__phone:hover { color: white; }
    /* Form inside demo CTA */
    .hrb-demo-form { background: white; border-radius: var(--radius-xl); padding: 40px 36px; box-shadow: var(--shadow-lg); }
    .hrb-demo-form h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
    .hrb-demo-form > p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
    .hrb-form__row { display: grid; gap: 16px; margin-bottom: 16px; }
    .hrb-form__row--2col { grid-template-columns: 1fr 1fr; }
    @media (max-width: 479px) { .hrb-form__row--2col { grid-template-columns: 1fr; } }
    .hrb-form__group { display: flex; flex-direction: column; gap: 6px; }
    .hrb-form__group label { font-size: 13px; font-weight: 600; color: var(--text); }
    .hrb-form__group input, .hrb-form__group select, .hrb-form__group textarea { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; color: var(--text); background: white; transition: border-color 0.2s, box-shadow 0.2s; outline: none; width: 100%; }
    .hrb-form__group input:focus, .hrb-form__group select:focus, .hrb-form__group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-xlight); }
    .hrb-form__group textarea { resize: vertical; min-height: 80px; }
    .hrb-form__field--error { border-color: #EF4444 !important; }
    .hrb-form__error { font-size: 12px; color: #EF4444; min-height: 16px; }
    .hrb-form__optional { font-weight: 400; color: var(--text-muted); }
    .hrb-form__privacy { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 10px; }
    .hrb-btn--full { width: 100%; justify-content: center; }

    /* ============================================================
       MOBILE PADDING (all actual section classes)
    ============================================================ */
    @media (max-width: 767px) {
      .hrb-features, .hrb-how, .hrb-compliance, .hrb-before-after,
      .hrb-testimonials, .hrb-faq, .hrb-demo-cta { padding: 48px 0; }
      .hrb-how__steps { grid-template-columns: 1fr; }
      .hrb-demo-form { padding: 24px 16px; }
    }

    /* ============================================================
       SCROLL ANIMATION UTILITY
    ============================================================ */
    .hrb-reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .hrb-reveal.hrb-visible { opacity: 1; transform: none; }
    .hrb-reveal-delay-1 { transition-delay: 0.1s; }
    .hrb-reveal-delay-2 { transition-delay: 0.2s; }
    .hrb-reveal-delay-3 { transition-delay: 0.3s; }
    .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); white-space: nowrap; border: 0; }

    /* ============================================================
       Attendance CTA Gravity Form: match Contact Us form design
    ============================================================ */
    .hrb-demo-form #hrb-contact-form-gf,
    .hrb-demo-form #hrb-contact-form-gf .gform_wrapper,
    .hrb-demo-form #hrb-contact-form-gf .gform_wrapper form {
      margin: 0 !important;
      padding: 0 !important;
      max-width: none !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .gform_heading,
    .hrb-demo-form #hrb-contact-form-gf .gform_description,
    .hrb-demo-form #hrb-contact-form-gf .gform_required_legend {
      display: none !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .gform_fields {
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) !important;
      gap: 18px !important;
      row-gap: 18px !important;
      margin: 0 !important;
    }

    @media (min-width: 768px) {
      .hrb-demo-form #hrb-contact-form-gf .gform_fields {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
      }

      .hrb-demo-form #hrb-contact-form-gf #field_1_6,
      .hrb-demo-form #hrb-contact-form-gf #field_1_7,
      .hrb-demo-form #hrb-contact-form-gf #field_1_9,
      .hrb-demo-form #hrb-contact-form-gf #field_1_25 {
        grid-column: 1 / -1 !important;
      }
    }

    .hrb-demo-form #hrb-contact-form-gf .gfield,
    .hrb-demo-form #hrb-contact-form-gf .gfield .ginput_container {
      margin: 0 !important;
      padding: 0 !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .gfield.gform_hidden,
    .hrb-demo-form #hrb-contact-form-gf .gfield--type-hidden,
    .hrb-demo-form #hrb-contact-form-gf .gfield_visibility_hidden,
    .hrb-demo-form #hrb-contact-form-gf .gfield--visibility-hidden {
      display: none !important;
      margin: 0 !important;
      padding: 0 !important;
      min-height: 0 !important;
      height: 0 !important;
      border: 0 !important;
      overflow: hidden !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .gfield--type-honeypot,
    .hrb-demo-form #hrb-contact-form-gf .gform_validation_container,
    .hrb-demo-form #hrb-contact-form-gf #field_1_26,
    .hrb-demo-form #hrb-contact-form-gf .gfield--type-honeypot * {
      position: absolute !important;
      left: -99999px !important;
      top: auto !important;
      width: 1px !important;
      height: 1px !important;
      overflow: hidden !important;
      opacity: 0 !important;
      visibility: hidden !important;
      pointer-events: none !important;
      margin: 0 !important;
      padding: 0 !important;
      border: 0 !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .gfield_label,
    .hrb-demo-form #hrb-contact-form-gf .gform-field-label {
      margin: 0 0 10px !important;
      color: #0f172a !important;
      font-size: 13px !important;
      font-weight: 600 !important;
      line-height: 1.35 !important;
      display: block !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .gfield_required,
    .hrb-demo-form #hrb-contact-form-gf .gfield_required_asterisk {
      color: #ef4444 !important;
      margin-left: 2px !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .gfield input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
    .hrb-demo-form #hrb-contact-form-gf .gfield select,
    .hrb-demo-form #hrb-contact-form-gf .gfield textarea,
    .hrb-demo-form #hrb-contact-form-gf .ginput_container input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
    .hrb-demo-form #hrb-contact-form-gf .ginput_container select,
    .hrb-demo-form #hrb-contact-form-gf .ginput_container textarea {
      width: 100% !important;
      min-height: 52px !important;
      padding: 0 16px !important;
      border: 1.5px solid #d7e1ec !important;
      border-radius: 12px !important;
      background: #ffffff !important;
      color: #24344d !important;
      box-shadow: none !important;
      outline: 0 !important;
      font-family: var(--font-body) !important;
      font-size: 15px !important;
      line-height: 1.45 !important;
      transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
      -webkit-appearance: none !important;
      appearance: none !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .gfield textarea,
    .hrb-demo-form #hrb-contact-form-gf .ginput_container textarea {
      min-height: 110px !important;
      height: 110px !important;
      padding: 14px 16px !important;
      resize: vertical !important;
      line-height: 1.6 !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .gfield input::placeholder,
    .hrb-demo-form #hrb-contact-form-gf .gfield textarea::placeholder {
      color: #8fa1bb !important;
      opacity: 1 !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .gfield input:focus,
    .hrb-demo-form #hrb-contact-form-gf .gfield select:focus,
    .hrb-demo-form #hrb-contact-form-gf .gfield textarea:focus {
      border-color: #14b8a6 !important;
      box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.12) !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .gfield select {
      padding-right: 44px !important;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
      background-repeat: no-repeat !important;
      background-position: right 14px center !important;
      background-size: 16px 16px !important;
      cursor: pointer !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .gfield_error input,
    .hrb-demo-form #hrb-contact-form-gf .gfield_error select,
    .hrb-demo-form #hrb-contact-form-gf .gfield_error textarea {
      border-color: #ef4444 !important;
      background: #ffffff !important;
      box-shadow: none !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .validation_message,
    .hrb-demo-form #hrb-contact-form-gf .gfield_validation_message,
    .hrb-demo-form #hrb-contact-form-gf .gfield_description.validation_message {
      margin: 8px 0 0 !important;
      padding: 0 !important;
      border: 0 !important;
      border-radius: 0 !important;
      background: transparent !important;
      color: #ef4444 !important;
      font-size: 13px !important;
      line-height: 1.35 !important;
      font-weight: 500 !important;
      box-shadow: none !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .gform_validation_errors,
    .hrb-demo-form #hrb-contact-form-gf .gform_submission_error {
      margin: 0 0 16px !important;
      padding: 14px !important;
      border: 1px solid #f4bcbc !important;
      border-radius: 12px !important;
      background: #fff3f3 !important;
      box-shadow: none !important;
      color: #ef4444 !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .gform_validation_errors > h2,
    .hrb-demo-form #hrb-contact-form-gf .gform_submission_error {
      margin: 0 !important;
      padding: 0 !important;
      border: 0 !important;
      background: transparent !important;
      color: #ef4444 !important;
      font-size: 14px !important;
      font-weight: 600 !important;
      line-height: 1.45 !important;
      box-shadow: none !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .gform_validation_errors .gform-icon,
    .hrb-demo-form #hrb-contact-form-gf .gform_validation_errors ol,
    .hrb-demo-form #hrb-contact-form-gf .gform_validation_errors ul {
      display: none !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .gfield--type-captcha .gfield_label,
    .hrb-demo-form #hrb-contact-form-gf .gfield--type-recaptcha .gfield_label,
    .hrb-demo-form #hrb-contact-form-gf .gfield--type-captcha .gform-field-label,
    .hrb-demo-form #hrb-contact-form-gf .gfield--type-recaptcha .gform-field-label {
      display: none !important;
      margin: 0 !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .gform_footer,
    .hrb-demo-form #hrb-contact-form-gf .gform_page_footer {
      margin: 16px 0 0 !important;
      padding: 0 !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .gform_footer .gform_button.button,
    .hrb-demo-form #hrb-contact-form-gf .gform_page_footer .gform_button.button,
    .hrb-demo-form #hrb-contact-form-gf .gform_footer input[type="submit"],
    .hrb-demo-form #hrb-contact-form-gf .gform_page_footer input[type="submit"],
    .hrb-demo-form #hrb-contact-form-gf .gform_footer button[type="submit"],
    .hrb-demo-form #hrb-contact-form-gf .gform_page_footer button[type="submit"] {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      width: 100% !important;
      min-height: 58px !important;
      margin: 0 !important;
      padding: 16px 24px !important;
      border: 0 !important;
      border-radius: 14px !important;
      background: #f59e0b !important;
      color: #0f172a !important;
      box-shadow: 0 8px 24px rgba(245, 158, 11, 0.22) !important;
      font-family: var(--font-display) !important;
      font-size: 17px !important;
      font-weight: 700 !important;
      line-height: 1.2 !important;
      text-transform: none !important;
      cursor: pointer !important;
      transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .gform_footer .gform_button.button:hover,
    .hrb-demo-form #hrb-contact-form-gf .gform_page_footer .gform_button.button:hover,
    .hrb-demo-form #hrb-contact-form-gf .gform_footer input[type="submit"]:hover,
    .hrb-demo-form #hrb-contact-form-gf .gform_page_footer input[type="submit"]:hover,
    .hrb-demo-form #hrb-contact-form-gf .gform_footer button[type="submit"]:hover,
    .hrb-demo-form #hrb-contact-form-gf .gform_page_footer button[type="submit"]:hover {
      background: #f3a915 !important;
      transform: translateY(-1px) !important;
      box-shadow: 0 12px 28px rgba(245, 158, 11, 0.28) !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .gform_wrapper,
    .hrb-demo-form #hrb-contact-form-gf .gform_body,
    .hrb-demo-form #hrb-contact-form-gf .gform_fields,
    .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field,
    .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone,
    .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti {
      overflow: visible !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field,
    .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone {
      position: relative !important;
      overflow: visible !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field {
      z-index: 20 !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti {
      width: 100% !important;
      display: block !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti input[type="tel"] {
      padding-left: 68px !important;
      padding-right: 12px !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__flag-container {
      z-index: 30 !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__selected-country {
      height: 100% !important;
      display: inline-flex !important;
      align-items: center !important;
      padding: 0 4px 0 7px !important;
      border: 0 !important;
      border-right: 1px solid #d5dfec !important;
      border-radius: 10px 0 0 10px !important;
      background: #fff !important;
      box-sizing: border-box !important;
      box-shadow: none !important;
      outline: 0 !important;
      -webkit-appearance: none !important;
      appearance: none !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__selected-country-primary {
      display: inline-flex !important;
      align-items: center !important;
      gap: 6px !important;
      padding-right: 0 !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__selected-country-primary .iti__flag,
    .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__country .iti__flag {
      zoom: 1.22 !important;
      transform: translateZ(0) !important;
      transform-origin: left center !important;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
      margin-right: 2px !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__selected-dial-code {
      color: #2d3d5a !important;
      font-size: 0.9rem !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__country-list {
      z-index: 9999 !important;
      top: calc(100% + 6px) !important;
      left: 0 !important;
      width: 100% !important;
      max-width: 100% !important;
      max-height: 240px !important;
      overflow-y: auto !important;
      overflow-x: hidden !important;
      border: 1px solid #d5dfec !important;
      border-radius: 10px !important;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12) !important;
      background: #fff !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__country {
      display: flex !important;
      align-items: center !important;
      gap: 12px !important;
      padding: 9px 10px !important;
      font-size: 0.9rem !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti__country.iti__highlight {
      background: #f3f7ff !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__country-container {
      left: 1px !important;
      top: 1px !important;
      bottom: 1px !important;
      width: 58px !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__selected-country {
      min-width: 58px !important;
      gap: 4px !important;
      padding-right: 2px !important;
    }

    @media (max-width: 575px) {
      .hrb-demo-form #hrb-contact-form-gf .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown input[type="tel"] {
        padding-left: 74px !important;
      }
    }

    /* Attendance: captcha polish + remove extra gap under message field */
    .hrb-demo-form #hrb-contact-form-gf #field_1_9 {
      margin-bottom: 0 !important;
      padding-bottom: 0 !important;
      min-height: 0 !important;
    }

    .hrb-demo-form #hrb-contact-form-gf #field_1_9 .ginput_container {
      margin-bottom: 0 !important;
      padding-bottom: 0 !important;
      min-height: 0 !important;
    }

    .hrb-demo-form #hrb-contact-form-gf #field_1_9 textarea {
      min-height: 84px !important;
      height: 84px !important;
    }

    .hrb-demo-form #hrb-contact-form-gf #field_1_25 {
      margin-top: 0 !important;
      margin-bottom: 10px !important;
      padding: 0 !important;
    }

    .hrb-demo-form #hrb-contact-form-gf #field_1_25 .gfield_label,
    .hrb-demo-form #hrb-contact-form-gf #field_1_25 .gform-field-label {
      display: none !important;
      margin: 0 !important;
    }

    .hrb-demo-form #hrb-contact-form-gf #field_1_25 .ginput_container,
    .hrb-demo-form #hrb-contact-form-gf #field_1_25 .ginput_recaptcha {
      min-height: 74px !important;
      display: flex !important;
      align-items: flex-start !important;
      justify-content: flex-start !important;
      margin: 0 !important;
    }

    .hrb-demo-form #hrb-contact-form-gf #field_1_25 .grecaptcha-badge {
      position: static !important;
      inset: auto !important;
      transform: none !important;
      box-shadow: none !important;
      margin: 0 !important;
      max-width: 100% !important;
    }

    .hrb-demo-form #hrb-contact-form-gf #field_1_25 .grecaptcha-badge iframe {
      width: 256px !important;
      max-width: 100% !important;
      height: 60px !important;
      border-radius: 8px !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .gfield--type-captcha .validation_message,
    .hrb-demo-form #hrb-contact-form-gf .gfield--type-recaptcha .validation_message {
      margin-top: 8px !important;
    }

    .hrb-demo-form #hrb-contact-form-gf .gform_footer,
    .hrb-demo-form #hrb-contact-form-gf .gform_page_footer {
      margin-top: 8px !important;
    }

    @media (max-width: 575px) {
      .hrb-demo-form #hrb-contact-form-gf #field_1_25 .grecaptcha-badge {
        transform: scale(0.92) !important;
        transform-origin: left top !important;
      }
    }