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

    /* ============================================================
       PERFORMANCE PAGE â€” PAGE-SPECIFIC STYLES ONLY
    ============================================================ */

    /* ============================================================
       HERO â€” Performance Management
    ============================================================ */
    .hrb-pm-hero {
      min-height: 100vh; display: flex; align-items: center;
      background: linear-gradient(135deg, #0F172A 0%, #1E293B 55%, #0D3B36 100%);
      position: relative; overflow: hidden; padding: 120px 0 80px;
    }
    .hrb-pm-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-pm-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-pm-hero__inner {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
    }
    @media (min-width: 1024px) { .hrb-pm-hero__inner { grid-template-columns: 1fr 1fr; gap: 64px; } }
    .hrb-pm-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-pm-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-pm-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-pm-hero__title span { color: var(--accent); }
    .hrb-pm-hero__desc { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
    .hrb-pm-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
    .hrb-pm-hero__trust { display: flex; flex-wrap: wrap; gap: 12px 24px; }
    .hrb-pm-hero__trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }
    .hrb-pm-hero__trust-item svg { color: #2DD4BF; flex-shrink: 0; }

    /* Hero visual â€” appraisal dashboard card */
    .hrb-pm-hero__visual { position: relative; display: flex; justify-content: center; align-items: flex-start; }
    .hrb-pm-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);
    }
    .hrb-pm-hero__dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
    .hrb-pm-hero__dash-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; }
    .hrb-pm-hero__dash-status { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #2DD4BF; font-weight: 600; }
    .hrb-pm-hero__dash-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #2DD4BF; animation: hrb-pulse 1.5s infinite; }
    .hrb-pm-hero__employee { background: rgba(255,255,255,0.07); border-radius: var(--radius-md); padding: 16px; margin-bottom: 16px; }
    .hrb-pm-hero__emp-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
    .hrb-pm-hero__emp-info { display: flex; align-items: center; gap: 10px; }
    .hrb-pm-hero__emp-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #2DD4BF, var(--primary)); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: white; flex-shrink: 0; }
    .hrb-pm-hero__emp-name { font-size: 14px; font-weight: 600; color: white; }
    .hrb-pm-hero__emp-role { font-size: 12px; color: rgba(255,255,255,0.5); }
    .hrb-pm-hero__emp-score { text-align: right; }
    .hrb-pm-hero__emp-score strong { display: block; font-size: 22px; font-weight: 800; color: #2DD4BF; line-height: 1; }
    .hrb-pm-hero__emp-score span { font-size: 11px; color: rgba(255,255,255,0.4); }
    .hrb-pm-hero__ratings { display: flex; flex-direction: column; gap: 10px; }
    .hrb-pm-hero__rating-row { display: flex; align-items: center; gap: 10px; }
    .hrb-pm-hero__rating-label { font-size: 12px; color: rgba(255,255,255,0.55); width: 60px; flex-shrink: 0; }
    .hrb-pm-hero__rating-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.1); border-radius: var(--radius-full); overflow: hidden; }
    .hrb-pm-hero__rating-fill { height: 100%; border-radius: var(--radius-full); background: linear-gradient(90deg, #2DD4BF, var(--primary-light)); }
    .hrb-pm-hero__rating-val { font-size: 12px; font-weight: 700; color: white; width: 28px; text-align: right; flex-shrink: 0; }
    .hrb-pm-hero__dash-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
    .hrb-pm-hero__dash-stat { text-align: center; }
    .hrb-pm-hero__dash-stat strong { display: block; font-size: 18px; font-weight: 800; color: #2DD4BF; }
    .hrb-pm-hero__dash-stat span { font-size: 11px; color: rgba(255,255,255,0.45); }
    /* Floating cards */
    .hrb-pm-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: 8px; white-space: nowrap; z-index: 2; }
    .hrb-pm-hero__float-icon { font-size: 16px; }
    .hrb-pm-hero__float-text { font-size: 13px; font-weight: 600; color: var(--dark); }
    .hrb-pm-hero__float--1 { top: -16px; left: -8px; }
    .hrb-pm-hero__float--2 { bottom: 32px; right: -8px; }
    @media (max-width: 1023px) { .hrb-pm-hero__float--1 { top: -12px; left: 12px; } .hrb-pm-hero__float--2 { bottom: 16px; right: 12px; } }

    /* ============================================================
       TRUST BAR
    ============================================================ */
    .hrb-trust-bar { padding: 48px 0; background: var(--bg); border-bottom: 1px solid var(--border); }
    .hrb-trust-bar__heading { text-align: center; font-size: 40px; font-weight: 700; color: var(--dark); margin-bottom: 40px; letter-spacing: -0.01em; line-height: 1.3; }
    @media (max-width: 767px) { .hrb-trust-bar__heading { font-size: 28px; } }
    .hrb-trust-bar__logo-item { background: none; border: none; border-radius: 0; min-width: 0; padding: 0; height: auto; box-shadow: none; }
    .hrb-trust-logo { display: none; }
    .hrb-trust-bar__stats { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px 40px; }
    .hrb-trust-stat { text-align: center; }
    .hrb-trust-stat strong { display: block; font-size: 24px; font-weight: 800; color: var(--primary); line-height: 1.1; }
    .hrb-trust-stat span { font-size: 13px; color: var(--text-muted); }
    .hrb-trust-stat__divider { width: 1px; height: 40px; background: var(--border-dark); }
    @media (max-width: 639px) { .hrb-trust-stat__divider { display: none; } }

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

    /* ============================================================
       HOW IT WORKS â€” dark background, 3 steps
    ============================================================ */
    .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: 40px; position: relative; z-index: 1; }
    @media (min-width: 768px) {
      .hrb-how__steps { grid-template-columns: repeat(3, 1fr); gap: 0; }
      .hrb-how__steps::before { content: ''; 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-how__step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 24px; position: relative; z-index: 1; }
    .hrb-how__step-num { 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-size: 28px; font-weight: 800; color: white; margin-bottom: 24px; box-shadow: 0 8px 30px rgba(10,112,117,0.4); flex-shrink: 0; }
    .hrb-how__step h3 { font-size: 20px; font-weight: 700; color: white; margin-bottom: 12px; line-height: 1.3; }
    .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; 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__cta { text-align: center; margin-top: 56px; position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

    /* ============================================================
       BANGALORE CONTEXT â€” white, 2-col
    ============================================================ */
    .hrb-context { padding: var(--section-py) 0; background: white; }
    .hrb-context__inner { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
    @media (min-width: 1024px) { .hrb-context__inner { grid-template-columns: 1fr 1fr; gap: 80px; } }
    .hrb-context__copy h2 { font-size: 40px; font-weight: 700; color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
    @media (max-width: 767px) { .hrb-context__copy h2 { font-size: 28px; } }
    .hrb-context__copy p { font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
    .hrb-context__attrition { display: inline-flex; align-items: baseline; gap: 8px; background: var(--accent-light); border: 1px solid rgba(255,107,43,0.2); border-radius: var(--radius-md); padding: 12px 20px; margin-bottom: 20px; }
    .hrb-context__attrition strong { font-size: 32px; font-weight: 800; color: var(--accent); line-height: 1; }
    .hrb-context__attrition span { font-size: 14px; color: var(--accent-dark); font-weight: 600; }
    .hrb-context__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .hrb-context__stat { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; text-align: center; }
    .hrb-context__stat strong { display: block; font-size: 28px; font-weight: 800; color: var(--primary); line-height: 1.1; margin-bottom: 4px; }
    .hrb-context__stat span { font-size: 13px; color: var(--text-muted); line-height: 1.4; }
    .hrb-context__callout { background: linear-gradient(135deg, var(--primary-xlight), #F0FDFA); border: 1px solid rgba(10,112,117,0.2); border-radius: var(--radius-lg); padding: 28px; }
    .hrb-context__callout h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
    .hrb-context__callout p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
    .hrb-context__callout-list { display: flex; flex-direction: column; gap: 10px; }
    .hrb-context__callout-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-muted); }
    .hrb-context__callout-list li::before { content: '\2713'; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

    /* New context layout */
    .hrb-context__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 40px; }
    @media (min-width: 768px) { .hrb-context__cards { grid-template-columns: repeat(4, 1fr); } }
    .hrb-context__card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; }
    .hrb-context__card-stat { font-size: 36px; font-weight: 800; color: var(--primary); line-height: 1.1; margin-bottom: 8px; }
    .hrb-context__card-label { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
    .hrb-context__highlight { background: linear-gradient(135deg, #0D9488, #065F46); border: none; border-radius: var(--radius-lg); padding: 40px 36px; max-width: 720px; margin: 0 auto; text-align: center; }
    .hrb-context__highlight h3 { font-size: 22px; font-weight: 700; color: #ffffff; margin-bottom: 12px; }
    .hrb-context__highlight p { font-size: 16px; color: rgba(255,255,255,0.80); line-height: 1.7; margin-bottom: 20px; }
    .hrb-context__highlight-list { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: center; list-style: none; padding: 0; margin-bottom: 28px; }
    .hrb-context__highlight-list li { font-size: 14px; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 6px; }
    .hrb-context__highlight-list li::before { content: '\2713'; color: #2DD4BF; font-weight: 700; }
    .hrb-context__highlight .hrb-btn--primary { background: #ffffff; color: var(--primary); border: none; display: inline-flex; align-items: center; justify-content: center; }
    .hrb-context__highlight .hrb-btn--primary:hover { background: #F0FDFA; }

    /* ============================================================
       COMPARISON â€” teal gradient, card pairs
    ============================================================ */
    .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__grid { display: grid; grid-template-columns: 1fr; gap: 16px; position: relative; z-index: 1; }
    @media (min-width: 768px) { .hrb-compare__grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
    .hrb-compare__card { border-radius: var(--radius-lg); padding: 24px; display: flex; align-items: center; gap: 20px; }
    .hrb-compare__card--before { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); }
    .hrb-compare__card--after  { background: white; }
    .hrb-compare__icon { font-size: 28px; flex-shrink: 0; width: 52px; text-align: center; }
    .hrb-compare__body { flex: 1; }
    .hrb-compare__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
    .hrb-compare__card--before .hrb-compare__label { color: rgba(255,255,255,0.5); }
    .hrb-compare__card--after  .hrb-compare__label { color: var(--primary); }
    .hrb-compare__value { font-size: 16px; font-weight: 700; line-height: 1.3; }
    .hrb-compare__card--before .hrb-compare__value { color: rgba(255,255,255,0.85); }
    .hrb-compare__card--after  .hrb-compare__value { color: var(--dark); }
    .hrb-compare__cta { text-align: center; margin-top: 40px; position: relative; z-index: 1; }

    /* ============================================================
       TESTIMONIALS â€” 3-card grid
    ============================================================ */
    .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; }
    .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: 18px; font-weight: 700; color: white; }
    .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
    ============================================================ */
    .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__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-size: 16px; font-weight: 600; color: var(--dark); line-height: 1.4; font-family: 'Plus Jakarta Sans', sans-serif; }
    .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; transition: transform 0.25s, background 0.2s; }
    .hrb-faq__item--open .hrb-faq__icon { transform: rotate(180deg); background: var(--primary); color: white; }
    .hrb-faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; padding: 0 24px; }
    .hrb-faq__item--open .hrb-faq__answer { max-height: 500px; padding: 0 24px 22px; }
    .hrb-faq__answer 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__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; }
    .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__card-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__layout { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: start; position: relative; z-index: 1; }
    @media (min-width: 1024px) { .hrb-demo-cta__layout { grid-template-columns: 1fr 1fr; gap: 80px; } }
    .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 p { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
    .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; }
    .hrb-demo-form { background: white; border-radius: var(--radius-xl); padding: 40px 36px; box-shadow: var(--shadow-lg); }
    @media (max-width: 479px) { .hrb-demo-form { padding: 28px 20px; } }
    .hrb-demo-form 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; }

    /* ============================================================
       FOOTER
    ============================================================ */
    .hrb-footer { background: var(--dark); color: rgba(255,255,255,0.75); }
    .hrb-footer__top { padding: 72px 0 48px; }
    .hrb-footer__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
    @media (min-width: 640px)  { .hrb-footer__grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .hrb-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; } }
    .hrb-footer__logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 16px; }
    .hrb-footer__logo .hrb-logo-main { color: white; }
    .hrb-footer__logo .hrb-logo-sub  { color: var(--primary-light); }
    .hrb-footer__tagline { font-size: 14px; line-height: 1.65; margin-bottom: 20px; color: rgba(255,255,255,0.6); }
    .hrb-footer__address { font-style: normal; display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
    .hrb-footer__phone, .hrb-footer__email { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 8px; transition: color 0.2s; }
    .hrb-footer__phone:hover, .hrb-footer__email:hover { color: var(--primary-light); }
    .hrb-footer__social { display: flex; gap: 10px; margin-top: 20px; }
    .hrb-footer__social-link { width: 36px; height: 36px; border-radius: 50%; 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; }
    .hrb-footer__social-link:hover { background: var(--primary); color: white; }
    .hrb-footer__app-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
    .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: 10px; opacity: 0.7; }
    .hrb-footer__app-badge-text strong { font-size: 13px; font-weight: 700; }
    .hrb-footer__col-heading { font-size: 13px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
    .hrb-footer__links { display: flex; flex-direction: column; gap: 10px; }
    .hrb-footer__links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
    .hrb-footer__links a:hover { color: var(--primary-light); }
    .hrb-footer__certs { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
    .hrb-footer__certs-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px; }
    .hrb-footer__cert-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500; }
    .hrb-footer__compliance-text { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .hrb-footer__compliance-text p { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.7; text-align: center; }
    .hrb-footer__compliance-text strong { color: rgba(255,255,255,0.6); }
    .hrb-footer__bottom { padding: 24px 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.3); }
    .hrb-footer__seo-text a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
    .hrb-footer__seo-text a:hover { color: var(--primary-light); }

    /* ============================================================
       STICKY CTA
    ============================================================ */
    @media (max-width: 767px) { }
    .hrb-sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 890; background: white; border-top: 1px solid var(--border); padding: 12px 24px; display: none; box-shadow: 0 -4px 20px rgba(0,0,0,0.08); transform: translateY(100%); transition: transform 0.3s ease; }
    .hrb-sticky-cta--visible { transform: translateY(0); }
    @media (max-width: 767px) { .hrb-sticky-cta { display: block; } }
    .hrb-sticky-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; max-width: 480px; margin: 0 auto; }
    .hrb-sticky-cta__call { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--text); }
    .hrb-sticky-cta__demo { background: var(--accent); color: white; padding: 10px 20px; border-radius: 8px; font-weight: 700; font-size: 14px; white-space: nowrap; transition: background 0.2s; }
    .hrb-sticky-cta__demo:hover { background: var(--accent-dark); color: white; }

    /* ============================================================
       MOBILE SECTION PADDING
    ============================================================ */
    @media (max-width: 767px) {
      .hrb-features, .hrb-how, .hrb-context, .hrb-compare,
      .hrb-testimonials, .hrb-faq, .hrb-related, .hrb-demo-cta { padding: 48px 0; }
    }

    /* ============================================================
       SCROLL REVEAL + UTILITIES
    ============================================================ */
    .hrb-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
    .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; }

    /* ============================================================
       SECTION HEADER + BADGE (shared component)
    ============================================================ */
    .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; }
    .hrb-btn--white { background: white; color: var(--primary); font-weight: 700; }
    .hrb-btn--white:hover { background: var(--bg-alt); transform: translateY(-1px); color: var(--primary); }
    .hrb-btn--outline-light { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); }
    .hrb-btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: white; color: white; }
