/* ============================================================
   CSS TOKENS (scoped to blog post page classes)
============================================================ */
:root {
  --hrb-primary:        #0D9488;
  --hrb-primary-hover:  #14B8A6;
  --hrb-primary-xlight: #F0FDFA;
  --hrb-primary-dark:   #065F46;
  --hrb-accent:         #F59E0B;
  --hrb-accent-hover:   #FBBF24;
  --hrb-dark:           #0F172A;
  --hrb-dark-2:         #1E293B;
  --hrb-text:           #334155;
  --hrb-text-muted:     #64748B;
  --hrb-text-light:     #94A3B8;
  --hrb-bg-alt:         #F8FAFC;
  --hrb-border:         #E2E8F0;
  --hrb-radius-sm:      8px;
  --hrb-radius-md:      12px;
  --hrb-radius-lg:      16px;
  --hrb-radius-full:    9999px;
  --hrb-shadow-lg:      0 8px 40px rgba(0,0,0,.12);
}

/* ============================================================
   READING PROGRESS BAR
============================================================ */
#hrb-progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--hrb-primary); z-index: 1001;
  transition: width 0.1s linear;
}

/* ============================================================
   BUTTONS (blog post page)
============================================================ */
.hrb-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 28px; border-radius: var(--hrb-radius-md);
  font-family: inherit; font-size: 15px; font-weight: 700;
  transition: all .2s; text-decoration: none; white-space: nowrap;
  cursor: pointer; border: none;
}
.hrb-btn--accent {
  background: var(--hrb-accent); color: var(--hrb-dark);
  box-shadow: 0 4px 16px rgba(245,158,11,.3);
}
.hrb-btn--accent:hover {
  background: var(--hrb-accent-hover); transform: translateY(-2px); color: var(--hrb-dark);
}
.hrb-btn--outline-white {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5);
}
.hrb-btn--outline-white:hover {
  background: rgba(255,255,255,.12); border-color: #fff; color: #fff;
}

/* ============================================================
   HERO
============================================================ */
.hrb-post-hero {
  background: linear-gradient(135deg, #0A7075 0%, #064E52 40%, #0F172A 100%);
  padding: 120px 0 64px; position: relative; overflow: hidden;
}
.hrb-post-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.hrb-post-hero__inner {
  position: relative; z-index: 1; max-width: 800px;
}
@media (max-width: 767px) {
  .hrb-post-hero { padding: 90px 0 48px; }
}

/* Breadcrumb */
.hrb-breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  list-style: none; font-size: 13px; margin-bottom: 28px;
  padding: 0;
}
.hrb-breadcrumb li { display: flex; align-items: center; gap: 6px; }
.hrb-breadcrumb a { color: rgba(255,255,255,.65); transition: color .15s; text-decoration: none; }
.hrb-breadcrumb a:hover { color: #fff; }
.hrb-breadcrumb__sep { color: rgba(255,255,255,.35); font-size: 12px; }
.hrb-breadcrumb__current { color: rgba(255,255,255,.85); }

/* Category pill */
.hrb-post-cat {
  display: inline-block;
  background: rgba(13,148,136,.9); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 5px 16px; border-radius: var(--hrb-radius-full); margin-bottom: 20px;
}

/* Title */
.hrb-post-hero h1,
.hrb-post-hero__title {
  color: #fff; font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 28px;
}

/* Meta row */
.hrb-post-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 28px;
}
.hrb-post-meta__author {
  display: flex; align-items: center; gap: 10px;
}
.hrb-post-meta__avatar,
.hrb-post-meta__author img {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #0D9488, #065F46);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
  border: 2px solid rgba(255,255,255,.3);
  object-fit: cover;
}
.hrb-post-meta__name { font-size: 15px; font-weight: 600; color: #fff; }
.hrb-post-meta__sep  { color: rgba(255,255,255,.35); }
.hrb-post-meta__date,
.hrb-post-meta__read {
  font-size: 14px; color: rgba(255,255,255,.72);
  display: flex; align-items: center; gap: 5px;
}

/* Share buttons */
.hrb-post-share {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.hrb-post-share__label {
  font-size: 13px; color: rgba(255,255,255,.6); font-weight: 500;
}
.hrb-share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  height: 34px; padding: 0 14px; border-radius: var(--hrb-radius-full);
  font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s;
  text-decoration: none; border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.9); position: relative;
  font-family: inherit;
}
.hrb-share-btn:hover {
  background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.6); color: #fff;
}
.hrb-copy-tooltip {
  position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%);
  background: var(--hrb-dark); color: #fff; font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 6px; white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity .2s;
}
.hrb-copy-tooltip.visible { opacity: 1; }

/* ============================================================
   FEATURED IMAGE
============================================================ */
.hrb-feat-img { background: #fff; padding: 0; }
.hrb-feat-img__wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.hrb-feat-img__photo {
  width: 100%; border-radius: 0 0 16px 16px;
  max-height: 480px; object-fit: cover; display: block;
}
.hrb-feat-img__placeholder {
  background: var(--hrb-bg-alt); border: 2px dashed var(--hrb-border);
  border-radius: 0 0 16px 16px; height: 400px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px; color: var(--hrb-text-muted);
}
.hrb-feat-img__placeholder span { font-size: 14px; }
@media (max-width: 767px) {
  .hrb-feat-img__placeholder { height: 200px; }
}

/* ============================================================
   SUMMARY / KEY TAKEAWAYS
============================================================ */
.hrb-summary {
  background: var(--hrb-bg-alt); border: 1px solid var(--hrb-border);
  border-left: 3px solid var(--hrb-primary);
  border-radius: 0 var(--hrb-radius-md) var(--hrb-radius-md) 0;
  padding: 20px 24px; margin: 28px 0;
}
.hrb-summary__label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--hrb-primary); margin-bottom: 12px;
}
.hrb-summary__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.hrb-summary__list li {
  font-size: 15px; line-height: 1.65; color: var(--hrb-text);
  padding-left: 20px; position: relative;
}
.hrb-summary__list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; background: var(--hrb-primary); border-radius: 50%;
}

/* ============================================================
   BODY LAYOUT
============================================================ */
.hrb-post-body { background: var(--hrb-bg-alt); padding: 56px 0; }
.hrb-post-layout {
  display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start;
}
@media (min-width: 1024px) {
  .hrb-post-layout { grid-template-columns: 1fr 300px; gap: 48px; }
}
@media (max-width: 767px) {
  .hrb-post-body { padding: 32px 0; }
}

/* ============================================================
   ARTICLE BODY TYPOGRAPHY
============================================================ */
.hrb-article {
  background: #fff; border-radius: var(--hrb-radius-lg);
  padding: 48px 40px; border: 1px solid var(--hrb-border);
}
@media (max-width: 767px) {
  .hrb-article { padding: 28px 20px; border-radius: var(--hrb-radius-md); }
}
.hrb-article h2 {
  font-size: 28px; font-weight: 700; color: var(--hrb-dark);
  margin: 48px 0 20px; padding-top: 12px;
  border-top: 2px solid var(--hrb-primary-xlight);
}
.hrb-article h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.hrb-article h3 {
  font-size: 21px; font-weight: 700; color: var(--hrb-dark); margin: 32px 0 14px;
}
.hrb-article p {
  font-size: 17px; line-height: 1.85; color: var(--hrb-text); margin-bottom: 20px;
}
.hrb-article ul { margin: 0 0 24px; padding-left: 0; list-style: none; }
.hrb-article ul li {
  font-size: 17px; line-height: 1.75; color: var(--hrb-text);
  padding: 6px 0 6px 28px; position: relative;
}
.hrb-article ul li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; background: var(--hrb-primary); border-radius: 50%;
}
.hrb-article ol {
  margin: 0 0 24px; padding-left: 0; list-style: none; counter-reset: hrb-ol;
}
.hrb-article ol li {
  font-size: 17px; line-height: 1.75; color: var(--hrb-text);
  padding: 6px 0 6px 40px; position: relative; counter-increment: hrb-ol;
}
.hrb-article ol li::before {
  content: counter(hrb-ol);
  position: absolute; left: 0; top: 7px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--hrb-primary-xlight); color: var(--hrb-primary);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.hrb-article a { color: var(--hrb-primary); text-decoration: underline; text-underline-offset: 2px; }
.hrb-article a:hover { color: var(--hrb-primary-dark); }
.hrb-article strong { color: var(--hrb-dark); }
.hrb-article code {
  background: #F1F5F9; color: var(--hrb-dark); font-size: 14px;
  padding: 2px 6px; border-radius: 4px; font-family: monospace;
}
.hrb-article blockquote {
  border-left: 4px solid var(--hrb-primary); margin: 32px 0;
  padding: 20px 24px; background: var(--hrb-primary-xlight); border-radius: 0 8px 8px 0;
}
.hrb-article blockquote p {
  font-size: 17px; font-style: italic; color: var(--hrb-text); margin: 0 0 8px;
}
.hrb-article blockquote cite {
  font-size: 14px; color: var(--hrb-text-muted); font-style: normal; font-weight: 600;
}

/* Callout boxes */
.hrb-callout {
  background: var(--hrb-primary-xlight); border: 1px solid #99F6E4;
  border-left: 4px solid var(--hrb-primary);
  border-radius: 0 8px 8px 0; padding: 20px 24px; margin: 28px 0;
}
.hrb-callout--warn,
.hrb-callout--warning {
  background: #FFFBEB; border-color: #FCD34D; border-left-color: #F59E0B;
}
.hrb-callout__label {
  font-size: 13px; font-weight: 700; color: var(--hrb-primary);
  margin-bottom: 8px; display: flex; align-items: center; gap: 6px;
}
.hrb-callout--warn .hrb-callout__label,
.hrb-callout--warning .hrb-callout__label { color: #D97706; }
.hrb-callout p { font-size: 16px; line-height: 1.7; color: var(--hrb-text); margin: 0; }
/* backwards-compat alias from old CSS */
.hrb-callout__title { font-size: 13px; font-weight: 700; margin-bottom: 8px; color: var(--hrb-dark); }

/* Tables */
.hrb-table-wrap { overflow-x: auto; margin: 28px 0; border-radius: 8px; border: 1px solid var(--hrb-border); }
.hrb-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.hrb-table thead tr { background: var(--hrb-primary); }
.hrb-table thead th {
  padding: 14px 16px; text-align: left; font-weight: 700;
  color: #fff; font-size: 14px; white-space: nowrap;
}
.hrb-table tbody td { padding: 12px 16px; border-bottom: 1px solid var(--hrb-border); color: var(--hrb-text); }
.hrb-table tbody tr:last-child td { border-bottom: none; }
.hrb-table tbody tr:nth-child(even) { background: var(--hrb-bg-alt); }
.hrb-table tbody tr:hover { background: var(--hrb-primary-xlight); }

/* Inline CTA inside article */
.hrb-inline-cta,
.hrb-article-cta {
  background: linear-gradient(135deg, #0A7075 0%, #0D9488 100%);
  border-radius: var(--hrb-radius-lg); padding: 36px 32px; margin: 40px 0; text-align: center;
}
.hrb-inline-cta__eyebrow {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.7); margin-bottom: 12px;
}
.hrb-inline-cta h3,
.hrb-article-cta h3 { color: #fff; font-size: 22px; margin-bottom: 12px; }
.hrb-inline-cta p,
.hrb-article-cta p { color: rgba(255,255,255,.8); font-size: 16px; margin-bottom: 24px; line-height: 1.6; }

/* FAQ */
.hrb-faq { margin-top: 48px; }
.hrb-faq__heading,
.hrb-faq-section { margin-top: 48px; }
.hrb-faq__item,
.hrb-faq-item {
  border: 1px solid var(--hrb-border); border-radius: var(--hrb-radius-md);
  margin-bottom: 12px; overflow: hidden;
}
.hrb-faq__q,
.hrb-faq-q {
  width: 100%; text-align: left;
  font-size: 16px; font-weight: 600; color: var(--hrb-dark);
  padding: 18px 56px 18px 20px; cursor: pointer; position: relative;
  background: #fff; transition: background .15s; line-height: 1.5;
  font-family: inherit; border: none;
}
.hrb-faq__q:hover,
.hrb-faq-q:hover { background: var(--hrb-bg-alt); }
.hrb-faq__q::after,
.hrb-faq-q::after {
  content: '+'; position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%); font-size: 24px; font-weight: 400;
  color: var(--hrb-primary); line-height: 1;
}
.hrb-faq__item--open .hrb-faq__q,
.hrb-faq-item--open .hrb-faq-q { background: var(--hrb-primary-xlight); }
.hrb-faq__item--open .hrb-faq__q::after,
.hrb-faq-item--open .hrb-faq-q::after { content: '−'; }
.hrb-faq__a,
.hrb-faq-a {
  display: none; padding: 16px 20px 20px;
  border-top: 1px solid var(--hrb-border); background: #fff;
}
.hrb-faq__item--open .hrb-faq__a,
.hrb-faq-item--open .hrb-faq-a { display: block; }
.hrb-faq__a p,
.hrb-faq-a p { font-size: 15px; line-height: 1.75; color: #475569; margin: 0; }

/* Author bio — small row */
.hrb-author-bio {
  display: flex; gap: 12px; align-items: center;
  margin-top: 36px; padding: 16px 20px;
  background: var(--hrb-bg-alt); border-top: 1px solid var(--hrb-border);
  border-radius: var(--hrb-radius-md);
}
.hrb-author-bio__avatar,
.hrb-author-bio img {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #0D9488, #065F46);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
  object-fit: cover;
}
.hrb-author-bio__name { font-size: 14px; font-weight: 700; color: var(--hrb-dark); }
.hrb-author-bio__title { font-size: 13px; color: var(--hrb-text-muted); }
/* hide unused fields if present */
.hrb-author-bio__bio     { display: none; }
.hrb-author-bio__linkedin { display: none; }

/* Scroll reveal */
.hrb-reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.hrb-reveal.hrb-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   SIDEBAR
============================================================ */
.hrb-post-sidebar { position: sticky; top: 96px; }
@media (max-width: 1023px) { .hrb-post-sidebar { position: static; } }

.hrb-sidebar-block {
  background: #fff; border: 1px solid var(--hrb-border);
  border-radius: var(--hrb-radius-lg); padding: 24px; margin-bottom: 20px;
}
.hrb-sidebar-block__heading {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--hrb-dark-2); margin-bottom: 16px;
}

/* TOC */
.hrb-toc__list { display: flex; flex-direction: column; gap: 4px; list-style: none; padding: 0; margin: 0; }
.hrb-toc__link {
  display: block; padding: 7px 12px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--hrb-text-muted);
  text-decoration: none; transition: background .15s, color .15s;
  border-left: 2px solid transparent;
}
.hrb-toc__link:hover { background: var(--hrb-primary-xlight); color: var(--hrb-primary); }
.hrb-toc__link--active {
  background: var(--hrb-primary-xlight); color: var(--hrb-primary);
  border-left-color: var(--hrb-primary); font-weight: 600;
}

/* Related articles in sidebar */
.hrb-related-item {
  display: block; padding: 12px 0; border-bottom: 1px solid var(--hrb-border);
  text-decoration: none; transition: opacity .15s;
}
.hrb-related-item:last-child { border-bottom: none; padding-bottom: 0; }
.hrb-related-item:hover { opacity: .75; }
.hrb-related-cat {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--hrb-primary); margin-bottom: 5px; display: block;
}
.hrb-related-title {
  font-size: 14px; font-weight: 600; color: var(--hrb-dark); line-height: 1.4; margin-bottom: 4px;
}
.hrb-related-meta { font-size: 12px; color: var(--hrb-text-light); display: none; }

/* Sidebar CTA box */
.hrb-sidebar-cta {
  background: linear-gradient(135deg, #0A7075 0%, #064E52 100%);
  border-radius: var(--hrb-radius-lg); padding: 24px; margin-bottom: 20px; text-align: center;
}
.hrb-sidebar-cta h3 { color: #fff; font-size: 16px; margin-bottom: 8px; line-height: 1.4; }
.hrb-sidebar-cta p  { color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.5; margin-bottom: 16px; }
.hrb-sidebar-cta a {
  display: block; background: var(--hrb-accent); color: var(--hrb-dark);
  font-weight: 700; font-size: 14px; padding: 11px 16px;
  border-radius: 8px; text-decoration: none; transition: background .2s;
}
.hrb-sidebar-cta a:hover { background: var(--hrb-accent-hover); color: var(--hrb-dark); }

/* ============================================================
   RELATED POSTS SECTION (below article)
============================================================ */
.hrb-related-posts {
  background: #fff; padding: 72px 0; border-top: 1px solid var(--hrb-border);
}
.hrb-related-posts__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 36px; flex-wrap: wrap; gap: 12px;
}
.hrb-related-posts__header h2 { font-size: 28px; }
.hrb-link-arrow {
  font-size: 15px; font-weight: 600; color: var(--hrb-primary);
  text-decoration: none; display: flex; align-items: center; gap: 4px;
}
.hrb-link-arrow:hover { text-decoration: underline; }
.hrb-related-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 640px) {
  .hrb-related-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Blog cards (shared between related posts + page-blog.php) */
.hrb-blog-card {
  display: block; text-decoration: none;
  background: #fff; border: 1px solid var(--hrb-border);
  border-radius: var(--hrb-radius-lg); overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.hrb-blog-card:hover { box-shadow: var(--hrb-shadow-lg); transform: translateY(-4px); }
.hrb-blog-card__img { height: 180px; position: relative; overflow: hidden; border-radius: 16px 16px 0 0; }
.hrb-blog-card__img-inner { position: absolute; inset: 0; }
.hrb-blog-card__img-inner--payroll              { background: linear-gradient(135deg, #059669, #065F46); }
.hrb-blog-card__img-inner--hrms                 { background: linear-gradient(135deg, #4F46E5, #3730A3); }
.hrb-blog-card__img-inner--karnataka-compliance { background: linear-gradient(135deg, #D97706, #92400E); }
.hrb-blog-card__img-inner--hr-best-practices    { background: linear-gradient(135deg, #DB2777, #9F1239); }
.hrb-blog-card__img-inner--hr-technology        { background: linear-gradient(135deg, #0EA5E9, #0369A1); }
.hrb-blog-card__img-inner--employee-management  { background: linear-gradient(135deg, #A855F7, #7E22CE); }
.hrb-blog-card__img-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.hrb-blog-card__body { padding: 20px 20px 24px; }
.hrb-cat-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  padding: 3px 11px; border-radius: var(--hrb-radius-full); margin-bottom: 14px;
}
.hrb-cat-tag--payroll              { background: #ECFDF5; color: #065F46; }
.hrb-cat-tag--hrms                 { background: #EEF2FF; color: #3730A3; }
.hrb-cat-tag--karnataka-compliance { background: #FFF7ED; color: #92400E; }
.hrb-cat-tag--hr-best-practices    { background: #FFF1F2; color: #9F1239; }
.hrb-cat-tag--hr-technology        { background: #F0F9FF; color: #0369A1; }
.hrb-cat-tag--employee-management  { background: #FDF4FF; color: #7E22CE; }
.hrb-blog-card__title {
  font-size: 17px; font-weight: 700; color: var(--hrb-dark); line-height: 1.35; margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hrb-blog-card__excerpt {
  font-size: 14px; color: var(--hrb-text-muted); line-height: 1.65; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hrb-blog-card__author { display: flex; align-items: center; gap: 8px; }
.hrb-blog-card__avatar,
.hrb-blog-card__author img {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #0D9488, #065F46);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff;
  object-fit: cover;
}
.hrb-blog-card__meta {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--hrb-text-light);
}
.hrb-blog-card__meta .dot { color: var(--hrb-border); }

/* ============================================================
   BOTTOM CTA
============================================================ */
.hrb-bottom-cta {
  background: linear-gradient(135deg, #0A7075 0%, #064E52 40%, #0F172A 100%);
  padding: 96px 0; text-align: center; position: relative; overflow: hidden;
}
.hrb-bottom-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.hrb-bottom-cta__inner {
  position: relative; z-index: 1; max-width: 720px; margin: 0 auto; padding: 0 24px;
}
.hrb-bottom-cta__eyebrow {
  display: inline-block; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.9);
  border-radius: var(--hrb-radius-full); padding: 5px 16px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 24px;
}
.hrb-bottom-cta h2 {
  color: #fff; font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 16px; line-height: 1.2;
}
.hrb-bottom-cta p {
  color: rgba(255,255,255,.75); font-size: 18px; line-height: 1.65; margin-bottom: 40px;
}
.hrb-bottom-cta__btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px;
}
.hrb-bottom-cta__note { font-size: 14px; color: rgba(255,255,255,.55); }
@media (max-width: 767px) {
  .hrb-bottom-cta { padding: 64px 0; }
  .hrb-bottom-cta h2 { font-size: 1.75rem; }
}

/* ============================================================
   STICKY MOBILE CTA
============================================================ */
.hrb-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--hrb-border);
  padding: 12px 20px; z-index: 990;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transform: translateY(100%); transition: transform .3s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
.hrb-sticky-cta--visible { transform: translateY(0); }
@media (min-width: 768px) { .hrb-sticky-cta { display: none !important; } }
.hrb-sticky-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; }
.hrb-sticky-cta__text strong { display: block; font-size: 14px; color: var(--hrb-dark); }
.hrb-sticky-cta__text span  { font-size: 12px; color: var(--hrb-text-muted); }
.hrb-sticky-cta__btn {
  background: var(--hrb-primary); color: #fff;
  font-weight: 700; font-size: 14px; padding: 10px 20px;
  border-radius: 8px; text-decoration: none; white-space: nowrap;
}
.hrb-sticky-cta__btn:hover { background: var(--hrb-primary-hover); color: #fff; }
