/* ── Black Zon Brand Colors ── */
:root {
  --bz-charcoal: #111111;
  --bz-gold: #38BDF8;
  --bz-gold-dark: #0EA5E9;
  --bz-gold-light: #BAE6FD;
  --bz-navy: #081C3A;
  --bz-navy-mid: #0d2d4f;
  --bz-white: #FFFFFF;
  --bz-muted: rgba(17, 17, 17, 0.65);
  --bz-border: #e5e1d8;
  --bz-gold-glow: rgba(56, 189, 248, 0.35);
  --bz-navy-glow: rgba(8, 28, 58, 0.08);
}

/* ── Site logo ── */
.site-logo {
  display: inline-flex; align-items: center;
  text-decoration: none;
}
.site-logo-img {
  display: block;
  height: 52px;
  width: auto;
  object-fit: contain;
  background: transparent;
}
.site-logo-img--footer {
  height: 56px;
}

/* ── Language switcher ── */
.lang-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; padding: 6px 12px;
  font-size: 13px; font-weight: 700;
  border: 1.5px solid #e5e1d8; border-radius: 10px;
  background: #fff; color: #081C3A;
  cursor: pointer; transition: border-color 0.2s, color 0.2s, background 0.2s;
  font-family: inherit;
}
.lang-toggle:hover { border-color: #38BDF8; color: #38BDF8; }

/* Direction-aware arrows */
[dir="rtl"] .dir-arrow { transform: none; }
[dir="ltr"] .dir-arrow { transform: scaleX(-1); }

[dir="ltr"] .job-meta .material-symbols-outlined,
[dir="ltr"] .promo-features .material-symbols-outlined { margin-inline-end: 4px; }

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body { overflow-x: hidden; font-family: "IBM Plex Sans Arabic", sans-serif; }

::selection { background: rgba(56, 189, 248, 0.35); color: #111111; }

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.container-pad { padding-inline: 1rem; }
@media (min-width: 768px) { .container-pad { padding-inline: 2rem; } }
@media (min-width: 1024px) { .container-pad { padding-inline: 4rem; } }

/* ── Navbar ── */
.nav-bar { transition: box-shadow 0.3s ease; }
.nav-bar.scrolled { box-shadow: 0 4px 20px rgba(8, 28, 58, 0.08); }

.nav-link { position: relative; padding-bottom: 3px; }
.nav-link::after {
  content: ''; position: absolute; bottom: 0; inset-inline-end: 0;
  width: 0; height: 2px; background: #38BDF8; transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.mobile-menu { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.mobile-menu.open { max-height: 420px; }

.menu-toggle .bar {
  display: block; width: 22px; height: 2px;
  background: #081C3A; border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open .bar:nth-child(2) { opacity: 0; }
.menu-toggle.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ── */
.btn-primary {
  background: linear-gradient(135deg, #38BDF8 0%, #0EA5E9 100%);
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(56, 189, 248, 0.45); }
.btn-primary:active { transform: scale(0.97); }

.btn-ghost {
  border: 1.5px solid #e5e1d8; color: #081C3A; background: #fff;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: #38BDF8; color: #38BDF8; }

.btn-banner-outline {
  border: 2px solid rgba(255,255,255,0.35); color: #fff;
  transition: background 0.2s, border-color 0.2s;
}
.btn-banner-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.6); }

/* ── Hero ── */
.hero-section { position: relative; }

.hero-section--map {
  background: #f7f8fa;
  position: relative;
}

.hero-map-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 15% 40%, rgba(56, 189, 248, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 45% at 85% 55%, rgba(8, 28, 58, 0.05), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f5f6f8 100%);
}

.hero-map-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(8, 28, 58, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 28, 58, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}

.hero-map-pad {
  position: relative;
  z-index: 1;
  padding-block: 2.5rem 2rem;
}

@media (min-width: 1024px) {
  .hero-map-pad { padding-block: 3.5rem 2.5rem; }
}

.hero-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem 3rem;
  }
}

.hero-copy { max-width: 36rem; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-pill--primary {
  background: #081C3A;
  color: #fff;
}

.hero-pill--muted {
  background: rgba(8, 28, 58, 0.06);
  color: #081C3A;
}

.hero-headline-block {
  position: relative;
  margin-bottom: 1.5rem;
}

.hero-dot-pattern {
  position: absolute;
  inset-inline-start: -0.35rem;
  top: 0.35rem;
  width: 2.4rem;
  height: 5.5rem;
  background-image: radial-gradient(#f97316 1.4px, transparent 1.5px);
  background-size: 8px 8px;
  opacity: 0.9;
  pointer-events: none;
}

[dir="ltr"] .hero-dot-pattern { inset-inline-start: auto; inset-inline-end: -0.35rem; }

.hero-headline {
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.15;
  color: #081C3A;
  letter-spacing: -0.02em;
}

.hero-rotator {
  display: block;
  margin-top: 0.2rem;
  min-width: 120px;
  color: #0EA5E9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-rotator.fade-out { opacity: 0; transform: translateY(12px); }

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid #e8eaee;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #081C3A;
  box-shadow: 0 1px 2px rgba(8, 28, 58, 0.04);
}

.hero-tag--orange { color: #ea580c; }
.hero-tag--green { color: #059669; }
.hero-tag--blue { color: #0284c7; }
.hero-tag--purple { color: #7c3aed; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-map-scene {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  justify-self: center;
}

@media (min-width: 1024px) {
  .hero-map-scene {
    margin-inline: 0;
    justify-self: end;
  }
}

.hero-map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.hero-map-canvas {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: 0 0;
}

.hero-map-badge {
  position: absolute;
  left: 50%;
  top: -13px;
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 8px 10px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: translateX(-50%);
  max-width: calc(100% - 2rem);
}

.hero-map-badge.is-switching {
  opacity: 0;
  transform: translateX(-50%) translateY(6px);
}

.hero-map-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34a853;
  animation: heroLivePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes heroLivePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-map-badge-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, #38BDF8, #0EA5E9);
  color: #081C3A;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 0;
}

.hero-map-badge-mark--img {
  background: #fff;
  border: 1px solid #e8eaee;
  padding: 3px;
}

.hero-map-badge-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

.hero-map-badge-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.15;
  min-width: 0;
}

.hero-map-badge-brand {
  font-size: 11px;
  font-weight: 800;
  color: #081C3A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 9.5rem;
}

.hero-map-badge-tag {
  font-size: 10px;
  font-weight: 600;
  color: #34a853;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero-map-live-dot { animation: none; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-image-float { animation: float 5s ease-in-out infinite; }

/* legacy slider (unused on home, kept harmless) */
.hero-slider { position: relative; overflow: hidden; }
.hero-slider--full { width: 100%; border-radius: 0; }
.hero-track {
  display: flex;
  direction: ltr;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  direction: rtl;
}
.hero-slide--bg {
  position: relative;
  min-height: clamp(480px, 76vh, 760px);
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 18, 38, 0.82) 0%, rgba(5, 18, 38, 0.68) 36%, rgba(5, 18, 38, 0.42) 58%, rgba(5, 18, 38, 0.28) 100%);
}
.hero-slide-inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 5rem;
}
.hero-content-wrap {
  width: min(640px, 100%);
}
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 0;
  position: absolute;
  inset-inline: 0;
  bottom: 1.25rem;
  z-index: 5;
}
.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d8d3cb;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}
.hero-dot.active {
  width: 26px;
  background: #38BDF8;
}

/* Promo slides visual */
.hero-promo-card {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(8, 28, 58, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.hero-promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 55%);
  pointer-events: none;
}
.hero-promo-card--gold {
  background: linear-gradient(150deg, #7DD3FC 0%, #38BDF8 55%, #0EA5E9 100%);
}
.hero-promo-card--navy {
  background: linear-gradient(150deg, #163a66 0%, #081C3A 70%);
}
.hero-promo-icon {
  font-size: 110px !important;
  line-height: 1;
  color: #fff;
  filter: drop-shadow(0 8px 18px rgba(8, 28, 58, 0.25));
}
.hero-promo-card--gold .hero-promo-icon { color: #081C3A; }
.hero-promo-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.hero-promo-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.92);
  color: #081C3A;
  box-shadow: 0 4px 12px rgba(8, 28, 58, 0.12);
}
.hero-promo-chip .material-symbols-outlined {
  font-size: 18px;
}

@media (max-width: 640px) {
  .hero-slide--bg {
    min-height: 560px;
    background-position: 60% center;
  }
  .hero-slide-overlay {
    background:
      linear-gradient(180deg, rgba(5, 18, 38, 0.78) 0%, rgba(5, 18, 38, 0.72) 46%, rgba(5, 18, 38, 0.7) 100%);
  }
  .hero-slide-inner {
    align-items: flex-end;
    padding-top: 5.5rem;
    padding-bottom: 5rem;
  }
  .hero-content-wrap {
    width: 100%;
  }
  .hero-headline {
    font-size: clamp(1.9rem, 8vw, 2.5rem) !important;
    line-height: 1.2;
  }
  .hero-tag {
    font-size: 12px;
    padding: 5px 11px;
  }
  .hero-dots { bottom: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-track { transition: none; }
}

/* ── Stats bar ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-card {
  display: flex; align-items: center; gap: 14px;
  padding: 1.25rem; background: #fff;
  border: 1px solid #e5e1d8; border-radius: 16px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.stat-card:hover { box-shadow: 0 8px 24px rgba(8,28,58,0.07); transform: translateY(-2px); }

.stat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.stat-value { display: block; font-size: 1.5rem; font-weight: 700; line-height: 1.2; }
.stat-label { display: block; font-size: 12px; color: var(--bz-muted); margin-top: 2px; }

/* ── Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step-card {
  background: #fff; border-radius: 16px; padding: 1.75rem 1.25rem;
  border: 1px solid #e5e1d8; transition: box-shadow 0.25s, transform 0.25s;
}
.step-card:hover { box-shadow: 0 8px 28px rgba(8,28,58,0.08); transform: translateY(-3px); }

.step-icon {
  position: relative; width: 64px; height: 64px; margin: 0 auto 1rem;
  background: rgba(56, 189, 248, 0.12); border: 2px solid #38BDF8; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #38BDF8;
}
.step-icon .material-symbols-outlined { font-size: 28px; }
.step-num {
  position: absolute; top: -6px; inset-inline-start: -6px;
  width: 24px; height: 24px; background: #38BDF8; color: #fff;
  border-radius: 50%; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ── Why cards ── */
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  background: #f5f6f8; border: 1px solid #e5e1d8; border-radius: 16px;
  padding: 2rem 1.5rem; text-align: center;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.why-card:hover { box-shadow: 0 8px 28px rgba(8,28,58,0.07); transform: translateY(-3px); border-color: rgba(56, 189, 248, 0.25); }

.why-icon {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  background: rgba(56, 189, 248, 0.12); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #38BDF8;
}
.why-icon .material-symbols-outlined { font-size: 26px; }

/* ── Jobs ── */
.jobs-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 640px) { .jobs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .jobs-grid { grid-template-columns: repeat(3, 1fr); } }

.job-card {
  background: #fff; border: 1px solid #e5e1d8; border-radius: 16px;
  padding: 1.25rem; transition: box-shadow 0.25s, transform 0.25s;
}
.job-card:hover { box-shadow: 0 10px 32px rgba(8,28,58,0.09); transform: translateY(-3px); }

.job-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.job-company-logo {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.job-company-logo--img {
  padding: 0.2rem;
  background: #fff;
  border: 1px solid #e5e1d8;
}
.job-company-logo--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.job-company-logo--lg img { border-radius: 10px; }
.job-badge {
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  background: #dcfce7; color: #15803d; border-radius: 999px;
}
.job-badge-hot { background: #fee2e2; color: #b91c1c; }

.job-title { font-weight: 700; font-size: 15px; color: #081C3A; margin-bottom: 10px; }
.job-meta {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; color: var(--bz-muted); margin-bottom: 14px;
}
.job-meta span { display: flex; align-items: center; gap: 4px; }
.job-meta .material-symbols-outlined { font-size: 16px; color: #38BDF8; }
.job-actions { display: flex; gap: 8px; }

/* ── Showroom ── */
.showroom-layout {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 1024px) { .showroom-layout { grid-template-columns: 300px 1fr; } }

.showroom-promo {
  background: linear-gradient(160deg, #081C3A 0%, #0d2d4f 100%);
  border-radius: 20px; padding: 2rem;
  position: relative; overflow: hidden;
}
.showroom-promo::after {
  content: ''; position: absolute; top: -40px; left: -40px;
  width: 160px; height: 160px; background: rgba(56,189,248,0.15);
  border-radius: 50%;
}
.promo-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: #38BDF8; background: rgba(56,189,248,0.15);
  padding: 4px 12px; border-radius: 999px; margin-bottom: 12px;
  position: relative; z-index: 1;
}
.promo-features { list-style: none; padding: 0; margin: 0; position: relative; z-index: 1; }
.promo-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.8); padding: 6px 0;
}
.promo-features .material-symbols-outlined { font-size: 18px; color: #38BDF8; }

.showroom-products {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
@media (min-width: 768px) { .showroom-products { grid-template-columns: repeat(2, 1fr); } }

.product-card {
  background: #fff; border: 1px solid #e5e1d8; border-radius: 16px;
  overflow: hidden; transition: box-shadow 0.25s, transform 0.25s;
}
.product-card:hover { box-shadow: 0 10px 32px rgba(8,28,58,0.1); transform: translateY(-4px); }

.product-img-wrap { position: relative; height: 140px; overflow: hidden; background: #f0f2f5; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-tag {
  position: absolute; top: 8px; inset-inline-end: 8px;
  font-size: 10px; font-weight: 700; padding: 3px 8px;
  background: #38BDF8; color: #fff; border-radius: 999px;
}
.product-tag-green { background: #10B981; }

.product-body { padding: 14px; }
.product-body h3 { font-weight: 700; font-size: 14px; color: #081C3A; margin-bottom: 4px; }
.product-price { font-size: 18px; font-weight: 700; color: #38BDF8; margin-bottom: 10px; }
.product-price small { font-size: 11px; font-weight: 500; color: var(--bz-muted); }
.product-btn {
  width: 100%; padding: 8px; background: #081C3A; color: #fff;
  border: none; border-radius: 10px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
  font-family: inherit;
}
.product-btn:hover { background: #38BDF8; color: #111111; }
a.product-btn { display: block; text-align: center; text-decoration: none; }

/* ── Call Center / Top Achiever ── */
.callcenter-section {
  background: linear-gradient(180deg, #f5f6f8 0%, #FFFFFF 50%, #fff 100%);
}

.callcenter-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; background: #fff;
  border: 1px solid #e5e1d8; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: #081C3A;
}
.callcenter-badge .material-symbols-outlined { color: #38BDF8; }

.callcenter-layout {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 1024px) {
  .callcenter-layout { grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: start; }
}

/* Top achiever card */
.top-achiever-card {
  position: relative; background: linear-gradient(160deg, #081C3A 0%, #0d2d4f 60%, #0d2d4f 100%);
  border-radius: 24px; padding: 2.5rem 2rem; text-align: center;
  overflow: hidden; color: #fff;
}
.top-achiever-glow {
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(56,189,248,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.top-achiever-crown {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #38BDF8, #BAE6FD);
  border-radius: 999px; font-size: 12px; font-weight: 700;
  color: #fff; letter-spacing: 0.04em; text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(56,189,248,0.4);
}
.top-achiever-crown .material-symbols-outlined { font-size: 18px; }

.top-achiever-avatar-wrap {
  position: relative; z-index: 1;
  width: 140px; height: 140px; margin: 0 auto 1.25rem;
}
.top-achiever-ring {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 3px solid transparent;
  background: linear-gradient(135deg, #38BDF8, #BAE6FD) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.03); }
}
.top-achiever-avatar {
  width: 100%; height: 100%; border-radius: 50%;
  object-fit: cover; border: 4px solid #081C3A;
}
.top-achiever-rank {
  position: absolute; bottom: 0; inset-inline-end: 0;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #38BDF8, #BAE6FD);
  border-radius: 50%; border: 3px solid #081C3A;
  font-size: 14px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

.top-achiever-name {
  position: relative; z-index: 1;
  font-size: 1.5rem; font-weight: 700; margin-bottom: 4px;
}
.top-achiever-role {
  position: relative; z-index: 1;
  font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 6px;
}
.top-achiever-month {
  position: relative; z-index: 1;
  display: inline-block; font-size: 12px; font-weight: 600;
  color: #38BDF8; background: rgba(56,189,248,0.15);
  padding: 4px 14px; border-radius: 999px; margin-bottom: 1.5rem;
}

.top-achiever-stats {
  position: relative; z-index: 1;
  display: flex; justify-content: center;
  margin-bottom: 1.5rem;
}
.achiever-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 14px 24px;
  min-width: 140px; text-align: center;
}
.achiever-stat-value {
  display: block; font-size: 1.35rem; font-weight: 700; color: #38BDF8;
}
.achiever-stat-label {
  display: block; font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 2px;
}

.top-achiever-quote {
  position: relative; z-index: 1;
  font-size: 14px; font-style: italic; line-height: 1.7;
  color: rgba(255,255,255,0.75);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem; margin: 0;
}

/* Leaderboard */
.callcenter-side { display: flex; flex-direction: column; gap: 1.25rem; }

.leaderboard-card {
  background: #fff; border: 1px solid #e5e1d8;
  border-radius: 20px; padding: 1.5rem;
}
.leaderboard-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem; padding-bottom: 12px;
  border-bottom: 1px solid #e5e1d8;
}
.leaderboard-header h3 { font-weight: 700; font-size: 16px; color: #081C3A; }
.leaderboard-period {
  font-size: 12px; font-weight: 600; color: #38BDF8;
  background: rgba(56,189,248,0.1); padding: 3px 10px; border-radius: 999px;
}

.leaderboard-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.leaderboard-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 12px;
  transition: background 0.2s;
}
.leaderboard-item:hover { background: #f5f6f8; }
.leaderboard-item--gold { background: linear-gradient(90deg, rgba(56,189,248,0.08), transparent); border: 1px solid rgba(56,189,248,0.2); }
.leaderboard-item--silver { border: 1px solid rgba(192,192,192,0.3); }
.leaderboard-item--bronze { border: 1px solid rgba(205,127,50,0.2); }

.leaderboard-rank {
  width: 28px; height: 28px; border-radius: 8px;
  background: #f0f2f5; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  color: var(--bz-muted); flex-shrink: 0;
}
.leaderboard-item--gold .leaderboard-rank { background: #38BDF8; color: #fff; }
.leaderboard-item--silver .leaderboard-rank { background: #c0c0c0; color: #fff; }
.leaderboard-item--bronze .leaderboard-rank { background: #cd7f32; color: #fff; }

.leaderboard-avatar {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.leaderboard-avatar--placeholder {
  display: flex; align-items: center; justify-content: center;
  background: #081C3A; color: #fff; font-weight: 700; font-size: 14px;
}
.leaderboard-info { flex: 1; min-width: 0; }
.leaderboard-name { display: block; font-weight: 600; font-size: 14px; color: #081C3A; }
.leaderboard-score { display: block; font-size: 12px; color: var(--bz-muted); }
.leaderboard-trophy { color: #38BDF8; font-size: 22px; flex-shrink: 0; }
.leaderboard-controls { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }

.callcenter-period-bar {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; margin-top: 0.5rem;
}
.callcenter-period-label {
  font-size: 13px; font-weight: 700; color: #081C3A;
  background: rgba(56,189,248,0.14); padding: 6px 14px; border-radius: 999px;
}
.callcenter-period-label--sm { font-size: 11px; padding: 4px 10px; }
.period-toggle--prominent {
  padding: 4px; background: #fff; border: 1px solid #e5e1d8;
  box-shadow: 0 4px 14px rgba(8,28,58,0.06);
}
.period-toggle--prominent .period-btn {
  font-size: 13px; padding: 8px 18px; min-width: 72px;
}
.callcenter-teams-header-row {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start;
  gap: 1rem;
}
.callcenter-teams-controls {
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.leaderboard-empty {
  list-style: none; text-align: center; padding: 1.5rem 1rem;
  color: var(--bz-muted); font-size: 13px;
}
.top-achiever-card.is-empty .top-achiever-stats,
.top-achiever-card.is-empty .top-achiever-quote { opacity: 0.45; }

.period-toggle {
  display: inline-flex; gap: 4px; padding: 3px;
  background: #f5f6f8; border-radius: 999px; border: 1px solid #e5e1d8;
}
.period-btn {
  border: 0; background: transparent; color: var(--bz-muted);
  font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: 999px;
  cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.period-btn.active { background: #081C3A; color: #fff; }
.leaderboard-code {
  display: inline-block; margin-inline-start: 6px; font-size: 10px; font-weight: 700;
  color: #38BDF8; background: rgba(56,189,248,0.12); padding: 2px 6px; border-radius: 6px;
}
.top-achiever-code {
  font-size: 12px; font-weight: 700; color: #38BDF8; letter-spacing: 0.06em;
  margin: 0.25rem 0 0.5rem; opacity: 0.95;
}
.callcenter-teams-card {
  margin-top: 1.5rem; background: #fff; border: 1px solid #e5e1d8;
  border-radius: 20px; padding: 1.25rem 1.5rem;
}
.callcenter-teams-header { margin-bottom: 1rem; }
.callcenter-teams-header h3 { font-weight: 700; font-size: 16px; color: #081C3A; margin-bottom: 0.35rem; }
.callcenter-teams-header p { font-size: 12px; color: var(--bz-muted); }
.callcenter-teams-scroll { overflow-x: auto; }
.callcenter-teams-table { width: 100%; border-collapse: collapse; min-width: 420px; }
.callcenter-teams-table th,
.callcenter-teams-table td {
  padding: 10px 12px; text-align: start; border-bottom: 1px solid #eef0f3; font-size: 13px;
}
.callcenter-teams-table th {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--bz-muted); background: #fafbfc;
}
.callcenter-teams-table tbody tr:hover { background: #fafbfc; }
.callcenter-teams-empty { font-size: 13px; color: var(--bz-muted); text-align: center; padding: 1rem; }

/* Mobile bottom navigation */
.mobile-bottom-nav {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 45;
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: rgba(255,255,255,0.96); backdrop-filter: blur(10px);
  border-top: 1px solid #e5e1d8; box-shadow: 0 -8px 24px rgba(8,28,58,0.08);
  padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
}
.mobile-bottom-nav-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; padding: 6px 2px; text-decoration: none; color: var(--bz-muted);
  font-size: 10px; font-weight: 600; border-radius: 12px; transition: color 0.2s, background 0.2s;
}
.mobile-bottom-nav-item .material-symbols-outlined { font-size: 22px; }
.mobile-bottom-nav-item.active { color: #081C3A; background: rgba(8,28,58,0.05); }
.mobile-bottom-nav-item--cta { color: #0EA5E9; }
.mobile-bottom-nav-item--cta.active { color: #081C3A; }
body.has-mobile-bottom-nav { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
body.has-mobile-bottom-nav footer { margin-bottom: 0; }
@media (min-width: 1024px) {
  .mobile-bottom-nav { display: none; }
  body.has-mobile-bottom-nav { padding-bottom: 0; }
}

/* Call center info */
.callcenter-info-card {
  background: #fff; border: 1px solid #e5e1d8;
  border-radius: 20px; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 12px;
}
.callcenter-info-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(56,189,248,0.1); color: #38BDF8;
  display: flex; align-items: center; justify-content: center;
}
.callcenter-info-card h4 { font-weight: 700; font-size: 16px; color: #081C3A; }
.callcenter-info-card p { font-size: 13px; color: var(--bz-muted); line-height: 1.6; }

.callcenter-hotline {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; background: #081C3A; color: #fff;
  border-radius: 12px; font-size: 18px; font-weight: 700;
  transition: background 0.2s;
}
.callcenter-hotline:hover { background: #38BDF8; color: #111111; }
.callcenter-hotline .material-symbols-outlined { font-size: 20px; }
.callcenter-email { margin-top: 8px; background: transparent; border: 1px solid #e5e1d8; color: #081C3A; }
.callcenter-email:hover { background: rgba(56,189,248,0.12); color: #0EA5E9; border-color: #38BDF8; }

.callcenter-hours {
  display: flex; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--bz-muted); font-weight: 500;
}
.callcenter-hours span {
  display: flex; align-items: center; gap: 4px;
}
.callcenter-hours .material-symbols-outlined { font-size: 16px; color: #38BDF8; }

/* ── Installment banner ── */
.installment-banner {
  background: linear-gradient(135deg, #081C3A 0%, #0d2d4f 100%);
  border-radius: 20px; padding: 2rem 2.5rem;
  display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start;
}
@media (min-width: 768px) {
  .installment-banner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.installment-content h3 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.installment-content p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.installment-actions { display: flex; flex-wrap: wrap; gap: 10px; flex-shrink: 0; }

/* ── Partners ── */
.partners-wrapper { direction: ltr; }
.partners-track {
  display: flex; width: max-content;
  animation: marquee 28s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }
.partner-logo {
  font-size: 1.25rem; font-weight: 700; color: #081C3A;
  opacity: 0.3; filter: grayscale(1); white-space: nowrap; padding: 0 2.5rem;
  transition: opacity 0.3s, filter 0.3s;
}
.partner-logo:hover { opacity: 1; filter: grayscale(0); color: #38BDF8; }

/* ── Final CTA ── */
.final-cta {
  background: linear-gradient(135deg, #081C3A 0%, #0d2d4f 100%);
  border-radius: 24px; padding: 3rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(56, 189, 248, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Footer ── */
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.footer-link { transition: color 0.2s; }
.footer-link:hover { color: #38BDF8; }
.social-icon { transition: background 0.2s, transform 0.2s; }
.social-icon:hover { background: #38BDF8; transform: translateY(-2px); }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Subpages ── */
.page-hero {
  background: linear-gradient(135deg, #081C3A 0%, #0d2d4f 100%);
  padding: 3rem 0 3.5rem; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 25%, rgba(56, 189, 248, 0.14) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-badge {
  display: inline-block; padding: 6px 14px;
  background: rgba(56, 189, 248, 0.2); color: #BAE6FD;
  border-radius: 999px; font-size: 12px; font-weight: 700;
  margin-bottom: 1rem; letter-spacing: 0.04em;
}
.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700;
  color: #fff; line-height: 1.2;
}
.page-hero h1 span { color: #38BDF8; }
.page-hero p { color: rgba(255,255,255,0.7); margin-top: 1rem; max-width: 40rem; line-height: 1.7; font-size: 15px; }

.page-section { padding: 4rem 0; }
@media (min-width: 1024px) { .page-section { padding: 5rem 0; } }

.filter-panel {
  background: #fff; border: 1px solid #e5e1d8; border-radius: 16px;
  padding: 1.25rem 1.5rem; box-shadow: 0 4px 20px rgba(8, 28, 58, 0.04);
}
.filter-panel label { display: block; font-size: 13px; font-weight: 600; color: var(--bz-muted); margin-bottom: 6px; }
.filter-panel select {
  width: 100%; border: 1px solid #e5e1d8; border-radius: 10px;
  padding: 10px 12px; font-family: inherit; font-size: 14px; color: #111; background: #fff;
}
.filter-panel select:focus { outline: none; border-color: #38BDF8; box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15); }

.promo-strip { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .promo-strip { grid-template-columns: 1fr 1fr; } }
.promo-strip-card {
  border-radius: 16px; padding: 1.5rem 1.75rem;
  position: relative; overflow: hidden; min-height: 140px;
}
.promo-strip-gold {
  background: linear-gradient(135deg, #38BDF8 0%, #0EA5E9 100%); color: #111;
}
.promo-strip-navy {
  background: linear-gradient(135deg, #081C3A 0%, #0d2d4f 100%); color: #fff;
}
.promo-strip-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.promo-strip-card p { font-size: 14px; opacity: 0.85; line-height: 1.5; max-width: 85%; }
.promo-strip-icon {
  position: absolute; inset-inline-end: -10px; bottom: -20px;
  font-size: 100px; opacity: 0.15; pointer-events: none;
}

.about-img-wrap {
  border-radius: 16px; overflow: hidden;
  border: 1px solid #e5e1d8; box-shadow: 0 12px 40px rgba(8, 28, 58, 0.08);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.about-contact {
  background: linear-gradient(135deg, #081C3A 0%, #0d2d4f 100%);
  border-radius: 20px; overflow: hidden;
  display: grid; grid-template-columns: 1fr;
}
@media (min-width: 768px) { .about-contact { grid-template-columns: 1.1fr 1fr; } }
.about-contact-body { padding: 2.5rem; color: #fff; }
.about-contact-body h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.about-contact-body p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 1.5rem; }
.about-contact-link {
  display: flex; align-items: center; gap: 12px; margin-bottom: 1rem;
  color: #fff; text-decoration: none; transition: opacity 0.2s;
}
.about-contact-link:hover { opacity: 0.85; }
.about-contact-link span.icon-wrap {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(56, 189, 248, 0.2); color: #38BDF8;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-contact-map { min-height: 260px; background-size: cover; background-position: center; filter: grayscale(0.3); }

.category-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.category-pill {
  padding: 8px 18px; border-radius: 999px; font-size: 13px; font-weight: 600;
  border: 1px solid #e5e1d8; background: #fff; color: var(--bz-muted);
  cursor: pointer; transition: all 0.2s;
}
.category-pill:hover { border-color: #38BDF8; color: #0EA5E9; }
.category-pill.active { background: #081C3A; border-color: #081C3A; color: #fff; }

.job-promo-card {
  background: linear-gradient(160deg, #081C3A 0%, #0d2d4f 100%);
  border-radius: 16px; padding: 2rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1px solid rgba(56, 189, 248, 0.2); min-height: 100%;
}
.job-promo-card .material-symbols-outlined { font-size: 56px; color: #38BDF8; margin-bottom: 12px; }
.job-promo-card h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.job-promo-card p { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 1.25rem; line-height: 1.6; }

.products-page-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .products-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-page-grid { grid-template-columns: repeat(3, 1fr); } }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid #e5e1d8; border-radius: 14px; overflow: hidden; background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open { border-color: rgba(56, 189, 248, 0.45); box-shadow: 0 4px 16px rgba(8, 28, 58, 0.05); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 1rem 1.25rem; font-weight: 600; text-align: start; cursor: pointer;
  background: none; border: none; font-family: inherit; font-size: 15px; color: #111;
}
.faq-q .material-symbols-outlined { color: #38BDF8; transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-q .material-symbols-outlined { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a-inner { padding: 0 1.25rem 1rem; font-size: 14px; color: var(--bz-muted); line-height: 1.75; }

.apply-form, .auth-form { max-width: 540px; margin: 0 auto; }
.form-card {
  background: #fff; border: 1px solid #e5e1d8; border-radius: 16px;
  padding: 1.75rem; box-shadow: 0 8px 28px rgba(8, 28, 58, 0.06);
}
.form-field { margin-bottom: 1rem; }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--bz-muted); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #e5e1d8; border-radius: 10px;
  font-family: inherit; font-size: 14px; color: #111; background: #fff;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: #38BDF8; box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: 12px; color: var(--bz-muted); text-align: center; margin-top: 1rem; }
.text-success-green { color: #10B981; }

/* ── Contact page ── */
.contact-cards {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 640px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-cards { grid-template-columns: repeat(4, 1fr); } }

.contact-card {
  display: block; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid #e5e1d8; border-radius: 16px;
  padding: 1.5rem; transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
a.contact-card:hover {
  box-shadow: 0 10px 32px rgba(8,28,58,0.09); transform: translateY(-3px);
  border-color: rgba(56,189,248,0.35);
}
.contact-card--static { cursor: default; }
.contact-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(56,189,248,0.12); color: #0EA5E9;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.contact-card-icon .material-symbols-outlined { font-size: 22px; }
.contact-card h3 { font-size: 14px; font-weight: 700; color: #081C3A; margin-bottom: 0.35rem; }
.contact-card-value { font-size: 15px; font-weight: 600; color: #111; margin-bottom: 0.35rem; }
.contact-card-desc { font-size: 12px; color: var(--bz-muted); line-height: 1.5; }

.contact-layout {
  display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start;
}
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1.2fr 1fr; } }

.contact-side { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-map-lg { min-height: 280px; border-radius: 16px; border: 1px solid #e5e1d8; overflow: hidden; }
.contact-quick-links { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-quick-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.25rem; background: #fff; border: 1px solid #e5e1d8;
  border-radius: 12px; text-decoration: none; color: #111;
  font-size: 14px; font-weight: 600; transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-quick-link:hover {
  border-color: rgba(56,189,248,0.45); box-shadow: 0 6px 20px rgba(8,28,58,0.06);
}
.contact-quick-link .material-symbols-outlined { color: #38BDF8; font-size: 22px; }

.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 1.1rem; font-weight: 700; color: #081C3A; margin: 1.75rem 0 0.6rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: 14px; color: var(--bz-muted); line-height: 1.8; }
.legal-content ul { padding-inline-start: 1.25rem; margin-bottom: 1rem; }

/* ── Companies grid ── */
.companies-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 640px) { .companies-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .companies-grid { grid-template-columns: repeat(3, 1fr); } }

.company-card {
  display: block; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid #e5e1d8; border-radius: 16px;
  padding: 1.5rem; transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.company-card:hover { box-shadow: 0 10px 32px rgba(8,28,58,0.09); transform: translateY(-3px); border-color: rgba(56,189,248,0.35); }
.company-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.company-card-jobs { font-size: 11px; font-weight: 700; color: #0EA5E9; background: rgba(56,189,248,0.12); padding: 4px 10px; border-radius: 999px; }
.company-card-meta { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--bz-muted); margin-bottom: 1rem; }
.company-card-meta span { display: flex; align-items: center; gap: 6px; }
.company-card-meta .material-symbols-outlined { font-size: 16px; color: #38BDF8; }
.company-card-link { font-size: 13px; font-weight: 600; color: #0EA5E9; display: flex; align-items: center; gap: 4px; }

/* ── Detail pages ── */
.detail-hero {
  background: linear-gradient(135deg, #081C3A 0%, #0d2d4f 100%);
  padding: 2rem 0 2.5rem; color: #fff;
}
.detail-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,0.65); text-decoration: none;
  margin-bottom: 1.25rem; transition: color 0.2s;
}
.detail-back:hover { color: #38BDF8; }
.detail-back-light {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--bz-muted); text-decoration: none;
  margin-bottom: 1.25rem; transition: color 0.2s;
}
.detail-back-light:hover { color: #0EA5E9; }
.detail-hero-row { display: flex; align-items: center; gap: 1.25rem; }
.detail-hero h1 { font-size: clamp(1.35rem, 3vw, 2rem); font-weight: 700; line-height: 1.25; }
.detail-hero-sub { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 4px; }
.detail-layout {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 1024px) { .detail-layout { grid-template-columns: 1.6fr 1fr; } }
.detail-section-title { font-size: 1.15rem; font-weight: 700; color: #081C3A; margin-bottom: 1rem; }
.detail-info-card {
  background: #f5f6f8; border: 1px solid #e5e1d8; border-radius: 16px; padding: 1.5rem;
  position: sticky; top: 88px;
}
.detail-info-row {
  display: flex; align-items: flex-start; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid #e5e1d8;
}
.detail-info-row:last-of-type { border-bottom: none; }
.detail-info-row .material-symbols-outlined { color: #38BDF8; font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.detail-info-row small { display: block; font-size: 11px; color: var(--bz-muted); margin-bottom: 2px; }
.detail-info-row strong { font-size: 14px; color: #111; }
.detail-reqs { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.detail-reqs li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 14px; color: var(--bz-muted); padding: 8px 0;
  border-bottom: 1px solid #f0eeea;
}
.detail-jobs-list { display: flex; flex-direction: column; gap: 8px; }
.detail-job-row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 1rem 1.25rem; background: #f5f6f8; border: 1px solid #e5e1d8;
  border-radius: 12px; text-decoration: none; color: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.detail-job-row:hover { border-color: #38BDF8; background: rgba(56,189,248,0.06); }
.detail-job-row strong { display: block; font-size: 14px; color: #111; margin-bottom: 2px; }

.product-detail-layout {
  display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start;
}
@media (min-width: 768px) { .product-detail-layout { grid-template-columns: 1fr 1fr; } }
.product-detail-img {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid #e5e1d8; background: #f5f6f8; aspect-ratio: 4/3;
}
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-detail-img .product-tag { position: absolute; top: 12px; inset-inline-start: 12px; }
.detail-hero--product { padding: 1.75rem 0 2rem; }
.detail-hero--product h1 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-top: 6px; }
.product-detail-img--large { aspect-ratio: 16/10; max-height: 420px; }

.product-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.product-gallery-thumb {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: #f5f6f8;
}
.product-gallery-thumb.active { border-color: #38BDF8; }
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-detail-page .detail-main { min-width: 0; }
.product-price--detail { font-size: 2rem; font-weight: 700; color: #38BDF8; margin-bottom: 1rem; }
.product-price--detail small { font-size: 13px; font-weight: 500; color: var(--bz-muted); }
.product-detail-card { position: sticky; top: 88px; }
.product-detail-perks {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; padding-top: 12px;
  border-top: 1px solid #e5e1d8;
}
.product-detail-perks span {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 600; color: #0EA5E9;
  background: rgba(56,189,248,0.12); padding: 6px 10px; border-radius: 999px;
}
.product-detail-perks .material-symbols-outlined { font-size: 16px; }

.product-actions { display: flex; gap: 8px; }
.product-actions .product-btn,
.product-actions .product-btn-ghost { flex: 1; padding: 8px; border-radius: 10px; font-size: 13px; font-weight: 600; text-align: center; text-decoration: none; font-family: inherit; }
.product-actions .product-btn-ghost {
  background: transparent; color: #081C3A; border: 1px solid #e5e1d8;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.product-actions .product-btn-ghost:hover { border-color: #38BDF8; color: #0EA5E9; }
a.product-img-link { display: block; text-decoration: none; color: inherit; }
.product-title-link { color: inherit; text-decoration: none; }
.product-title-link:hover { color: #0EA5E9; }

.related-products-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 640px) { .related-products-grid { grid-template-columns: repeat(3, 1fr); } }
.related-product-card {
  display: block; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid #e5e1d8; border-radius: 14px; overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.related-product-card:hover { box-shadow: 0 8px 24px rgba(8,28,58,0.08); transform: translateY(-3px); border-color: rgba(56,189,248,0.35); }
.related-product-img { height: 120px; overflow: hidden; background: #f5f6f8; }
.related-product-img img { width: 100%; height: 100%; object-fit: cover; }
.related-product-body { padding: 12px 14px; }
.related-product-body strong { display: block; font-size: 14px; color: #081C3A; margin-bottom: 4px; }
.related-product-body span { font-size: 13px; font-weight: 600; color: #38BDF8; }

.needs-page-form { max-width: 640px; margin: 0 auto; }
.needs-step { display: none; animation: needsFadeIn 0.35s ease; }
.needs-step.active { display: block; }
.needs-step .form-field { margin-bottom: 0; }
.needs-step .form-field label {
  font-size: 1.05rem; font-weight: 700; color: #081C3A; margin-bottom: 12px;
}
.needs-step select,
.needs-step input {
  font-size: 15px; padding: 12px 14px;
}
@keyframes needsFadeIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}
html[dir="ltr"] .needs-step { animation-name: needsFadeInLtr; }
@keyframes needsFadeInLtr {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}
.needs-progress {
  display: flex; align-items: center; gap: 12px; margin-bottom: 1.5rem;
}
.needs-progress-track {
  flex: 1; height: 6px; background: #e5e1d8; border-radius: 999px; overflow: hidden;
}
.needs-progress-fill {
  height: 100%; width: 20%; background: linear-gradient(90deg, #38BDF8, #0EA5E9);
  border-radius: 999px; transition: width 0.35s ease;
}
.needs-progress-text {
  font-size: 13px; font-weight: 700; color: #0EA5E9; white-space: nowrap;
}
.needs-wizard-nav {
  display: flex; gap: 10px; margin-top: 1.5rem;
}
.needs-wizard-btn {
  flex: 1; font-weight: 700; padding: 12px 20px; border-radius: 12px; font-size: 15px;
  font-family: inherit; cursor: pointer;
}
.needs-wizard-nav .btn-ghost {
  border: 1px solid #e5e1d8; background: transparent; color: #081C3A;
}
.needs-wizard-nav .btn-ghost:hover { border-color: #38BDF8; color: #0EA5E9; }
.needs-wizard-nav.hidden { display: none; }
.needs-page-call {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 1.5rem; padding: 1rem; font-size: 15px; color: var(--bz-muted);
}
.needs-page-call a {
  color: #0EA5E9; font-weight: 700; text-decoration: none;
}
.needs-page-call a:hover { text-decoration: underline; }
.needs-page-call .material-symbols-outlined { color: #38BDF8; font-size: 22px; }

/* ── Animations ── */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}