/* ============================================================
       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;
      --error:          #EF4444;
      --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-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--primary);
      background: var(--primary-xlight); border-radius: var(--radius-full);
      padding: 6px 14px; margin-bottom: 12px;
    }
    .hrb-section-label::before {
      content: ''; width: 8px; height: 8px;
      background: var(--primary); border-radius: 50%;
    }

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

    /* ============================================================
       HEADER + NAV
    ============================================================ */
    .hrb-header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(255,255,255,0);
      transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
      border-bottom: 1px solid transparent;
    }
    .hrb-header--scrolled {
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 2px 24px rgba(13,148,136,0.09);
      border-bottom-color: var(--border);
    }
    /* On the light-bg hero the header should immediately be dark */
    .hrb-header--light .hrb-logo-main       { color: var(--dark); }
    .hrb-header--light .hrb-logo-sub        { color: var(--primary); }
    .hrb-header--light .hrb-nav__link       { color: var(--text); }
    .hrb-header--light .hrb-nav__link:hover { color: var(--primary); background: var(--primary-xlight); }
    .hrb-header--light .hrb-header__phone   { color: var(--text); }
    .hrb-header--light .hrb-hamburger span  { background: var(--dark); }
    .hrb-header--light .hrb-hamburger:hover { background: var(--bg-alt); }

    .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; }

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

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

    /* ============================================================
       FOOTER
    ============================================================ */
    .hrb-footer { background: var(--dark); color: rgba(255,255,255,0.75); }
    .hrb-footer__top { padding: 72px 0 48px; }
    .hrb-footer__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
    @media (min-width: 640px)  { .hrb-footer__grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .hrb-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; } }
    .hrb-footer__logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 16px; }
    .hrb-footer__logo .hrb-logo-main { color: white; }
    .hrb-footer__logo .hrb-logo-sub  { color: var(--primary-light); }
    .hrb-footer__tagline { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 20px; max-width: 260px; }
    .hrb-footer__address { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; font-style: normal; margin-bottom: 10px; color: rgba(255,255,255,0.6); }
    .hrb-footer__address svg { flex-shrink: 0; margin-top: 2px; opacity: 0.7; }
    .hrb-footer__phone, .hrb-footer__email { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.7); text-decoration: none; margin-bottom: 8px; transition: color 0.15s; }
    .hrb-footer__phone:hover, .hrb-footer__email:hover { color: white; }
    .hrb-footer__phone svg, .hrb-footer__email svg { opacity: 0.6; flex-shrink: 0; }
    .hrb-footer__social { display: flex; gap: 10px; margin: 20px 0; }
    .hrb-footer__social-link { width: 36px; height: 36px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: background 0.2s, color 0.2s; text-decoration: none; }
    .hrb-footer__social-link:hover { background: var(--primary); color: white; }
    .hrb-footer__app-badges { display: flex; flex-wrap: wrap; gap: 8px; }
    .hrb-footer__app-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-sm); padding: 7px 14px; color: rgba(255,255,255,0.8); font-size: 13px; text-decoration: none; transition: background 0.2s; white-space: nowrap; }
    .hrb-footer__app-badge:hover { background: rgba(255,255,255,0.15); color: white; }
    .hrb-footer__app-badge-text { display: flex; flex-direction: column; line-height: 1.2; }
    .hrb-footer__app-badge-text small { font-size: 9px; opacity: 0.7; }
    .hrb-footer__app-badge-text strong { font-size: 13px; }
    .hrb-footer__col-heading { font-family: var(--font-display); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: white; margin-bottom: 18px; }
    .hrb-footer__links { display: flex; flex-direction: column; gap: 10px; }
    .hrb-footer__links a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.15s; }
    .hrb-footer__links a:hover { color: white; }
    .hrb-footer__certs { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
    .hrb-footer__certs-inner { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: center; }
    .hrb-footer__cert-badge { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.55); }
    .hrb-footer__cert-badge svg { opacity: 0.8; flex-shrink: 0; }
    .hrb-footer__compliance-text { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
    .hrb-footer__compliance-text p { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.7; text-align: center; }
    .hrb-footer__compliance-text strong { color: rgba(255,255,255,0.5); }
    .hrb-footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
    .hrb-footer__bottom-inner { display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; }
    @media (min-width: 768px) { .hrb-footer__bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; } }
    .hrb-footer__copyright { font-size: 13px; color: rgba(255,255,255,0.4); }
    .hrb-footer__seo-text { font-size: 12px; color: rgba(255,255,255,0.25); }
    .hrb-footer__seo-text a { color: rgba(255,255,255,0.3); text-decoration: none; }
    .hrb-footer__seo-text a:hover { color: rgba(255,255,255,0.5); }

    /* ============================================================
       STICKY CTA
    ============================================================ */
    @media (max-width: 768px) { }
    .hrb-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998; background: var(--dark); border-top: 1px solid rgba(255,255,255,0.1); padding: 10px 16px; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); }
    .hrb-sticky-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; max-width: 480px; margin: 0 auto; }
    .hrb-sticky-cta__text { color: white; }
    .hrb-sticky-cta__text strong { display: block; font-size: 14px; }
    .hrb-sticky-cta__text span  { font-size: 11px; color: rgba(255,255,255,0.6); }
    .hrb-sticky-cta__btn { background: var(--accent); color: white; padding: 10px 20px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 14px; white-space: nowrap; transition: background 0.2s; }
    .hrb-sticky-cta__btn:hover { background: var(--accent-dark); color: white; }
    @media (max-width: 768px) { .hrb-sticky-cta { display: block; } }

    /* ============================================================
       BOOK DEMO PAGE â€” PAGE-SPECIFIC STYLES
    ============================================================ */

    /* HERO SECTION â€” light bg, form above fold */
    .hrb-demo-hero {
      background: linear-gradient(160deg, var(--bg-teal) 0%, #ffffff 60%);
      padding: 140px 0 80px; overflow: hidden; position: relative;
    }
    .hrb-demo-hero::before {
      content: '';
      position: absolute; top: 0; right: -200px; width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(13,148,136,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .hrb-demo-hero__grid {
      display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start;
      position: relative; z-index: 1;
    }
    @media (min-width: 1024px) {
      .hrb-demo-hero__grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
    }

    /* LEFT â€” persuasion copy */
    .hrb-demo-copy {}
    .hrb-demo-copy__label {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--primary-xlight); border: 1px solid rgba(13,148,136,0.25);
      color: var(--primary); border-radius: var(--radius-full);
      padding: 6px 16px; font-size: 12px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
    }
    .hrb-demo-copy__label-dot {
      width: 7px; height: 7px; background: var(--primary);
      border-radius: 50%; animation: hrb-pulse-teal 2s ease-in-out infinite;
    }
    @keyframes hrb-pulse-teal {
      0%, 100% { box-shadow: 0 0 0 0 rgba(13,148,136,0.4); }
      50% { box-shadow: 0 0 0 6px rgba(13,148,136,0); }
    }
    .hrb-demo-copy h1 {
      font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
      color: var(--dark); line-height: 1.15; margin-bottom: 20px;
    }
    .hrb-demo-copy__sub {
      font-size: 17px; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px;
    }

    /* Trust points */
    .hrb-demo-trust { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
    .hrb-demo-trust__item {
      display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text);
    }
    .hrb-demo-trust__check {
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--primary-xlight); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .hrb-demo-trust__check svg { color: var(--primary); }

    /* Testimonial */
    .hrb-demo-testimonial {
      background: white; border: 1px solid var(--border);
      border-left: 4px solid var(--primary);
      border-radius: var(--radius-md); padding: 20px 24px; margin-bottom: 36px;
    }
    .hrb-demo-testimonial__quote {
      font-size: 15px; color: var(--text); line-height: 1.7;
      font-style: italic; margin-bottom: 12px;
    }
    .hrb-demo-testimonial__author {
      display: flex; align-items: center; gap: 10px;
    }
    .hrb-demo-testimonial__avatar {
      width: 36px; height: 36px; border-radius: 50%;
      background: linear-gradient(135deg, var(--primary-light), var(--primary));
      flex-shrink: 0; display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-size: 13px; font-weight: 700; color: white;
    }
    .hrb-demo-testimonial__name { font-size: 13px; font-weight: 700; color: var(--dark); }
    .hrb-demo-testimonial__role { font-size: 12px; color: var(--text-muted); }

    /* Mini demo preview cards */
    .hrb-demo-previews { display: grid; grid-template-columns: 1fr; gap: 12px; }
    @media (min-width: 480px) { .hrb-demo-previews { grid-template-columns: repeat(3, 1fr); } }
    .hrb-demo-preview {
      background: var(--bg-alt); border: 1px solid var(--border);
      border-radius: var(--radius-md); padding: 16px 14px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .hrb-demo-preview:hover { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }
    .hrb-demo-preview__icon { font-size: 22px; margin-bottom: 8px; }
    .hrb-demo-preview__title {
      font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 4px; line-height: 1.3;
    }
    .hrb-demo-preview__desc { font-size: 12px; color: var(--text-muted); line-height: 1.55; }

    /* RIGHT â€” Multi-step form card */
    .hrb-demo-form-card {
      background: white; border-radius: var(--radius-xl);
      box-shadow: 0 4px 40px rgba(13,148,136,0.12), 0 1px 3px rgba(0,0,0,0.06);
      border: 1px solid rgba(13,148,136,0.12);
      padding: 40px 36px; position: sticky; top: 88px;
      overflow: hidden;
    }
    @media (max-width: 479px) { .hrb-demo-form-card { padding: 28px 20px; } }

    /* Single-form heading */
    .hrb-demo-form-heading {
      font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 4px;
    }
    .hrb-demo-form-sub {
      font-size: 14px; color: var(--text-muted); margin-bottom: 28px;
    }

    /* Form fields */
    .hrb-df__group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
    .hrb-df__label { font-size: 13px; font-weight: 600; color: var(--text); }
    .hrb-df__required { color: var(--error); margin-left: 2px; }
    .hrb-df__input,
    .hrb-df__select,
    .hrb-df__textarea {
      height: 52px; padding: 0 16px; border: 1.5px solid var(--border);
      border-radius: var(--radius-sm); font-family: var(--font-body);
      font-size: 15px; color: var(--text); background: white;
      transition: border-color 0.2s, box-shadow 0.2s; outline: none; width: 100%;
      -webkit-appearance: none; appearance: none;
    }
    .hrb-df__input::placeholder { color: var(--text-light); }
    .hrb-df__input:focus,
    .hrb-df__select:focus,
    .hrb-df__textarea:focus {
      border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-xlight);
    }
    .hrb-df__input.hrb-df--error,
    .hrb-df__select.hrb-df--error { border-color: var(--error); }
    .hrb-df__input.hrb-df--error:focus,
    .hrb-df__select.hrb-df--error:focus { box-shadow: 0 0 0 3px rgba(239,68,68,0.1); }
    .hrb-df__select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 14px center;
      padding-right: 44px; cursor: pointer;
    }
    .hrb-df__textarea {
      height: auto; padding: 14px 16px; resize: vertical; min-height: 96px; line-height: 1.6;
    }
    .hrb-df__error {
      font-size: 12px; color: var(--error); display: none; margin-top: 2px;
    }
    .hrb-df__error.hrb-df--visible { display: block; }

    /* Phone flag + dial-code selector */
    .hrb-df__phone-wrap {
      display: flex; gap: 0; align-items: stretch;
    }
    .hrb-df__dial-select {
      height: 52px; padding: 0 10px 0 12px; border: 1.5px solid var(--border);
      border-right: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm);
      font-family: var(--font-body); font-size: 14px; color: var(--text);
      background: var(--bg-alt); cursor: pointer; outline: none; flex-shrink: 0;
      transition: border-color 0.2s; -webkit-appearance: none; appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 8px center;
      padding-right: 26px;
    }
    .hrb-df__dial-select:focus { border-color: var(--primary); }
    .hrb-df__phone-input {
      flex: 1; height: 52px; padding: 0 16px; border: 1.5px solid var(--border);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      font-family: var(--font-body); font-size: 15px; color: var(--text);
      background: white; outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .hrb-df__phone-input::placeholder { color: var(--text-light); }
    .hrb-df__phone-input:focus {
      border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-xlight);
    }
    .hrb-df__phone-input.hrb-df--error { border-color: var(--error); }
    .hrb-df__phone-input.hrb-df--error:focus { box-shadow: 0 0 0 3px rgba(239,68,68,0.1); }

    .hrb-demo-btn-submit {
      width: 100%; height: 56px; font-size: 17px; font-weight: 700;
      background: var(--accent); color: var(--dark);
      border: none; border-radius: var(--radius-md); cursor: pointer;
      font-family: var(--font-display);
      box-shadow: 0 4px 16px rgba(245,158,11,0.3);
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .hrb-demo-btn-submit:hover {
      background: var(--accent-hover); transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(245,158,11,0.4);
    }
    .hrb-demo-btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
    .hrb-demo-security-note {
      display: flex; align-items: center; justify-content: center; gap: 6px;
      font-size: 12px; color: var(--text-muted); margin-top: 12px; text-align: center;
    }
    .hrb-demo-security-note svg { color: var(--success); flex-shrink: 0; }

    /* Gravity Forms skin to match the HTML form card */
    .hrb-demo-form-wrapper {
      width: 100%;
    }
    .hrb-demo-form-wrapper .gform_wrapper {
      margin: 0;
      max-width: none;
    }
    .hrb-demo-form-wrapper .gform_heading,
    .hrb-demo-form-wrapper .gform_description,
    .hrb-demo-form-wrapper .gform_required_legend {
      display: none;
    }
    .hrb-demo-form-wrapper .gform-body,
    .hrb-demo-form-wrapper .gform_body {
      margin: 0;
    }
    .hrb-demo-form-wrapper .gform_fields,
    .hrb-demo-form-wrapper .gform_wrapper.gravity-theme .gform_fields {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 16px;
      row-gap: 16px;
    }
    .hrb-demo-form-wrapper .gfield,
    .hrb-demo-form-wrapper .gfield--type-name,
    .hrb-demo-form-wrapper .gfield--type-email,
    .hrb-demo-form-wrapper .gfield--type-phone,
    .hrb-demo-form-wrapper .gfield--type-text,
    .hrb-demo-form-wrapper .gfield--type-select,
    .hrb-demo-form-wrapper .gfield--type-textarea {
      margin: 0;
      padding: 0;
    }
    .hrb-demo-form-wrapper .gfield_label,
    .hrb-demo-form-wrapper .gform-field-label {
      display: inline-block;
      margin-bottom: 6px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
    }
    .hrb-demo-form-wrapper .gfield_required,
    .hrb-demo-form-wrapper .gfield_required_asterisk {
      color: var(--error);
      margin-left: 2px;
    }
    .hrb-demo-form-wrapper input[type="text"],
    .hrb-demo-form-wrapper input[type="email"],
    .hrb-demo-form-wrapper input[type="tel"],
    .hrb-demo-form-wrapper input[type="number"],
    .hrb-demo-form-wrapper select,
    .hrb-demo-form-wrapper textarea {
      width: 100%;
      min-height: 52px;
      padding: 0 16px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 15px;
      color: var(--text);
      background: white;
      box-shadow: none;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      -webkit-appearance: none;
      appearance: none;
    }
    .hrb-demo-form-wrapper textarea {
      min-height: 96px;
      padding: 14px 16px;
      resize: vertical;
      line-height: 1.6;
    }
    .hrb-demo-form-wrapper input::placeholder,
    .hrb-demo-form-wrapper textarea::placeholder {
      color: var(--text-light);
    }
    .hrb-demo-form-wrapper input:focus,
    .hrb-demo-form-wrapper select:focus,
    .hrb-demo-form-wrapper textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px var(--primary-xlight);
    }
    .hrb-demo-form-wrapper select {
      padding-right: 44px;
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
    }
    .hrb-demo-form-wrapper .ginput_container_phone input {
      padding-left: 16px;
    }
    .hrb-demo-form-wrapper .gfield_error input,
    .hrb-demo-form-wrapper .gfield_error select,
    .hrb-demo-form-wrapper .gfield_error textarea {
      border-color: var(--error);
    }
    .hrb-demo-form-wrapper .gfield_error input:focus,
    .hrb-demo-form-wrapper .gfield_error select:focus,
    .hrb-demo-form-wrapper .gfield_error textarea:focus {
      box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
    }
    .hrb-demo-form-wrapper .validation_message,
    .hrb-demo-form-wrapper .gfield_validation_message,
    .hrb-demo-form-wrapper .instruction {
      margin-top: 6px;
      font-size: 12px;
      color: var(--error);
      padding: 0;
      border: 0;
      background: transparent;
    }
    .hrb-demo-form-wrapper .gform_validation_errors,
    .hrb-demo-form-wrapper .gform_submission_error {
      margin: 0 0 16px;
      padding: 14px 16px;
      border: 1px solid rgba(239,68,68,0.2);
      border-radius: var(--radius-sm);
      background: rgba(239,68,68,0.06);
      color: var(--error);
      box-shadow: none;
    }
    .hrb-demo-form-wrapper .gform_validation_errors h2,
    .hrb-demo-form-wrapper .gform_submission_error,
    .hrb-demo-form-wrapper .gform_submission_error li {
      font-size: 13px;
      line-height: 1.55;
      color: var(--error);
    }
    .hrb-demo-form-wrapper .gform_validation_errors ol,
    .hrb-demo-form-wrapper .gform_validation_errors ul {
      margin: 8px 0 0 18px;
    }
    .hrb-demo-form-wrapper .gform_footer,
    .hrb-demo-form-wrapper .gform_wrapper.gravity-theme .gform_footer,
    .hrb-demo-form-wrapper .gform_page_footer {
      margin: 20px 0 0;
      padding: 0;
    }
    .hrb-demo-form-wrapper .gform_button,
    .hrb-demo-form-wrapper input[type="submit"],
    .hrb-demo-form-wrapper button[type="submit"] {
      width: 100%;
      min-height: 56px;
      padding: 14px 24px;
      font-size: 17px;
      font-weight: 700;
      font-family: var(--font-display);
      color: var(--dark);
      background: var(--accent);
      border: none;
      border-radius: var(--radius-md);
      box-shadow: 0 4px 16px rgba(245,158,11,0.3);
      cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .hrb-demo-form-wrapper .gform_button:hover,
    .hrb-demo-form-wrapper input[type="submit"]:hover,
    .hrb-demo-form-wrapper button[type="submit"]:hover {
      background: var(--accent-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(245,158,11,0.4);
    }
    .hrb-demo-form-wrapper .gform_button:disabled,
    .hrb-demo-form-wrapper input[type="submit"]:disabled,
    .hrb-demo-form-wrapper button[type="submit"]:disabled {
      opacity: 0.7;
      cursor: not-allowed;
      transform: none;
    }
    .hrb-demo-form-wrapper .gform_ajax_spinner {
      display: block;
      margin: 12px auto 0;
    }
    .hrb-demo-form-wrapper .gform_confirmation_wrapper,
    .hrb-demo-form-wrapper .gform_confirmation_message {
      margin: 0;
    }
    .hrb-demo-form-wrapper .gform_confirmation_message {
      text-align: center;
      padding: 32px 20px;
      border: 1px solid rgba(13,148,136,0.15);
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, rgba(13,148,136,0.06), rgba(255,255,255,0.98));
      color: var(--dark);
      box-shadow: var(--shadow-sm);
      font-size: 15px;
      line-height: 1.65;
    }
    .hrb-demo-form-wrapper .gform_confirmation_message a {
      color: var(--primary);
      font-weight: 600;
    }

    /* Stronger overrides for Gravity Forms + intl-tel-input plugin UI */
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme form {
      margin: 0 !important;
      padding: 0 !important;
      max-width: none !important;
    }
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gform_fields {
      gap: 18px !important;
      row-gap: 18px !important;
    }
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gfield_label,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gform-field-label {
      margin-bottom: 10px !important;
      color: var(--dark) !important;
      font-size: 13px !important;
      font-weight: 600 !important;
      line-height: 1.35 !important;
    }
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gfield input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gfield select,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gfield textarea,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .ginput_container input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .ginput_container select,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .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;
    }
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gfield textarea,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .ginput_container textarea {
      min-height: 110px !important;
      height: 110px !important;
      padding: 14px 16px !important;
      resize: vertical !important;
      line-height: 1.6 !important;
    }
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gfield input::placeholder,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gfield textarea::placeholder {
      color: #8fa1bb !important;
      opacity: 1 !important;
    }
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gfield input:focus,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gfield select:focus,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gfield textarea:focus {
      border-color: #14b8a6 !important;
      box-shadow: 0 0 0 3px rgba(20,184,166,0.12) !important;
    }
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .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;
      -webkit-appearance: none !important;
      appearance: none !important;
    }
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gfield_error input,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gfield_error select,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gfield_error textarea {
      border-color: #ef4444 !important;
      background: #ffffff !important;
    }
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gfield_error input:focus,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gfield_error select:focus,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gfield_error textarea:focus {
      box-shadow: 0 0 0 3px rgba(239,68,68,0.1) !important;
    }
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .pcafe_sp_field,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .pcafe_sp_field .iti,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .pcafe_sp_field .iti input[type="tel"] {
      width: 100% !important;
    }
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .pcafe_sp_field .iti {
      display: block !important;
    }
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .pcafe_sp_field .iti__flag-container {
      left: 0 !important;
      right: auto !important;
      top: 0 !important;
      bottom: 0 !important;
      padding: 0 !important;
    }
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .pcafe_sp_field .iti input[type="tel"] {
      padding-left: 96px !important;
    }
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .pcafe_sp_field .iti__selected-country,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .pcafe_sp_field .iti__selected-flag {
      height: 52px !important;
      padding: 0 14px 0 12px !important;
      border-right: 1.5px solid #d7e1ec !important;
      border-radius: 12px 0 0 12px !important;
      background: #f8fbfd !important;
      display: flex !important;
      align-items: center !important;
      gap: 8px !important;
      box-sizing: border-box !important;
    }
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .pcafe_sp_field .iti__selected-dial-code,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .pcafe_sp_field .iti__selected-country-primary {
      color: #52657e !important;
      font-size: 14px !important;
      line-height: 1 !important;
    }
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .pcafe_sp_field .iti__arrow {
      margin-left: 2px !important;
      border-top-color: #64748b !important;
    }
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .ginput_container_phone + .validation_message,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .pcafe_sp_field + .validation_message {
      margin-top: 6px !important;
    }
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gfield--type-captcha,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gfield--type-recaptcha,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .ginput_recaptcha {
      margin-top: 2px !important;
      margin-bottom: 2px !important;
    }
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gfield--type-captcha .gfield_label,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gfield--type-recaptcha .gfield_label,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gfield--type-captcha .gform-field-label,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gfield--type-recaptcha .gform-field-label {
      display: none !important;
      margin: 0 !important;
    }
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .ginput_recaptcha iframe,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme iframe[title*="reCAPTCHA"] {
      transform: scale(0.94);
      transform-origin: left top;
    }
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gform_footer,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gform_page_footer {
      margin-top: 16px !important;
      padding: 0 !important;
    }
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gform_footer .gform_button.button,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gform_page_footer .gform_button.button,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gform_footer input[type="submit"],
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gform_page_footer input[type="submit"],
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gform_footer button[type="submit"],
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .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;
      letter-spacing: 0 !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;
    }
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gform_footer .gform_button.button:hover,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gform_page_footer .gform_button.button:hover,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gform_footer input[type="submit"]:hover,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gform_page_footer input[type="submit"]:hover,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gform_footer button[type="submit"]:hover,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .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;
    }
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gform_footer .gform_button.button:focus-visible,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gform_page_footer .gform_button.button:focus-visible,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gform_footer input[type="submit"]:focus-visible,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gform_page_footer input[type="submit"]:focus-visible,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gform_footer button[type="submit"]:focus-visible,
    body .hrb-demo-form-card #hrb-demo-form .gform_wrapper.gravity-theme .gform_page_footer button[type="submit"]:focus-visible {
      outline: none !important;
      box-shadow: 0 0 0 4px rgba(245,158,11,0.18), 0 12px 28px rgba(245,158,11,0.28) !important;
    }

    /* Ultimate fallback: style by raw elements in case plugin classes differ */
    #hrb-demo-form .gform_fields {
      display: block !important;
    }
    #hrb-demo-form .gfield {
      margin: 0 0 16px !important;
      padding: 0 !important;
    }
    #hrb-demo-form .gfield.gform_hidden,
    #hrb-demo-form .gfield--type-hidden {
      display: none !important;
    }
    #hrb-demo-form .gfield .ginput_container,
    #hrb-demo-form .ginput_container {
      margin: 0 !important;
    }
    #hrb-demo-form .gfield_label,
    #hrb-demo-form .gform-field-label {
      display: block !important;
      margin: 0 0 6px !important;
      line-height: 1.35 !important;
    }
    #hrb-demo-form .gfield--type-captcha,
    #hrb-demo-form .gfield--type-recaptcha {
      margin: 4px 0 12px !important;
    }
    #hrb-demo-form .gfield--type-captcha .gfield_label,
    #hrb-demo-form .gfield--type-recaptcha .gfield_label,
    #hrb-demo-form .gfield--type-captcha .gform-field-label,
    #hrb-demo-form .gfield--type-recaptcha .gform-field-label {
      display: none !important;
      margin: 0 !important;
    }
    #hrb-demo-form .gform_footer,
    #hrb-demo-form .gform_page_footer {
      margin: 8px 0 0 !important;
      padding: 0 !important;
    }

    #hrb-demo-form .gform_validation_container,
    #hrb-demo-form .gfield--type-honeypot,
    #hrb-demo-form #field_1_26,
    #hrb-demo-form .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 form input[type="text"],
    #hrb-demo-form form input[type="email"],
    #hrb-demo-form form input[type="tel"],
    #hrb-demo-form form input[type="number"],
    #hrb-demo-form form select,
    #hrb-demo-form form textarea {
      min-height: 52px !important;
      height: auto !important;
      padding: 0 16px !important;
      border: 1.5px solid #d7e1ec !important;
      border-radius: 12px !important;
      background: #fff !important;
      color: #24344d !important;
      box-shadow: none !important;
      font-size: 15px !important;
      line-height: 1.45 !important;
    }
    #hrb-demo-form form textarea {
      min-height: 110px !important;
      height: 110px !important;
      padding: 14px 16px !important;
      line-height: 1.6 !important;
    }
    #hrb-demo-form form input[type="text"]:focus,
    #hrb-demo-form form input[type="email"]:focus,
    #hrb-demo-form form input[type="tel"]:focus,
    #hrb-demo-form form input[type="number"]:focus,
    #hrb-demo-form form select:focus,
    #hrb-demo-form form textarea:focus {
      border-color: #14b8a6 !important;
      box-shadow: 0 0 0 3px rgba(20,184,166,0.12) !important;
    }
    #hrb-demo-form form .gform_footer input[type="submit"],
    #hrb-demo-form form .gform_page_footer input[type="submit"],
    #hrb-demo-form form .gform_footer button[type="submit"],
    #hrb-demo-form form .gform_page_footer button[type="submit"],
    #hrb-demo-form form input.gform_button,
    #hrb-demo-form form button.gform_button,
    #hrb-demo-form form input[type="button"].gform_button {
      width: 100% !important;
      min-height: 58px !important;
      padding: 16px 24px !important;
      border: 0 !important;
      border-radius: 14px !important;
      background: #f59e0b !important;
      color: #0f172a !important;
      font-size: 17px !important;
      font-weight: 700 !important;
      line-height: 1.2 !important;
      box-shadow: 0 8px 24px rgba(245,158,11,0.22) !important;
    }
    #hrb-demo-form form .gform_footer input[type="submit"]:hover,
    #hrb-demo-form form .gform_page_footer input[type="submit"]:hover,
    #hrb-demo-form form .gform_footer button[type="submit"]:hover,
    #hrb-demo-form form .gform_page_footer button[type="submit"]:hover,
    #hrb-demo-form form input.gform_button:hover,
    #hrb-demo-form form button.gform_button:hover,
    #hrb-demo-form form input[type="button"].gform_button:hover {
      background: #f3a915 !important;
      box-shadow: 0 12px 28px rgba(245,158,11,0.28) !important;
    }
    #hrb-demo-form form label,
    #hrb-demo-form form .gfield_label,
    #hrb-demo-form form .gform-field-label {
      font-size: 13px !important;
      font-weight: 600 !important;
      color: #0f172a !important;
      margin-bottom: 8px !important;
    }

    /* Validation/error design to match reference */
    #hrb-demo-form .gform_validation_errors,
    #hrb-demo-form .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;
      font-size: 15px !important;
      font-weight: 600 !important;
      line-height: 1.45 !important;
    }
    #hrb-demo-form .gform_validation_errors > h2 {
      margin: 0 !important;
      padding: 0 !important;
      border: 0 !important;
      border-radius: 0 !important;
      background: transparent !important;
      color: #ef4444 !important;
      font-size: 15px !important;
      font-weight: 600 !important;
      line-height: 1.45 !important;
      display: flex !important;
      align-items: center !important;
      gap: 12px !important;
    }
    #hrb-demo-form .gform_submission_error {
      display: flex !important;
      align-items: center !important;
      gap: 12px !important;
    }
    #hrb-demo-form .gform_validation_errors > h2::before,
    #hrb-demo-form .gform_submission_error::before {
      content: "!" !important;
      width: 20px !important;
      height: 20px !important;
      border-radius: 50% !important;
      border: 1px solid #f2b8b8 !important;
      color: #ef4444 !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      font-size: 12px !important;
      font-weight: 700 !important;
      flex-shrink: 0 !important;
      line-height: 1 !important;
    }
    #hrb-demo-form .gform_validation_errors ol,
    #hrb-demo-form .gform_validation_errors ul {
      display: none !important;
    }
    #hrb-demo-form .validation_message,
    #hrb-demo-form .gfield_validation_message,
    #hrb-demo-form .gfield_description.validation_message {
      margin: 8px 0 0 !important;
      padding: 10px 14px !important;
      border: 1px solid #f2b8b8 !important;
      border-radius: 12px !important;
      background: #fff3f3 !important;
      color: #ef4444 !important;
      font-size: 14px !important;
      line-height: 1.35 !important;
      font-weight: 500 !important;
      box-shadow: none !important;
    }
    #hrb-demo-form .gfield_error input,
    #hrb-demo-form .gfield_error select,
    #hrb-demo-form .gfield_error textarea {
      border-color: #f2b8b8 !important;
      box-shadow: none !important;
    }
    #hrb-demo-form .gfield_error .gfield_label,
    #hrb-demo-form .gfield_error .gform-field-label {
      color: #0f172a !important;
    }

    /* Contact number country dropdown style */
  #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti {
    width: 100% !important;
    display: block !important;
  }
  #hrb-demo-form .gform_wrapper,
  #hrb-demo-form .gform_body,
  #hrb-demo-form .gform_fields,
  #hrb-demo-form .pcafe_sp_field,
  #hrb-demo-form .pcafe_sp_field .ginput_container_phone,
  #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti {
    overflow: visible !important;
  }
  #hrb-demo-form .pcafe_sp_field,
  #hrb-demo-form .pcafe_sp_field .ginput_container_phone {
    position: relative !important;
    overflow: visible !important;
  }
  #hrb-demo-form .pcafe_sp_field {
    z-index: 20 !important;
  }
  #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti input[type="tel"] {
    padding-left: 98px !important;
    padding-right: 12px !important;
  }
  #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__flag-container {
    z-index: 30 !important;
  }
  #hrb-demo-form .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 .pcafe_sp_field .ginput_container_phone .iti__selected-country:focus,
  #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__selected-country:focus-visible {
    outline: 0 !important;
    box-shadow: none !important;
  }
  #hrb-demo-form .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 .pcafe_sp_field .ginput_container_phone .iti__selected-country-primary .iti__flag,
  #hrb-demo-form .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 .pcafe_sp_field .ginput_container_phone .iti__selected-dial-code {
    color: #2d3d5a !important;
    font-size: 0.9rem !important;
  }
  #hrb-demo-form .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 .pcafe_sp_field .ginput_container_phone .iti__country-list .iti__country {
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #203455 !important;
  }
  #hrb-demo-form .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 .pcafe_sp_field .ginput_container_phone .iti__country.iti__highlight {
    background: #f3f7ff !important;
  }
  #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__search-input {
    min-height: 36px !important;
    padding: 8px 10px !important;
    border-radius: 8px !important;
  }
  #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__country-container {
    left: 1px !important;
    top: 1px !important;
    bottom: 1px !important;
  }
  #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__selected-country {
    min-width: 72px !important;
    gap: 6px !important;
    padding-right: 6px !important;
  }
  #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__selected-country-primary {
    gap: 6px !important;
  }
  #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__selected-dial-code {
    margin-left: 2px !important;
    font-weight: 500 !important;
  }
  #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown input[type="tel"] {
    padding-left: 92px !important;
  }
  #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__arrow {
    margin-left: 2px !important;
  }
  @media (max-width: 575px) {
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown input[type="tel"] {
      padding-left: 88px !important;
    }
  }
  #hrb-demo-form .pcafe_sp_field .spf-phone.error-msg {
    display: none !important;
  }
/* Success state */
    .hrb-demo-success {
      display: none; text-align: center; padding: 32px 8px;
    }
    .hrb-demo-success.hrb-ds--visible { display: block; }
    .hrb-demo-success__icon {
      width: 80px; height: 80px; border-radius: 50%;
      background: rgba(16,185,129,0.1); display: flex; align-items: center;
      justify-content: center; margin: 0 auto 20px;
      animation: hrb-success-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
    }
    @keyframes hrb-success-pop {
      from { transform: scale(0.5); opacity: 0; }
      to   { transform: scale(1); opacity: 1; }
    }
    .hrb-demo-success__icon svg { color: var(--success); }
    .hrb-demo-success h3 { font-size: 26px; color: var(--dark); margin-bottom: 8px; }
    .hrb-demo-success__booking {
      background: var(--bg-teal); border: 1px solid rgba(13,148,136,0.2);
      border-radius: var(--radius-md); padding: 16px 20px; margin: 20px 0;
      font-size: 15px; color: var(--text);
    }
    .hrb-demo-success__booking strong { color: var(--dark); }
    .hrb-demo-success__call {
      font-size: 14px; color: var(--text-muted); margin-top: 16px;
    }
    .hrb-demo-success__call a { color: var(--primary); font-weight: 600; }

    /* Mobile padding */
    @media (max-width: 767px) {
      .hrb-demo-hero { padding: 110px 0 60px; }
      .hrb-demo-form-card { position: static; }
    }

    /* Book Demo: final reCAPTCHA design fix */
    #hrb-demo-form #field_1_25,
    #hrb-demo-form .gfield--type-captcha,
    #hrb-demo-form .gfield--type-recaptcha {
      margin: 6px 0 10px !important;
      padding: 0 !important;
    }

    #hrb-demo-form #field_1_25 .gfield_label,
    #hrb-demo-form #field_1_25 .gform-field-label,
    #hrb-demo-form .gfield--type-captcha .gfield_label,
    #hrb-demo-form .gfield--type-recaptcha .gfield_label,
    #hrb-demo-form .gfield--type-captcha .gform-field-label,
    #hrb-demo-form .gfield--type-recaptcha .gform-field-label {
      display: none !important;
      margin: 0 !important;
    }

    #hrb-demo-form #field_1_25 .ginput_container,
    #hrb-demo-form #field_1_25 .ginput_recaptcha,
    #hrb-demo-form .gfield--type-captcha .ginput_container,
    #hrb-demo-form .gfield--type-recaptcha .ginput_container {
      margin: 0 !important;
      min-height: 74px !important;
      display: flex !important;
      align-items: flex-start !important;
      justify-content: flex-start !important;
    }

    #hrb-demo-form #field_1_25 .ginput_recaptcha iframe,
    #hrb-demo-form #field_1_25 iframe[title*="reCAPTCHA"],
    #hrb-demo-form .gfield--type-captcha .ginput_recaptcha iframe,
    #hrb-demo-form .gfield--type-recaptcha .ginput_recaptcha iframe {
      transform: none !important;
      transform-origin: left top !important;
      width: 304px !important;
      max-width: 100% !important;
      min-height: 78px !important;
      border-radius: 8px !important;
    }

    #hrb-demo-form #field_1_25 .validation_message,
    #hrb-demo-form .gfield--type-captcha .validation_message,
    #hrb-demo-form .gfield--type-recaptcha .validation_message,
    #hrb-demo-form .gfield--type-captcha .gfield_validation_message,
    #hrb-demo-form .gfield--type-recaptcha .gfield_validation_message {
      margin-top: 8px !important;
    }

    @media (max-width: 575px) {
      #hrb-demo-form #field_1_25 .ginput_recaptcha iframe,
      #hrb-demo-form #field_1_25 iframe[title*="reCAPTCHA"],
      #hrb-demo-form .gfield--type-captcha .ginput_recaptcha iframe,
      #hrb-demo-form .gfield--type-recaptcha .ginput_recaptcha iframe {
        transform: scale(0.94) !important;
        transform-origin: left top !important;
      }
    }

    /* Book Demo: final Contact Number (phone field) design fix */
    #hrb-demo-form .pcafe_sp_field,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti {
      width: 100% !important;
      position: relative !important;
      overflow: visible !important;
    }

    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti input[type="tel"] {
      min-height: 52px !important;
      height: 52px !important;
      padding-left: 100px !important;
      padding-right: 14px !important;
      border: 1.5px solid #d7e1ec !important;
      border-radius: 12px !important;
      line-height: 1.45 !important;
    }

    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__country-container {
      left: 1px !important;
      top: 1px !important;
      bottom: 1px !important;
      z-index: 3 !important;
    }

    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__selected-country {
      min-width: 84px !important;
      height: 50px !important;
      padding: 0 10px !important;
      display: inline-flex !important;
      align-items: center !important;
      gap: 6px !important;
      border: 0 !important;
      border-right: 1px solid #d7e1ec !important;
      border-radius: 11px 0 0 11px !important;
      background: #ffffff !important;
      box-shadow: none !important;
      outline: 0 !important;
    }

    #hrb-demo-form .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 .pcafe_sp_field .ginput_container_phone .iti__selected-country-primary .iti__flag,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__country .iti__flag {
      transform: none !important;
      zoom: 1 !important;
      image-rendering: auto !important;
      margin-right: 2px !important;
    }

    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__selected-dial-code {
      color: #52657e !important;
      font-size: 14px !important;
      font-weight: 500 !important;
      line-height: 1 !important;
      margin-left: 1px !important;
    }

    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__arrow {
      margin-left: 2px !important;
      border-top-color: #64748b !important;
    }

    #hrb-demo-form .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-height: 240px !important;
      border: 1px solid #d7e1ec !important;
      border-radius: 10px !important;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12) !important;
      background: #fff !important;
    }

    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__search-input {
      min-height: 38px !important;
      border-radius: 8px !important;
      border: 1px solid #d7e1ec !important;
    }

    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__country {
      display: flex !important;
      align-items: center !important;
      gap: 10px !important;
      padding: 9px 10px !important;
      font-size: 14px !important;
      color: #203455 !important;
    }

    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__country.iti__highlight {
      background: #f3f7ff !important;
    }

    @media (max-width: 575px) {
      #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti input[type="tel"] {
        padding-left: 92px !important;
      }
      #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__selected-country {
        min-width: 78px !important;
      }
    }

    /* Book Demo: phone + reCAPTCHA final visual cleanup */
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti {
      width: 100% !important;
      display: block !important;
      position: relative !important;
    }

    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown input[type="tel"] {
      padding-left: 104px !important;
      padding-right: 14px !important;
      border-radius: 12px !important;
    }

    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__selected-country {
      min-width: 90px !important;
      justify-content: center !important;
      gap: 6px !important;
      overflow: visible !important;
    }

    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__selected-dial-code {
      display: inline-block !important;
      white-space: nowrap !important;
    }

    #hrb-demo-form .pcafe_sp_field .spf-phone.valid-msg,
    #hrb-demo-form .pcafe_sp_field .spf-phone.success-msg,
    #hrb-demo-form .pcafe_sp_field .spf-phone.error-msg {
      display: none !important;
    }

    #hrb-demo-form #field_1_25 .grecaptcha-badge,
    #hrb-demo-form .gfield--type-captcha .grecaptcha-badge,
    #hrb-demo-form .gfield--type-recaptcha .grecaptcha-badge {
      position: static !important;
      inset: auto !important;
      margin: 0 !important;
      max-width: 100% !important;
      border: 1px solid #d7e1ec !important;
      border-radius: 8px !important;
      box-shadow: none !important;
      overflow: hidden !important;
      background: #fff !important;
    }

    #hrb-demo-form #field_1_25 .grecaptcha-badge iframe,
    #hrb-demo-form .gfield--type-captcha .grecaptcha-badge iframe,
    #hrb-demo-form .gfield--type-recaptcha .grecaptcha-badge iframe {
      display: block !important;
      width: 256px !important;
      max-width: 100% !important;
      height: 60px !important;
      border: 0 !important;
      transform: none !important;
    }

    @media (max-width: 575px) {
      #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown input[type="tel"] {
        padding-left: 96px !important;
      }
      #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__selected-country {
        min-width: 84px !important;
      }
      #hrb-demo-form #field_1_25 .grecaptcha-badge iframe,
      #hrb-demo-form .gfield--type-captcha .grecaptcha-badge iframe,
      #hrb-demo-form .gfield--type-recaptcha .grecaptcha-badge iframe {
        transform: scale(0.94) !important;
        transform-origin: left top !important;
      }
    }

    /* Book Demo: match Contact Us phone field design */
    #hrb-demo-form .gform_wrapper,
    #hrb-demo-form .gform_body,
    #hrb-demo-form .gform_fields,
    #hrb-demo-form .pcafe_sp_field,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti {
      overflow: visible !important;
    }

    #hrb-demo-form .pcafe_sp_field,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone {
      position: relative !important;
      overflow: visible !important;
    }

    #hrb-demo-form .pcafe_sp_field {
      z-index: 20 !important;
    }

    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti {
      width: 100% !important;
      display: block !important;
    }

    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti input[type="tel"] {
      padding-left: 92px !important;
      padding-right: 12px !important;
    }

    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__flag-container {
      z-index: 30 !important;
    }

    #hrb-demo-form .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 .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 .pcafe_sp_field .ginput_container_phone .iti__selected-country-primary .iti__flag,
    #hrb-demo-form .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 .pcafe_sp_field .ginput_container_phone .iti__selected-dial-code {
      color: #2d3d5a !important;
      font-size: 0.9rem !important;
    }

    #hrb-demo-form .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 .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 .pcafe_sp_field .ginput_container_phone .iti__country.iti__highlight {
      background: #f3f7ff !important;
    }

    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__country-container {
      left: 1px !important;
      top: 1px !important;
      bottom: 1px !important;
    }

    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__selected-country {
      min-width: 72px !important;
      gap: 6px !important;
      padding-right: 6px !important;
    }

    #hrb-demo-form .pcafe_sp_field .spf-phone.valid-msg,
    #hrb-demo-form .pcafe_sp_field .spf-phone.success-msg,
    #hrb-demo-form .pcafe_sp_field .spf-phone.error-msg {
      display: none !important;
    }

    @media (max-width: 575px) {
      #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown input[type="tel"] {
        padding-left: 88px !important;
      }
    }

    /* Book Demo: exact Contact Us phone field behavior */
    #hrb-demo-form .pcafe_sp_field .iti,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti {
      width: 100% !important;
    }

    #hrb-demo-form .pcafe_sp_field .iti input[type="tel"],
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti input[type="tel"] {
      padding-left: 84px !important;
      padding-right: 12px !important;
      text-align: left !important;
      direction: ltr !important;
      unicode-bidi: plaintext !important;
    }

    #hrb-demo-form .pcafe_sp_field .iti__flag-container,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__flag-container {
      left: 1px !important;
      top: 1px !important;
      bottom: 1px !important;
      width: 66px !important;
      border-right: 1px solid #d5deea !important;
      border-radius: 11px 0 0 11px !important;
      background: #ffffff !important;
      overflow: hidden !important;
      z-index: 30 !important;
    }

    #hrb-demo-form .pcafe_sp_field .iti__selected-country,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__selected-country {
      height: 100% !important;
      padding: 0 7px !important;
      background: transparent !important;
      border: 0 !important;
      border-right: 0 !important;
      min-width: 0 !important;
      width: 100% !important;
      justify-content: flex-start !important;
      gap: 4px !important;
    }

    #hrb-demo-form .pcafe_sp_field .iti__selected-dial-code,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__selected-dial-code {
      display: none !important;
    }

    #hrb-demo-form .pcafe_sp_field .iti__flag,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__flag {
      transform: scale(1.15) !important;
      transform-origin: center !important;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
    }

    #hrb-demo-form .pcafe_sp_field .iti__country-list,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__country-list {
      border: 1px solid #d5deea !important;
      border-radius: 12px !important;
      box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12) !important;
      max-width: 100% !important;
      z-index: 9999 !important;
    }

    #hrb-demo-form .pcafe_sp_field .iti__country-list .iti__flag,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__country-list .iti__flag {
      transform: scale(1.1) !important;
    }

    /* Book Demo: hard-fix hidden leading digits in Contact Number field */
    #hrb-demo-form #input_1_3,
    #hrb-demo-form .pcafe_sp_field .iti input[type="tel"],
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti input[type="tel"],
    #hrb-demo-form .pcafe_sp_field .iti.iti--allow-dropdown input[type="tel"],
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown input[type="tel"] {
      padding-left: 90px !important;
      padding-right: 12px !important;
      text-align: left !important;
      direction: ltr !important;
      unicode-bidi: plaintext !important;
      text-indent: 0 !important;
    }

    #hrb-demo-form .pcafe_sp_field .iti__country-container,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__country-container {
      width: 70px !important;
      left: 1px !important;
      top: 1px !important;
      bottom: 1px !important;
    }

    #hrb-demo-form .pcafe_sp_field .iti__selected-country,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__selected-country {
      width: 100% !important;
      min-width: 0 !important;
      padding: 0 7px !important;
      justify-content: flex-start !important;
      gap: 4px !important;
    }

    #hrb-demo-form .pcafe_sp_field .iti__selected-dial-code,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__selected-dial-code {
      display: none !important;
    }

    @media (max-width: 575px) {
      #hrb-demo-form #input_1_3,
      #hrb-demo-form .pcafe_sp_field .iti input[type="tel"],
      #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti input[type="tel"],
      #hrb-demo-form .pcafe_sp_field .iti.iti--allow-dropdown input[type="tel"],
      #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown input[type="tel"] {
        padding-left: 86px !important;
      }

      #hrb-demo-form .pcafe_sp_field .iti__country-container,
      #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__country-container {
        width: 66px !important;
      }
    }

    /* Book Demo: country dropdown bottom-border polish */
    #hrb-demo-form .pcafe_sp_field .iti__country-list,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__country-list {
      overflow: hidden !important;
      border: 1px solid #d5deea !important;
      border-radius: 12px !important;
      box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12) !important;
    }

    #hrb-demo-form .pcafe_sp_field .iti__country-list .iti__search-container,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__country-list .iti__search-container {
      padding: 8px !important;
      border-bottom: 1px solid #e8eef5 !important;
      background: #ffffff !important;
    }

    #hrb-demo-form .pcafe_sp_field .iti__country-list .iti__search-input,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__country-list .iti__search-input {
      border: 1px solid #d5deea !important;
      border-radius: 8px !important;
      box-shadow: none !important;
    }

    #hrb-demo-form .pcafe_sp_field .iti__country-list .iti__country,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__country-list .iti__country {
      border-bottom: 1px solid #edf2f7 !important;
    }

    #hrb-demo-form .pcafe_sp_field .iti__country-list .iti__country:last-child,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__country-list .iti__country:last-child {
      border-bottom: 0 !important;
    }

    /* Book Demo: FINAL force-match Contact Us phone field design */
    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .iti,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .iti,
    #hrb-demo-form .pcafe_sp_field .iti {
      width: 100% !important;
      display: block !important;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .iti input[type="tel"],
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .iti input[type="tel"],
    #hrb-demo-form .pcafe_sp_field .iti input[type="tel"] {
      padding-left: 84px !important;
      padding-right: 12px !important;
      text-align: left !important;
      direction: ltr !important;
      unicode-bidi: plaintext !important;
      text-indent: 0 !important;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .iti__flag-container,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .iti__flag-container,
    #hrb-demo-form .pcafe_sp_field .iti__flag-container {
      left: 1px !important;
      top: 1px !important;
      bottom: 1px !important;
      width: 66px !important;
      border-right: 1px solid #d5deea !important;
      border-radius: 11px 0 0 11px !important;
      background: #ffffff !important;
      overflow: hidden !important;
      z-index: 30 !important;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .iti__selected-country,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .iti__selected-country,
    #hrb-demo-form .pcafe_sp_field .iti__selected-country {
      height: 100% !important;
      padding: 0 7px !important;
      background: transparent !important;
      border: 0 !important;
      min-width: 0 !important;
      width: 100% !important;
      justify-content: flex-start !important;
      gap: 4px !important;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .iti__selected-dial-code,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .iti__selected-dial-code,
    #hrb-demo-form .pcafe_sp_field .iti__selected-dial-code {
      display: none !important;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .iti__flag,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .iti__flag,
    #hrb-demo-form .pcafe_sp_field .iti__flag {
      transform: scale(1.15) !important;
      transform-origin: center !important;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .iti__country-list,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .iti__country-list,
    #hrb-demo-form .pcafe_sp_field .iti__country-list {
      border: 1px solid #d5deea !important;
      border-radius: 12px !important;
      box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12) !important;
      max-width: 100% !important;
      overflow: hidden !important;
      z-index: 9999 !important;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .iti__country-list .iti__country,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .iti__country-list .iti__country,
    #hrb-demo-form .pcafe_sp_field .iti__country-list .iti__country {
      border-bottom: 0 !important;
      background: transparent !important;
    }

    @media (max-width: 575px) {
      body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .iti input[type="tel"],
      body.page-id-31 #hrb-demo-form .pcafe_sp_field .iti input[type="tel"],
      #hrb-demo-form .pcafe_sp_field .iti input[type="tel"] {
        padding-left: 80px !important;
      }
    }

    /* Book Demo: FINAL match Contact Us country dropdown style */
    body.page-template-page-book-demo #hrb-demo-form .gform_wrapper,
    body.page-template-page-book-demo #hrb-demo-form .gform_body,
    body.page-template-page-book-demo #hrb-demo-form .gform_fields,
    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field,
    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone,
    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti,
    body.page-id-31 #hrb-demo-form .gform_wrapper,
    body.page-id-31 #hrb-demo-form .gform_body,
    body.page-id-31 #hrb-demo-form .gform_fields,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti,
    #hrb-demo-form .gform_wrapper,
    #hrb-demo-form .gform_body,
    #hrb-demo-form .gform_fields,
    #hrb-demo-form .pcafe_sp_field,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti {
      overflow: visible !important;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field,
    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone,
    #hrb-demo-form .pcafe_sp_field,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone {
      position: relative !important;
      overflow: visible !important;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field,
    #hrb-demo-form .pcafe_sp_field {
      z-index: 20 !important;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti {
      width: 100% !important;
      display: block !important;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti input[type="tel"],
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti input[type="tel"],
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti input[type="tel"] {
      padding-left: 92px !important;
      padding-right: 12px !important;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__flag-container,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__flag-container,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__flag-container {
      z-index: 30 !important;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__selected-country,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__selected-country,
    #hrb-demo-form .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;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__selected-country-primary,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__selected-country-primary,
    #hrb-demo-form .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;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__selected-country-primary .iti__flag,
    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__country .iti__flag,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__selected-country-primary .iti__flag,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__country .iti__flag,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__selected-country-primary .iti__flag,
    #hrb-demo-form .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;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__selected-dial-code,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__selected-dial-code,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__selected-dial-code {
      color: #2d3d5a !important;
      font-size: 0.9rem !important;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__country-list,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__country-list,
    #hrb-demo-form .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;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__country,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__country,
    #hrb-demo-form .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;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__country.iti__highlight,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__country.iti__highlight,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__country.iti__highlight {
      background: #f3f7ff !important;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__country-container,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__country-container,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__country-container {
      left: 1px !important;
      top: 1px !important;
      bottom: 1px !important;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__selected-country,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__selected-country,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__selected-country {
      min-width: 72px !important;
      gap: 6px !important;
      padding-right: 6px !important;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__selected-country-primary,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__selected-country-primary,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__selected-country-primary {
      gap: 6px !important;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__selected-dial-code,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__selected-dial-code,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__selected-dial-code {
      margin-left: 2px !important;
      font-weight: 500 !important;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown input[type="tel"],
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown input[type="tel"],
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown input[type="tel"] {
      padding-left: 92px !important;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__arrow,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__arrow,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown .iti__arrow {
      margin-left: 2px !important;
    }

    @media (max-width: 575px) {
      body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown input[type="tel"],
      body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown input[type="tel"],
      #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti.iti--allow-dropdown input[type="tel"] {
        padding-left: 88px !important;
      }
    }

    /* Book Demo: hard override to match Contact Us phone selector */
    #hrb-demo-form .iti .iti__country-container,
    #hrb-demo-form .iti .iti__flag-container {
      left: 1px !important;
      top: 1px !important;
      bottom: 1px !important;
      width: 66px !important;
      border-right: 1px solid #d5deea !important;
      border-radius: 11px 0 0 11px !important;
      background: #ffffff !important;
      overflow: hidden !important;
      box-shadow: none !important;
    }

    #hrb-demo-form .iti .iti__selected-country,
    #hrb-demo-form .iti .iti__selected-flag,
    #hrb-demo-form .iti .iti__selected-country-primary {
      border-right: 0 !important;
      border-left: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
      outline: 0 !important;
    }

    #hrb-demo-form .iti .iti__selected-country::before,
    #hrb-demo-form .iti .iti__selected-country::after,
    #hrb-demo-form .iti .iti__selected-country-primary::before,
    #hrb-demo-form .iti .iti__selected-country-primary::after {
      content: none !important;
      display: none !important;
    }

    #hrb-demo-form .iti.iti--allow-dropdown input[type="tel"] {
      padding-left: 84px !important;
      padding-right: 12px !important;
      text-align: left !important;
      direction: ltr !important;
    }

    @media (max-width: 575px) {
      #hrb-demo-form .iti.iti--allow-dropdown input[type="tel"] {
        padding-left: 80px !important;
      }
    }

    /* Book Demo: phone selector separator cleanup (match Contact Us) */
    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__flag-container,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__flag-container,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__flag-container {
      width: 66px !important;
      border-right: 1px solid #d5deea !important;
      border-radius: 11px 0 0 11px !important;
      background: #ffffff !important;
      overflow: hidden !important;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__selected-country,
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__selected-country,
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti__selected-country {
      border-right: 0 !important;
      border-radius: 11px 0 0 11px !important;
      padding: 0 7px !important;
      gap: 4px !important;
      background: transparent !important;
    }

    body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti input[type="tel"],
    body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti input[type="tel"],
    #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti input[type="tel"] {
      padding-left: 84px !important;
    }

    @media (max-width: 575px) {
      body.page-template-page-book-demo #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti input[type="tel"],
      body.page-id-31 #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti input[type="tel"],
      #hrb-demo-form .pcafe_sp_field .ginput_container_phone .iti input[type="tel"] {
        padding-left: 80px !important;
      }
    }

    /* Book Demo: dropdown popup sizing/position same as Contact Us */
    #hrb-demo-form .iti .iti__country-container {
      width: auto !important;
      min-width: 0 !important;
      max-width: none !important;
      overflow: visible !important;
      border-right: 0 !important;
      background: transparent !important;
    }

    #hrb-demo-form .iti .iti__country-list {
      top: calc(100% + 6px) !important;
      left: 0 !important;
      width: 100% !important;
      max-width: 100% !important;
      min-width: 0 !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;
      z-index: 9999 !important;
    }

/* Book Demo: match Contact Us common error message style */
#hrb-demo-form .gform_validation_errors,
#hrb-demo-form .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 .gform_validation_errors > h2 {
  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;
  display: block !important;
  gap: 0 !important;
}

#hrb-demo-form .gform_submission_error {
  display: block !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
}

#hrb-demo-form .gform_validation_errors > h2::before,
#hrb-demo-form .gform_submission_error::before {
  content: none !important;
  display: none !important;
}

#hrb-demo-form .gform_validation_errors ol,
#hrb-demo-form .gform_validation_errors ul {
  display: none !important;
}

#hrb-demo-form .validation_message,
#hrb-demo-form .gfield_validation_message,
#hrb-demo-form .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 .gfield_error input,
#hrb-demo-form .gfield_error select,
#hrb-demo-form .gfield_error textarea {
  border-color: #ef4444 !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

/* Book Demo: prevent inner duplicate error box (match Contact Us single-box style) */
#hrb-demo-form .gform_validation_errors {
  outline: 0 !important;
}

#hrb-demo-form .gform_validation_errors > h2.gform_submission_error,
#hrb-demo-form .gform_validation_errors > .gform_submission_error {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #ef4444 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
  display: block !important;
  outline: 0 !important;
}

#hrb-demo-form .gform_validation_errors > h2.gform_submission_error::before,
#hrb-demo-form .gform_validation_errors > .gform_submission_error::before {
  content: none !important;
  display: none !important;
}

/* Keep boxed style only when Gravity renders standalone submission error */
#hrb-demo-form .gform_wrapper > .gform_submission_error,
#hrb-demo-form form > .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;
}

/* Book Demo: fully hide Gravity Forms error icons (match Contact Us) */
#hrb-demo-form .gform_validation_errors .gform-icon,
#hrb-demo-form .gform_validation_errors .gform-icon--circle-error,
#hrb-demo-form .gform_validation_errors h2 svg,
#hrb-demo-form .gform_validation_errors h2 i,
#hrb-demo-form .gform_validation_errors .gform_submission_error svg,
#hrb-demo-form .gform_validation_errors .gform_submission_error i,
#hrb-demo-form .gform_submission_error .gform-icon,
#hrb-demo-form .gform_submission_error svg,
#hrb-demo-form .gform_submission_error i {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

#hrb-demo-form .gform_validation_errors h2::before,
#hrb-demo-form .gform_validation_errors h2::after,
#hrb-demo-form .gform_validation_errors .gform_submission_error::before,
#hrb-demo-form .gform_validation_errors .gform_submission_error::after,
#hrb-demo-form .gform_submission_error::before,
#hrb-demo-form .gform_submission_error::after {
  content: none !important;
  display: none !important;
}
