/* ============================================================
   RETAIL INDUSTRY PAGE
============================================================ */
.hrb-retail-hero {
  position: relative;
  overflow: hidden;
  padding: 142px 0 92px;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    radial-gradient(circle at 18% 15%, rgba(13,148,136,0.32), transparent 34%),
    linear-gradient(135deg, #086e68 0%, #0f172a 100%);
  background-size: 72px 72px, 72px 72px, auto, auto;
  color: white;
}

.hrb-retail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 700;
}

.hrb-retail-breadcrumb a:hover,
.hrb-retail-breadcrumb span:last-child { color: white; }

.hrb-retail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.86fr);
  gap: 52px;
  align-items: center;
}

.hrb-retail-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  background: rgba(13,148,136,0.28);
  color: #c9fbf4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hrb-retail-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary-light);
}

.hrb-retail-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: white;
  font-size: clamp(42px, 5.5vw, 64px);
  line-height: 1.06;
  letter-spacing: 0;
}

.hrb-retail-hero p {
  max-width: 720px;
  color: rgba(255,255,255,0.84);
  font-size: 19px;
  line-height: 1.75;
}

.hrb-retail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hrb-retail-hero__image {
  position: relative;
  margin: 0;
}

.hrb-retail-hero__image::before {
  content: '';
  position: absolute;
  inset: 12% 4% 4%;
  border-radius: 32px;
  background: rgba(45,212,191,0.18);
  filter: blur(34px);
}

.hrb-retail-hero__image img {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  border-radius: 28px;
  object-fit: contain;
}

.hrb-retail-challenges,
.hrb-retail-workflow,
.hrb-retail-example,
.hrb-retail-faq {
  padding: 80px 0;
  background: white;
}

.hrb-retail-features,
.hrb-retail-models {
  padding: 80px 0;
  background: var(--bg-alt);
}

.hrb-retail-section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.hrb-retail-section-head h2,
.hrb-retail-split h2,
.hrb-retail-compliance h2,
.hrb-retail-example h2 {
  margin-bottom: 14px;
  color: var(--dark);
}

.hrb-retail-section-head p,
.hrb-retail-section-sub {
  color: var(--text-muted);
  font-size: 17px;
}

.hrb-retail-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.hrb-retail-split--reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.hrb-retail-side-image {
  margin: 28px 0 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--bg-alt);
}

.hrb-retail-side-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hrb-retail-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.hrb-retail-card-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hrb-retail-card,
.hrb-retail-feature,
.hrb-retail-model,
.hrb-retail-step {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-sm);
}

.hrb-retail-card,
.hrb-retail-feature {
  padding: 26px;
}

.hrb-retail-card__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--primary-xlight);
  color: var(--primary);
  font-weight: 900;
}

.hrb-retail-card h3,
.hrb-retail-feature h3,
.hrb-retail-model h3,
.hrb-retail-step h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.hrb-retail-card p,
.hrb-retail-feature p,
.hrb-retail-model p,
.hrb-retail-step p {
  color: var(--text-muted);
  font-size: 15px;
}

.hrb-retail-feature {
  position: relative;
  overflow: hidden;
}

.hrb-retail-feature::before {
  content: '';
  display: block;
  width: 32px;
  height: 5px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--primary);
}

.hrb-retail-compliance {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d9488 0%, #0f172a 100%);
  color: white;
}

.hrb-retail-compliance .hrb-section-label {
  background: rgba(255,255,255,0.12);
  color: #c9fbf4;
}

.hrb-retail-compliance h2 {
  color: white;
}

.hrb-retail-compliance p {
  max-width: 640px;
  color: rgba(255,255,255,0.82);
  font-size: 17px;
}

.hrb-retail-compliance__box {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
}

.hrb-retail-compliance__list {
  display: grid;
  gap: 12px;
}

.hrb-retail-compliance__list span {
  position: relative;
  padding: 16px 18px 16px 46px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  color: white;
  font-weight: 800;
}

.hrb-retail-compliance__list span::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.hrb-retail-steps {
  display: grid;
  gap: 16px;
}

.hrb-retail-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px;
}

.hrb-retail-step span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-weight: 900;
}

.hrb-retail-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.hrb-retail-model {
  overflow: hidden;
}

.hrb-retail-model img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--primary-xlight);
}

.hrb-retail-model h3,
.hrb-retail-model p {
  margin-left: 24px;
  margin-right: 24px;
}

.hrb-retail-model h3 {
  margin-top: 22px;
}

.hrb-retail-model p {
  margin-bottom: 24px;
}

.hrb-retail-example__box,
.hrb-retail-final__box {
  overflow: hidden;
  border-radius: var(--radius-xl);
  text-align: center;
}

.hrb-retail-example__box {
  padding: 48px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}

.hrb-retail-example__box p {
  max-width: 800px;
  margin: 0 auto 24px;
  color: var(--text-muted);
  font-size: 17px;
}

.hrb-retail-example__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.hrb-retail-example__links a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hrb-retail-faq {
  background: var(--bg-alt);
}

.hrb-retail-faq__list {
  max-width: 860px;
  margin: 0 auto;
}

.hrb-retail-faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
}

.hrb-retail-faq__item + .hrb-retail-faq__item {
  margin-top: 12px;
}

.hrb-retail-faq__item summary {
  position: relative;
  padding: 20px 56px 20px 22px;
  color: var(--dark);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.hrb-retail-faq__item summary::-webkit-details-marker { display: none; }

.hrb-retail-faq__item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 22px;
  font-weight: 800;
}

.hrb-retail-faq__item[open] summary::after { content: '-'; }

.hrb-retail-faq__item p {
  padding: 0 22px 22px;
  color: var(--text-muted);
}

.hrb-retail-final {
  padding: 80px 0;
  background: white;
}

.hrb-retail-final__box {
  padding: 56px 34px;
  background:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(135deg, #0d9488 0%, #0f172a 100%);
  background-size: 54px 54px, 54px 54px, auto;
  color: white;
}

.hrb-retail-final__box h2 {
  max-width: 740px;
  margin: 0 auto 14px;
  color: white;
}

.hrb-retail-final__box p {
  max-width: 690px;
  margin: 0 auto 26px;
  color: rgba(255,255,255,0.82);
  font-size: 17px;
}

@media (max-width: 1024px) {
  .hrb-retail-hero__grid,
  .hrb-retail-split,
  .hrb-retail-split--reverse,
  .hrb-retail-compliance__box {
    grid-template-columns: 1fr;
  }

  .hrb-retail-hero__image img {
    max-width: 620px;
    margin: 0 auto;
  }

  .hrb-retail-card-grid,
  .hrb-retail-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .hrb-retail-hero {
    padding: 122px 0 72px;
  }

  .hrb-retail-hero p {
    font-size: 16px;
  }

  .hrb-retail-hero__actions {
    flex-direction: column;
  }

  .hrb-retail-hero__actions .hrb-btn {
    width: 100%;
    min-width: 0;
  }

  .hrb-retail-challenges,
  .hrb-retail-features,
  .hrb-retail-compliance,
  .hrb-retail-workflow,
  .hrb-retail-models,
  .hrb-retail-example,
  .hrb-retail-faq,
  .hrb-retail-final {
    padding: 56px 0;
  }

  .hrb-retail-card-grid,
  .hrb-retail-card-grid--two,
  .hrb-retail-model-grid {
    grid-template-columns: 1fr;
  }

  .hrb-retail-card,
  .hrb-retail-feature {
    padding: 22px;
  }

  .hrb-retail-step {
    grid-template-columns: 1fr;
  }

  .hrb-retail-example__box {
    padding: 36px 22px;
  }
}
