/* ==========================================================================
   BoxBreaker Global Ghana — Custom Styles
   Glassmorphism, gradients, floating elements, motion & micro-interactions
   ========================================================================== */

:root {
  --navy-900: #0A1F44;
  --navy-950: #060f22;
  --orange-500: #FF7A1A;
  --orange-400: #ff8438;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  overflow-x: hidden;
}

/* ---------------- Accessibility ---------------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy-900);
  color: #fff;
  padding: 12px 20px;
  z-index: 100;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 2px;
}

/* ---------------- Header / Nav ---------------- */
.glass-nav {
  background: rgba(10, 31, 68, 0.55);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
#site-header.scrolled .glass-nav {
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(10,31,68,0.08);
  box-shadow: 0 10px 30px -15px rgba(10,31,68,0.25);
}
#site-header.scrolled .nav-link,
#site-header.scrolled .font-display,
#site-header.scrolled #menu-icon {
  color: var(--navy-900);
}
#site-header:not(.scrolled) .nav-link {
  color: #fff;
}
#site-header:not(.scrolled) a.font-display {
  color: #fff;
}
#site-header:not(.scrolled) #menu-icon {
  color: #fff;
}

.nav-link {
  position: relative;
  transition: color .25s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--orange-500);
  transition: width .25s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--orange-500); }

/* ---------------- Header logo (color swap on scroll) ---------------- */
.logo-stack {
  position: relative;
  display: inline-block;
  aspect-ratio: 1376 / 301;
}
.logo-img {
  position: absolute;
  inset: 0;
  display: block;
  height: 100%;
  width: 100%;
  transition: opacity .35s ease;
}
#site-header:not(.scrolled) .logo-original { opacity: 0; }
#site-header:not(.scrolled) .logo-orange { opacity: 1; }
#site-header.scrolled .logo-original { opacity: 1; }
#site-header.scrolled .logo-orange { opacity: 0; }

/* ---------------- Header phone link (color swap on scroll) ---------------- */
.phone-link {
  transition: color .3s ease;
}
#site-header:not(.scrolled) .phone-link { color: var(--orange-500); }
#site-header:not(.scrolled) .phone-link:hover { color: #ffcf9e; }
#site-header.scrolled .phone-link { color: var(--navy-800, #0f2140); }
#site-header.scrolled .phone-link:hover { color: var(--orange-500); }

.mobile-link {
  color: #fff;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ---------------- Buttons ---------------- */
.btn-primary, .btn-primary-lg, .btn-ghost-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 9999px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), #f05e08);
  color: #fff;
  padding: 10px 22px;
  font-size: 0.9rem;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -8px rgba(255,122,26,0.6);
}
.btn-primary-lg {
  background: linear-gradient(135deg, var(--orange-500), #f05e08);
  color: #fff;
  padding: 16px 34px;
  font-size: 1rem;
  box-shadow: 0 15px 35px -10px rgba(255,122,26,0.55);
}
.btn-primary-lg:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 45px -10px rgba(255,122,26,0.7);
}
.btn-ghost-lg {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  padding: 16px 34px;
  font-size: 1rem;
  backdrop-filter: blur(10px);
}
.btn-ghost-lg:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

/* ---------------- Hero ---------------- */
.hero-gradient {
  background: linear-gradient(160deg, #060f22 0%, #0A1F44 45%, #142a54 75%, #1c3568 100%);
  position: relative;
}
.hero-mesh {
  background:
    radial-gradient(circle at 15% 20%, rgba(255,122,26,0.25), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(76,111,172,0.35), transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(255,122,26,0.15), transparent 55%);
  animation: meshShift 14s ease-in-out infinite alternate;
}
@keyframes meshShift {
  0% { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.08) translate(-2%, 2%); }
}

.gradient-text {
  background: linear-gradient(90deg, #FF9A4D, #FF7A1A 45%, #ffcf9e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: gradientMove 6s ease infinite;
}
@keyframes gradientMove {
  0%,100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.floating-el {
  position: absolute;
  z-index: 5;
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}

.glass-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5);
}
.glass-card-light {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  box-shadow: 0 20px 40px -18px rgba(10,31,68,0.3);
}
.glass-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
}

.stat-card {
  padding: 18px 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  animation: bounce 2s infinite;
  z-index: 5;
}
@keyframes bounce {
  0%,100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ---------------- Fade / Reveal animations ---------------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- Promo Banner ---------------- */
.promo-pattern {
  background-image: radial-gradient(rgba(255,255,255,0.18) 2px, transparent 2px);
  background-size: 26px 26px;
}
.promo-chip {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: 9999px;
  backdrop-filter: blur(6px);
  transition: transform .2s ease, background .2s ease;
}
.promo-chip:hover {
  background: rgba(10,31,68,0.85);
  transform: translateY(-2px);
}

/* ---------------- Section headers ---------------- */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  color: var(--navy-900);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-sub {
  color: #4d6fac;
  font-size: 1.05rem;
  text-align: center;
}

/* ---------------- Included items ---------------- */
.included-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(10,31,68,0.08);
  padding: 16px 18px;
  border-radius: 14px;
  font-weight: 600;
  color: var(--navy-900);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.included-item i {
  color: var(--orange-500);
  font-size: 1.1rem;
  width: 22px;
}
.included-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px -15px rgba(10,31,68,0.25);
  border-color: rgba(255,122,26,0.4);
}

/* ---------------- Check list ---------------- */
.check-li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-900);
  font-weight: 500;
}
.check-li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #fff;
  background: var(--orange-500);
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ---------------- Browser Frame Mockup ---------------- */
.browser-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(10,31,68,0.4);
  border: 1px solid rgba(10,31,68,0.08);
  aspect-ratio: 4/3;
}
.browser-bar {
  background: #0f2140;
  padding: 10px 14px;
  display: flex;
  gap: 6px;
}
.browser-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}
.browser-bar span:nth-child(1) { background: #ff5f57; }
.browser-bar span:nth-child(2) { background: #febc2e; }
.browser-bar span:nth-child(3) { background: #28c840; }

/* ---------------- Why cards ---------------- */
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,122,26,0.4);
}
.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange-500), #f05e08);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.why-card h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 10px;
}
.why-card p {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ---------------- Pricing Card ---------------- */
.pricing-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(10,31,68,0.3);
  border: 1px solid rgba(10,31,68,0.06);
}
.pricing-glow {
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 0deg, var(--orange-500), transparent 30%, transparent 70%, var(--orange-500));
  opacity: 0.5;
  animation: spin 8s linear infinite;
  z-index: 0;
}
.pricing-card > .relative {
  background: #fff;
  margin: 3px;
  border-radius: 25px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------------- Transparent Pricing Panel ---------------- */
.transparency-panel {
  margin-top: 40px;
  background: #fff;
  border: 1px solid rgba(10,31,68,0.08);
  border-radius: 26px;
  padding: 40px 28px;
  box-shadow: 0 30px 60px -35px rgba(10,31,68,0.25);
}
.price-highlight-card {
  background: #fff7f0;
  border: 1.5px solid rgba(255,122,26,0.25);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(255,122,26,0.3);
}
.phc-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,122,26,0.15);
  color: var(--orange-500);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-size: 1.1rem;
}
.phc-label {
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.phc-value {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--navy-900);
}
.phc-value span {
  font-size: 1rem;
  font-weight: 600;
  color: #4d6fac;
}
.no-fee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2c4a85;
  font-weight: 500;
}
.no-fee-item i {
  color: #e53e3e;
  flex-shrink: 0;
  font-size: 0.85rem;
}

/* ---------------- Notice Box ---------------- */
.notice-box {
  margin-top: 40px;
  background: linear-gradient(135deg, #fff7f0, #fff);
  border: 1.5px solid rgba(255,122,26,0.25);
  border-radius: 22px;
  padding: 28px 32px;
}
.notice-chip {
  background: rgba(10,31,68,0.06);
  color: var(--navy-900);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 9999px;
}

/* ---------------- Portfolio ---------------- */
.portfolio-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(10,31,68,0.07);
  transition: transform .35s ease, box-shadow .35s ease;
}
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(10,31,68,0.3);
}
.portfolio-thumb {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
}
.portfolio-thumb-img {
  background: #0a0714;
  padding: 0;
}
.portfolio-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.portfolio-card:hover .portfolio-thumb-img img {
  transform: scale(1.06);
}
.portfolio-thumb i {
  color: rgba(255,255,255,0.9);
  font-size: 2.4rem;
  margin-bottom: 6px;
  transition: transform .4s ease;
}
.portfolio-card:hover .portfolio-thumb i {
  transform: scale(1.15) rotate(-4deg);
}
.mock-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.35);
}
.portfolio-body {
  padding: 22px 22px 26px;
}
.portfolio-tag {
  display: inline-block;
  background: rgba(255,122,26,0.12);
  color: var(--orange-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 9999px;
  margin-bottom: 12px;
}
.portfolio-body h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.portfolio-body p {
  color: #4d6fac;
  font-size: 0.92rem;
  margin-bottom: 16px;
  line-height: 1.5;
}
.portfolio-link {
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .25s ease, color .25s ease;
}
.portfolio-link:hover {
  color: var(--orange-500);
  gap: 12px;
}

/* ---------------- Feature Cards ---------------- */
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 26px;
  text-align: center;
  transition: transform .3s ease, background .3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255,122,26,0.1);
}
.feature-card i {
  font-size: 1.8rem;
  color: var(--orange-500);
  margin-bottom: 14px;
}
.feature-card h3 {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

/* ---------------- Testimonials ---------------- */
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(10,31,68,0.06);
  box-shadow: 0 20px 40px -25px rgba(10,31,68,0.2);
  transition: transform .3s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
}
.stars {
  color: var(--orange-500);
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.stars i { margin-right: 2px; }
.testimonial-card p {
  color: var(--navy-900);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card footer img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card footer strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.9rem;
}
.testimonial-card footer span {
  color: #4d6fac;
  font-size: 0.8rem;
}

/* ---------------- FAQ ---------------- */
.faq-item {
  background: #fff;
  border: 1px solid rgba(10,31,68,0.08);
  border-radius: 16px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 700;
  color: var(--navy-900);
  text-align: left;
  background: transparent;
}
.faq-question i {
  color: var(--orange-500);
  transition: transform .3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.open .faq-question i {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 240px;
  padding: 0 24px 22px;
}
.faq-answer p {
  color: #4d6fac;
  line-height: 1.6;
}

/* ---------------- Contact Form ---------------- */
.contact-form {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(10,31,68,0.07);
  box-shadow: 0 30px 60px -30px rgba(10,31,68,0.25);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-900);
}
.field .req { color: var(--orange-500); }
.field input, .field select, .field textarea {
  border: 1.5px solid rgba(10,31,68,0.12);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--navy-900);
  background: #f9fafc;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(255,122,26,0.12);
  background: #fff;
}
.field input.invalid, .field select.invalid, .field textarea.invalid {
  border-color: #e53e3e;
}

.form-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: #4d6fac;
  line-height: 1.5;
  margin-top: 22px;
}
.form-disclaimer i {
  color: var(--orange-500);
  margin-top: 2px;
  flex-shrink: 0;
}

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff7f0;
  border: 1px solid rgba(255,122,26,0.3);
  border-radius: 16px;
  padding: 20px;
  margin-top: 24px;
}
.form-success.hidden { display: none; }

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(10,31,68,0.07);
  border-radius: 16px;
  padding: 18px 20px;
}
.contact-info-card i {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,122,26,0.1);
  color: var(--orange-500);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-card strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.85rem;
}
.contact-info-card a {
  color: #4d6fac;
  font-size: 0.9rem;
  word-break: break-word;
}
.contact-info-card a:hover { color: var(--orange-500); }

.whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  padding: 16px;
  border-radius: 16px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -12px rgba(37,211,102,0.6);
}

/* ---------------- Footer ---------------- */
.footer-heading {
  color: #fff;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.footer-link {
  color: rgba(255,255,255,0.6);
  transition: color .2s ease;
}
.footer-link:hover { color: var(--orange-400); }

.social-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background .25s ease, transform .25s ease;
}
.social-icon:hover {
  background: var(--orange-500);
  transform: translateY(-3px);
}

/* ---------------- Sticky WhatsApp ---------------- */
.sticky-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  box-shadow: 0 15px 30px -10px rgba(37,211,102,0.7);
  z-index: 40;
  animation: pulseWA 2.5s ease-in-out infinite;
}
@keyframes pulseWA {
  0%,100% { box-shadow: 0 15px 30px -10px rgba(37,211,102,0.7); }
  50% { box-shadow: 0 15px 30px -10px rgba(37,211,102,0.95), 0 0 0 10px rgba(37,211,102,0.12); }
}

/* ---------------- Scrollbar ---------------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f4fa; }
::-webkit-scrollbar-thumb { background: var(--navy-500, #2c4a85); border-radius: 10px; }
