/* ============================================================
       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; }

    /* ============================================================
       ATTENDANCE PAGE â€” PAGE-SPECIFIC STYLES ONLY
    ============================================================ */

    /* ============================================================
       HERO â€” COMPACT PRODUCT PAGE HERO
    ============================================================ */
    .hrb-att-hero {
      min-height: 100vh; display: flex; align-items: center;
      background: linear-gradient(135deg, #0F172A 0%, #1E293B 55%, #0A3B3F 100%);
      position: relative; overflow: hidden; padding: 120px 0 80px;
    }
    .hrb-att-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: 48px 48px; pointer-events: none;
    }
    .hrb-att-hero::after {
      content: ''; position: absolute;
      top: -20%; right: -10%; width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(10,112,117,0.18) 0%, transparent 65%);
      pointer-events: none;
    }
    .hrb-att-hero__inner {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
    }
    @media (min-width: 1024px) { .hrb-att-hero__inner { grid-template-columns: 1fr 1fr; gap: 64px; } }
    .hrb-att-hero__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-full); padding: 6px 16px;
      font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85);
      margin-bottom: 24px;
    }
    .hrb-att-hero__badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #2DD4BF; flex-shrink: 0; animation: hrb-pulse 2s infinite; }
    @keyframes hrb-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.85)} }
    .hrb-att-hero__title {
      font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; color: white;
      line-height: 1.12; margin-bottom: 20px; letter-spacing: -0.02em;
    }
    .hrb-att-hero__title span { color: var(--accent); }
    .hrb-att-hero__desc { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
    .hrb-att-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
    .hrb-att-hero__trust { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    @media (min-width: 480px) { .hrb-att-hero__trust { grid-template-columns: repeat(4, auto); display: flex; flex-wrap: wrap; } }
    .hrb-att-hero__trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }
    .hrb-att-hero__trust-item svg { color: #2DD4BF; flex-shrink: 0; }

    /* Hero visual */
    .hrb-att-hero__visual { position: relative; display: flex; justify-content: center; }
    .hrb-att-hero__dashboard {
      width: 100%; max-width: 480px; background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-xl);
      padding: 24px; backdrop-filter: blur(8px); position: relative;
    }
    .hrb-att-hero__dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
    .hrb-att-hero__dash-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; }
    .hrb-att-hero__dash-live { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #2DD4BF; font-weight: 600; }
    .hrb-att-hero__dash-live::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #2DD4BF; animation: hrb-pulse 1.5s infinite; }
    .hrb-att-hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
    .hrb-att-hero__stat-card { background: rgba(255,255,255,0.07); border-radius: var(--radius-md); padding: 16px 12px; text-align: center; }
    .hrb-att-hero__stat-num { font-size: 28px; font-weight: 800; color: white; line-height: 1; margin-bottom: 4px; }
    .hrb-att-hero__stat-label { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 500; }
    .hrb-att-hero__stat-card--green .hrb-att-hero__stat-num { color: #2DD4BF; }
    .hrb-att-hero__stat-card--amber .hrb-att-hero__stat-num { color: #FBBF24; }
    .hrb-att-hero__stat-card--red .hrb-att-hero__stat-num { color: #F87171; }
    .hrb-att-hero__bar-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
    .hrb-att-hero__bar-track { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; margin-bottom: 16px; }
    .hrb-att-hero__bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, #0A7075, #2DD4BF); width: 84%; }
    .hrb-att-hero__chips { display: flex; flex-wrap: wrap; gap: 8px; }
    .hrb-att-hero__chip { font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: var(--radius-full); }
    .hrb-att-hero__chip--green { background: rgba(45,212,191,0.15); color: #2DD4BF; }
    .hrb-att-hero__chip--amber { background: rgba(251,191,36,0.15); color: #FBBF24; }
    .hrb-att-hero__chip--blue { background: rgba(96,165,250,0.15); color: #93C5FD; }
    /* Floating cards */
    .hrb-att-hero__float { position: absolute; background: white; border-radius: var(--radius-md); padding: 10px 16px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; white-space: nowrap; }
    .hrb-att-hero__float-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
    .hrb-att-hero__float-text { font-size: 13px; font-weight: 600; color: var(--dark); }
    .hrb-att-hero__float--1 { top: -16px; left: -16px; }
    .hrb-att-hero__float--2 { bottom: 40px; right: -16px; }
    @media (max-width: 1023px) { .hrb-att-hero__float--1 { top: -12px; left: 8px; } .hrb-att-hero__float--2 { bottom: 20px; right: 8px; } }

    /* ============================================================
       FEATURE GRID
    ============================================================ */
    .hrb-att-features { padding: var(--section-py) 0; background: var(--bg-alt); }
    .hrb-att-features__header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
    .hrb-att-features__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
    @media (min-width: 640px)  { .hrb-att-features__grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .hrb-att-features__grid { grid-template-columns: repeat(4, 1fr); } }
    .hrb-feat-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
    .hrb-feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
    .hrb-feat-card__icon { font-size: 28px; margin-bottom: 16px; }
    .hrb-feat-card__title { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
    .hrb-feat-card__desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

    /* ============================================================
       HOW IT WORKS â€” 3-STEP (dark background)
    ============================================================ */
    .hrb-how-it-works {
      padding: var(--section-py) 0;
      background: linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #0A3B3F 100%);
      position: relative; overflow: hidden;
    }
    .hrb-how-it-works::before {
      content: ''; position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 48px 48px; pointer-events: none;
    }
    .hrb-how-it-works__header { text-align: center; max-width: 640px; margin: 0 auto 64px; position: relative; z-index: 1; }
    .hrb-how-it-works__header .hrb-section-badge { background: rgba(255,255,255,0.1); color: #2DD4BF; border: 1px solid rgba(255,255,255,0.15); }
    .hrb-how-it-works__header .hrb-section-badge::before { background: #2DD4BF; }
    .hrb-how-it-works__header h2 { color: white; font-size: 40px; }
    @media (max-width: 767px) { .hrb-how-it-works__header h2 { font-size: 28px; } }
    .hrb-how-it-works__header p { color: rgba(255,255,255,0.7); }
    .hrb-how-it-works__steps { display: grid; grid-template-columns: 1fr; gap: 32px; position: relative; z-index: 1; }
    @media (min-width: 768px) { .hrb-how-it-works__steps { grid-template-columns: repeat(3, 1fr); gap: 0; } }
    .hrb-how-it-works__steps::before { content: ''; display: none; }
    @media (min-width: 768px) {
      .hrb-how-it-works__steps::before { display: block; position: absolute; top: 36px; left: calc(16.66% + 20px); right: calc(16.66% + 20px); height: 2px; background: linear-gradient(90deg, rgba(45,212,191,0.2), rgba(45,212,191,0.6), rgba(45,212,191,0.2)); z-index: 0; }
    }
    .hrb-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 24px; position: relative; z-index: 1; }
    .hrb-step__number { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-light), var(--primary)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 28px; font-weight: 700; color: white; margin-bottom: 24px; box-shadow: 0 8px 30px rgba(10,112,117,0.4); flex-shrink: 0; }
    .hrb-step__title { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: white; margin-bottom: 12px; line-height: 1.3; }
    .hrb-step__desc { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; }
    .hrb-step__tag { display: inline-block; margin-top: 16px; background: rgba(45,212,191,0.15); color: #2DD4BF; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 12px; border-radius: var(--radius-full); border: 1px solid rgba(45,212,191,0.3); }
    .hrb-how-it-works__cta { text-align: center; margin-top: 56px; position: relative; z-index: 1; }

    /* ============================================================
       KARNATAKA COMPLIANCE SECTION
    ============================================================ */
    .hrb-karnataka-compliance { padding: var(--section-py) 0; background: var(--bg); }
    .hrb-karnataka-compliance__header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
    .hrb-karnataka-compliance__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
    @media (min-width: 640px)  { .hrb-karnataka-compliance__grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .hrb-karnataka-compliance__grid { grid-template-columns: repeat(4, 1fr); } }
    .hrb-compliance-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; position: relative; overflow: hidden; }
    .hrb-compliance-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--primary-light)); }
    .hrb-compliance-card__icon { font-size: 28px; margin-bottom: 14px; }
    .hrb-compliance-card__title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
    .hrb-compliance-card__rate { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 12px; line-height: 1.2; }
    .hrb-compliance-card__desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
    .hrb-compliance-card__tag { display: inline-block; margin-top: 14px; background: rgba(16,185,129,0.1); color: var(--success); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 3px 10px; border-radius: var(--radius-full); }
    .hrb-karnataka-compliance__note { margin-top: 40px; padding: 20px 24px; background: var(--primary-xlight); border-radius: var(--radius-lg); border-left: 4px solid var(--primary); font-size: 14px; color: var(--text-muted); line-height: 1.7; }
    .hrb-karnataka-compliance__note strong { color: var(--primary); }

    /* ============================================================
       BEFORE VS AFTER COMPARISON (teal gradient)
    ============================================================ */
    .hrb-before-after {
      padding: 80px 0;
      background: linear-gradient(135deg, #0D9488 0%, #0A7075 50%, #065F46 100%);
      position: relative; overflow: hidden;
    }
    .hrb-before-after::before {
      content: ''; position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 48px 48px; pointer-events: none;
    }
    .hrb-before-after__header { text-align: center; margin-bottom: 48px; position: relative; z-index: 1; }
    .hrb-before-after__header .hrb-section-badge { background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.2); margin-bottom: 14px; }
    .hrb-before-after__header .hrb-section-badge::before { background: white; }
    .hrb-before-after__header h2 { font-size: 40px; font-weight: 700; color: white; margin-bottom: 14px; }
    @media (max-width: 767px) { .hrb-before-after__header h2 { font-size: 28px; } }
    .hrb-before-after__header p { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; }
    .hrb-comparison-table { position: relative; z-index: 1; width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.15); background: var(--white); }
    .hrb-comparison-table thead tr th { padding: 20px 28px; text-align: left; font-family: var(--font-display); font-size: 15px; font-weight: 700; }
    .hrb-comparison-table thead tr th:first-child { background: #F8FAFC; color: var(--text-muted); border-right: 1px solid var(--border); width: 40%; }
    .hrb-comparison-table thead tr th.col-before { background: #FEF2F2; color: #DC2626; border-right: 1px solid var(--border); width: 30%; }
    .hrb-comparison-table thead tr th.col-after { background: #F0FDF4; color: #16A34A; width: 30%; }
    .hrb-comparison-table tbody tr td { padding: 18px 28px; font-size: 14px; vertical-align: middle; color: var(--text-muted); line-height: 1.55; border-top: 1px solid var(--border); }
    .hrb-comparison-table tbody tr td:first-child { font-weight: 600; color: var(--text-dark); border-right: 1px solid var(--border); background: #F8FAFC; }
    .hrb-comparison-table tbody tr td.col-before { border-right: 1px solid var(--border); background: #FFFAFA; }
    .hrb-comparison-table tbody tr td.col-after { background: #F9FFFE; }
    .hrb-neg { display: flex; align-items: flex-start; gap: 8px; }
    .hrb-neg::before { content: '\2717'; color: #DC2626; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
    .hrb-pos { display: flex; align-items: flex-start; gap: 8px; }
    .hrb-pos::before { content: '\2713'; color: #16A34A; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
    .hrb-comparison-table tfoot td { padding: 20px 28px; font-size: 13px; border-top: 2px solid var(--border); }
    .hrb-comparison-table tfoot td:first-child { border-right: 1px solid var(--border); background: #F8FAFC; color: var(--text-muted); font-weight: 600; }
    .hrb-comparison-table tfoot td.col-before { border-right: 1px solid var(--border); background: #FEF2F2; color: #DC2626; font-weight: 700; }
    .hrb-comparison-table tfoot td.col-after { background: #F0FDF4; color: #16A34A; font-weight: 700; }
    @media (max-width: 767px) {
      .hrb-comparison-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
      .hrb-comparison-table table { min-width: 560px; }
      .hrb-before-after__header h2 { font-size: 26px; }
    }

    /* ============================================================
       FAQ ACCORDION
    ============================================================ */
    .hrb-faq { padding: 80px 0; background: var(--bg); }
    .hrb-faq__header { text-align: center; margin-bottom: 48px; }
    .hrb-faq__header .hrb-section-badge { margin-bottom: 14px; }
    .hrb-faq__header h2 { font-size: 40px; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
    @media (max-width: 767px) { .hrb-faq__header h2 { font-size: 28px; } }
    .hrb-faq__header p { font-size: 17px; color: var(--text-muted); max-width: 540px; margin: 0 auto; }
    .hrb-faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .hrb-faq__item { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--white); overflow: hidden; transition: box-shadow 0.2s ease; }
    .hrb-faq__item.is-open { box-shadow: 0 4px 20px rgba(10,112,117,0.1); border-color: var(--primary); }
    .hrb-faq__question { width: 100%; background: none; border: none; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; text-align: left; }
    .hrb-faq__question span { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--text-dark); line-height: 1.4; }
    .hrb-faq__icon { width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; background: var(--primary-xlight); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; transition: transform 0.25s ease, background 0.2s ease; line-height: 1; }
    .hrb-faq__item.is-open .hrb-faq__icon { transform: rotate(45deg); background: var(--primary); color: white; }
    .hrb-faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s ease; padding: 0 24px; }
    .hrb-faq__item.is-open .hrb-faq__answer { max-height: 400px; padding: 0 24px 22px; }
    .hrb-faq__answer p { font-size: 15px; color: var(--text-muted); line-height: 1.75; }
    .hrb-faq__answer a { color: var(--primary); text-decoration: underline; }
    @media (max-width: 767px) { .hrb-faq__header h2 { font-size: 26px; } .hrb-faq__question span { font-size: 15px; } }

    /* ============================================================
       MOBILE SECTION PADDING OVERRIDE
    ============================================================ */
    @media (max-width: 767px) {
      .hrb-att-features, .hrb-how-it-works, .hrb-karnataka-compliance,
      .hrb-before-after, .hrb-testimonials, .hrb-faq, .hrb-final-cta { padding: 48px 0; }
    }

    /* ============================================================
       SHARED SECTION HEADER & BADGE (used across all sections)
    ============================================================ */
    .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-section-header--light h2 { color: white; }
    .hrb-section-header--light p { color: rgba(255,255,255,0.75); }
    .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; }

    /* ============================================================
       TRUST BAR STATS & LOGOS (actual HTML classes)
    ============================================================ */
    .hrb-trust-bar { padding: 48px 0; background: var(--bg); border-bottom: 1px solid var(--border); }
    .hrb-trust-bar__heading { text-align: center; font-size: 40px; font-weight: 700; color: var(--dark); margin-bottom: 40px; letter-spacing: -0.01em; line-height: 1.3; }
    @media (max-width: 767px) { .hrb-trust-bar__heading { font-size: 28px; } }
    .hrb-trust-bar__marquee { margin-bottom: 26px; }
    .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: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px 40px; }
    @media (max-width: 767px) { .hrb-trust-bar__marquee { margin-bottom: 20px; } }
    .hrb-trust-stat { text-align: center; }
    .hrb-trust-stat strong { display: block; font-size: 22px; font-weight: 800; color: var(--primary); }
    .hrb-trust-stat span { font-size: 13px; color: var(--text-muted); }
    .hrb-trust-stat__divider { width: 1px; height: 40px; background: var(--border); }
    @media (max-width: 639px) { .hrb-trust-stat__divider { display: none; } }

    /* ============================================================
       FEATURES SECTION (Section 5)
    ============================================================ */
    .hrb-features { padding: var(--section-py) 0; background: var(--bg-alt); }
    .hrb-features__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
    @media (min-width: 640px)  { .hrb-features__grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .hrb-features__grid { grid-template-columns: repeat(4, 1fr); } }
    .hrb-feature-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; display: flex; flex-direction: column; gap: 12px; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
    .hrb-feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
    .hrb-feature-card__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-feature-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); line-height: 1.3; }
    .hrb-feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
    .hrb-feature-card__list { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
    .hrb-feature-card__list li { font-size: 13px; color: var(--text-muted); padding-left: 16px; position: relative; }
    .hrb-feature-card__list li::before { content: '\2713'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

    /* ============================================================
       HOW IT WORKS SECTION (Section 6 â€” dark bg)
    ============================================================ */
    .hrb-how { padding: var(--section-py) 0; background: linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #0A3B3F 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: 48px 48px; pointer-events: none; }
    .hrb-how__steps { display: grid; grid-template-columns: 1fr; gap: 32px; position: relative; z-index: 1; margin-bottom: 0; }
    @media (min-width: 768px) { .hrb-how__steps { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .hrb-how__steps { grid-template-columns: repeat(4, 1fr); } }
    .hrb-how__step { display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 1; }
    .hrb-how__step-number { font-size: 48px; font-weight: 800; color: rgba(45,212,191,0.2); line-height: 1; }
    .hrb-how__step-content { display: flex; flex-direction: column; gap: 10px; }
    .hrb-how__step-icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: #2DD4BF; }
    .hrb-how__step h3 { font-size: 18px; font-weight: 700; color: white; line-height: 1.3; }
    .hrb-how__step p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; }
    .hrb-how__step-detail { font-size: 12px; font-weight: 600; color: #2DD4BF; padding: 4px 12px; background: rgba(45,212,191,0.1); border: 1px solid rgba(45,212,191,0.2); border-radius: var(--radius-full); display: inline-block; margin-top: 4px; }
    .hrb-how__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 56px; position: relative; z-index: 1; }
    .hrb-btn--accent { background: var(--accent); color: var(--dark); border-color: var(--accent); }
    .hrb-btn--accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); }
    .hrb-btn--outline-light { background: transparent; color: white; border-color: rgba(255,255,255,0.5); }
    .hrb-btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: white; color: white; }

    /* ============================================================
       COMPLIANCE SECTION (Section 7)
    ============================================================ */
    .hrb-compliance { padding: var(--section-py) 0; background: white; }
    .hrb-compliance__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
    @media (min-width: 640px)  { .hrb-compliance__grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .hrb-compliance__grid { grid-template-columns: repeat(3, 1fr); } }
    .hrb-compliance__card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; display: flex; gap: 16px; transition: transform 0.25s, box-shadow 0.25s; }
    .hrb-compliance__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
    .hrb-compliance__icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .hrb-compliance__icon--teal { background: var(--primary-xlight); color: var(--primary); }
    .hrb-compliance__icon--amber { background: #FFFBEB; color: #D97706; }
    .hrb-compliance__body { display: flex; flex-direction: column; gap: 8px; }
    .hrb-compliance__body h3 { font-size: 16px; font-weight: 700; color: var(--dark); line-height: 1.3; }
    .hrb-compliance__rule { font-size: 13px; font-weight: 600; color: var(--primary); background: var(--primary-xlight); padding: 4px 10px; border-radius: var(--radius-sm); display: inline-block; }
    .hrb-compliance__body p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
    .hrb-compliance__disclaimer { margin-top: 32px; padding: 16px 20px; background: var(--bg-alt); border-radius: var(--radius-md); border-left: 3px solid var(--border-dark); display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-muted); }

    /* ============================================================
       BEFORE/AFTER TABLE (Section 8) â€” actual HTML classes
    ============================================================ */
    .hrb-ba-table-wrap { position: relative; z-index: 1; overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); box-shadow: 0 4px 32px rgba(0,0,0,0.15); }
    .hrb-ba-table { width: 100%; border-collapse: separate; border-spacing: 0; background: white; min-width: 560px; }
    .hrb-ba-table th, .hrb-ba-table td { padding: 16px 24px; text-align: left; }
    .hrb-ba-table__col-label { background: #F8FAFC; color: var(--text-muted); font-size: 14px; font-weight: 700; width: 34%; border-right: 1px solid var(--border); }
    .hrb-ba-table__col-before { background: #FEF2F2; width: 33%; border-right: 1px solid var(--border); }
    .hrb-ba-table__col-after { background: #F0FDF4; width: 33%; }
    .hrb-ba-badge { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 12px; border-radius: var(--radius-full); }
    .hrb-ba-badge--before { background: #FEE2E2; color: #DC2626; }
    .hrb-ba-badge--after { background: #DCFCE7; color: #16A34A; }
    .hrb-ba-table__label { font-size: 14px; font-weight: 600; color: var(--dark); background: #F8FAFC; border-right: 1px solid var(--border); border-top: 1px solid var(--border); vertical-align: middle; }
    .hrb-ba-table__before { font-size: 14px; color: #6B7280; background: #FFFAFA; border-right: 1px solid var(--border); border-top: 1px solid var(--border); vertical-align: middle; }
    .hrb-ba-table__after { font-size: 14px; color: #374151; background: #F9FFFE; border-top: 1px solid var(--border); vertical-align: middle; }
    .hrb-ba-table__before svg, .hrb-ba-table__after svg { display: inline; vertical-align: middle; margin-right: 6px; flex-shrink: 0; }
    .hrb-ba-cta { text-align: center; margin-top: 40px; position: relative; z-index: 1; }
    .hrb-btn--white { background: white; color: var(--primary); border-color: white; }
    .hrb-btn--white:hover { background: var(--primary-xlight); color: var(--primary); transform: translateY(-2px); }

    /* ============================================================
       TESTIMONIALS â€” card elements (quote, author)
    ============================================================ */
    .hrb-tcard__quote { font-size: 15px; color: var(--text); line-height: 1.75; font-style: italic; }
    .hrb-tcard__info strong { display: block; font-size: 15px; font-weight: 700; color: var(--dark); }
    .hrb-tcard__info span { 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 (actual classes used)
    ============================================================ */
    .hrb-faq__item--open .hrb-faq__answer { max-height: 500px; padding: 0 24px 22px; }
    .hrb-faq__item--open .hrb-faq__icon { transform: rotate(180deg); }
    .hrb-faq__item--open { border-color: var(--primary); box-shadow: 0 4px 20px rgba(10,112,117,0.1); }

    /* ============================================================
       DEMO CTA SECTION (Section 11)
    ============================================================ */
    .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__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;
      }
    }