@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800&family=Barlow+Condensed:wght@400;600;700;800;900&display=swap');

:root {
  --orange: #E8721E;
  --orange-light: #ff8c3a;
  --dark-navy: #2C3E6B;
  --navy: #344270;
  --light-gray: #F5F6FA;
  --white: #ffffff;
  --text: #2d3748;
  --text-muted: #718096;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background: #fff;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 26, 53, 0.97);
  backdrop-filter: blur(16px);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid rgba(232, 114, 30, 0.15);
}

.nav-logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 4px;
  transition: all 0.25s;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  border-radius: 4px;
  padding: 8px 22px !important;
}

.nav-cta:hover {
  background: #d45e0a !important;
}

/* ── HERO BANNER ── */
.service-hero {
  min-height: 480px;
  background: linear-gradient(135deg, #0a1628 0%, #1a2545 50%, #0f1a35 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 114, 30, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 114, 30, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 114, 30, 0.15), transparent 70%);
  top: -100px;
  right: -80px;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(44, 62, 107, 0.6), transparent 70%);
  bottom: -60px;
  left: -60px;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  width: 100%;
}

.service-hero-text {
  max-width: 700px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb span {
  color: var(--orange);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.25);
}

.service-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 114, 30, 0.12);
  border: 1px solid rgba(232, 114, 30, 0.35);
  color: var(--orange);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
  box-shadow: 0 0 6px var(--orange);
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

/* Hero h1 — works whether written as <h1 class="service-hero"> or just <h1> inside .service-hero */
.service-hero h1,
h1.service-hero {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 20px;
}

.service-hero h1 span,
h1.service-hero span {
  color: var(--orange);
}

.service-hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 600px;
}

/* Legacy small icon wrap — kept for pages that still use it */
.hero-icon-wrap {
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-icon-wrap svg {
  width: 64px;
  height: 64px;
}

/* ── HERO VISUAL CARD (animated SVG illustration) ── */
.hero-visual-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 16px;
  width: 340px;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: cardFloat 4s ease-in-out infinite;
}

.hero-illustration {
  width: 100%;
  height: auto;
  display: block;
}

.rfid-card {
  animation: rfidFloat 3s ease-in-out infinite;
  transform-origin: center;
}

@keyframes rfidFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(-3deg);
  }

  50% {
    transform: translateY(-8px) rotate(-3deg);
  }
}

@keyframes cardFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--orange);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}

.cta-strip-text {
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.cta-strip-text span {
  opacity: 0.85;
  font-weight: 400;
  font-size: 0.9rem;
  margin-left: 10px;
}

.cta-strip-btn {
  background: white;
  color: var(--orange);
  padding: 10px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}

.cta-strip-btn:hover {
  background: var(--dark-navy);
  color: white;
  transform: translateY(-2px);
}

/* ── SECTIONS ── */
section {
  padding: 80px 40px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--dark-navy);
  margin-bottom: 14px;
  line-height: 1.1;
}

.section-title span {
  color: var(--orange);
}

.section-sub {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 620px;
}

/* ── OVERVIEW ── */
.overview-section {
  background: var(--light-gray);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.overview-text p {
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 1rem;
  margin-bottom: 18px;
}

.overview-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: white;
  border-radius: 10px;
  border-left: 3px solid var(--orange);
  transition: all 0.3s;
}

.highlight-item:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.highlight-icon {
  width: 36px;
  height: 36px;
  background: rgba(232, 114, 30, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon svg {
  width: 18px;
  height: 18px;
}

.highlight-text h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 3px;
}

.highlight-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ── STATS PANEL ── */
.overview-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: white;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s;
}

.stat-card:first-child {
  background: var(--dark-navy);
}

.stat-card:first-child .stat-num {
  color: var(--orange);
}

.stat-card:first-child .stat-label {
  color: rgba(255, 255, 255, 0.6);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--dark-navy);
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
  display: block;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── FEATURES ── */
.features-section {
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.feature-card {
  background: white;
  border: 1px solid #e8ecf5;
  border-radius: 14px;
  padding: 32px 26px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 44px rgba(44, 62, 107, 0.13);
  border-color: transparent;
}

.feature-card-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--dark-navy), #1a2545);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(44, 62, 107, 0.22);
  transition: transform 0.3s;
}

.feature-card-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card:hover .feature-card-icon {
  transform: scale(1.1) rotate(-6deg);
}

.feature-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.feature-card:hover h4 {
  color: var(--orange);
}

.feature-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── HOW IT WORKS ── */
.process-section {
  background: var(--dark-navy);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 114, 30, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 114, 30, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.process-section .section-title {
  color: white;
}

.process-section .section-sub {
  color: rgba(255, 255, 255, 0.55);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232, 114, 30, 0.4), var(--orange), rgba(232, 114, 30, 0.4), transparent);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #c55c0a);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(232, 114, 30, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover .step-num {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(232, 114, 30, 0.6);
}

.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* ── INDUSTRIES ── */
.industries-section {
  background: var(--light-gray);
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.industry-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: white;
  border: 2px solid #e8ecf5;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark-navy);
  transition: all 0.3s;
  cursor: default;
}

.industry-chip:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(232, 114, 30, 0.16);
}

.industry-chip span {
  font-size: 1.2rem;
}

/* ── BRANDS ── */
.brands-section {
  background: white;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.brand-card {
  background: var(--light-gray);
  border: 1px solid #e8ecf5;
  border-radius: 12px;
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.brand-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 62, 107, 0.1);
}

.brand-card img {
  max-width: 100px;
  max-height: 50px;
  filter: grayscale(0.3);
  opacity: 0.8;
  transition: all 0.3s;
}

.brand-card:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ── FAQ ── */
.faq-section {
  background: var(--light-gray);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  max-width: 860px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  border: 1px solid #e8ecf5;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(232, 114, 30, 0.35);
}

.faq-q {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}

.faq-q h4 {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--dark-navy);
  flex: 1;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(232, 114, 30, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 300;
}

.faq-item.open .faq-icon {
  background: var(--orange);
  color: white;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-a p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(135deg, #0a1628, #1a2545);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 114, 30, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 114, 30, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
}

.final-cta h2 span {
  color: var(--orange);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--orange);
  color: white;
  padding: 14px 34px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: #d45e0a;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(232, 114, 30, 0.45);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 14px 34px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}

/* ── FOOTER ── */
.page-footer {
  background: #0a1628;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left img {
  height: 42px;
}

.footer-right {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-right span {
  color: var(--orange);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--orange);
}

/* ── BACK LINK ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: gap 0.2s;
}

.back-link:hover {
  gap: 12px;
}

/* ── FLOATING CALL BUTTON ── */
.phone-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(232, 114, 30, 0.5);
  transition: all 0.3s;
}

.phone-float::before {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(232, 114, 30, 0.5);
  animation: ring 2.5s ease-out infinite;
}

@keyframes ring {
  0% {
    transform: scale(1);
    opacity: .8
  }

  100% {
    transform: scale(1.8);
    opacity: 0
  }
}

.phone-float:hover {
  transform: scale(1.12);
  background: #d45e0a;
}

.phone-float svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media(max-width: 900px) {
  .service-hero-content {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    justify-items: center;
  }

  /* Show card on tablet */
  .hero-visual-card {
    display: block;
    width: 100%;
    max-width: 340px;
    margin: 24px auto 0;
  }

  .hero-visual-card svg {
    width: 100%;
    height: auto;
  }

  .hero-icon-wrap {
    display: none;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps::before {
    display: none;
  }

  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }
}

@media(max-width: 600px) {

  /* Show card on mobile */
  .hero-visual-card {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  section {
    padding: 60px 20px;
  }

  .cta-strip {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .page-footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════
   CUSTOM SCROLLBAR — SecureHub
   Add this to your service-page.css or style.css
═══════════════════════════════════════════════ */

/* ── Firefox ── */
* {
  scrollbar-width: thin;
  scrollbar-color: #e8721e rgba(15, 24, 48, 0.95);
}

/* ── Chrome / Edge / Safari ── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(15, 24, 48, 0.95);
  border-left: 1px solid rgba(232, 114, 30, 0.08);
}

::-webkit-scrollbar-thumb {
  background: #e8721e;
  border-radius: 10px;
  border: 2px solid rgba(15, 24, 48, 0.95);
  transition: background 0.3s ease, border-width 0.3s ease, box-shadow 0.3s ease;
}

/* ── Idle state (not scrolling) ── */
::-webkit-scrollbar-thumb:not(:active) {
  background: #e8721e;
  box-shadow: none;
}

/* ── Hover state ── */
::-webkit-scrollbar-thumb:hover {
  background: #ff9a4d;
  border-width: 1px;
  box-shadow:
    0 0 8px #e8721e,
    0 0 18px rgba(232, 114, 30, 0.5);
}

/* ── Active / dragging state ── */
::-webkit-scrollbar-thumb:active {
  background: #ff6a00;
  border-width: 1px;
  box-shadow:
    0 0 12px #e8721e,
    0 0 28px rgba(232, 114, 30, 0.7);
}

::-webkit-scrollbar-corner {
  background: rgba(15, 24, 48, 0.95);
}

/* ══════════════════════════════════════════════
   SCROLL-TRIGGERED GLOW ANIMATION
   The .is-scrolling class is toggled by JS below.
   The scrollbar thumb glows orange while scrolling
   and fades back when the user stops.
══════════════════════════════════════════════ */
body.is-scrolling::-webkit-scrollbar-thumb {
  background: #ff9a4d;
  border-width: 1px;
  box-shadow:
    0 0 10px #e8721e,
    0 0 22px rgba(232, 114, 30, 0.65),
    0 0 40px rgba(232, 114, 30, 0.25);
  transition: background 0.1s ease, box-shadow 0.1s ease;
}

/* ── Scrollbar track glow while scrolling ── */
body.is-scrolling::-webkit-scrollbar-track {
  border-left: 1px solid rgba(232, 114, 30, 0.25);
  transition: border-color 0.1s ease;
}