/* =============================================================
   JADEED GROUP OF COMPANIES — WEBSITE STYLESHEET
   Normal, hand-written CSS (no framework / no build step).
   Organized top-to-bottom exactly like the page: every section
   is wrapped in a START / END comment so you can find it fast.
   ============================================================= */

/* -------------------------------------------------------------
   1. RESET
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; }

/* -------------------------------------------------------------
   2. DESIGN TOKENS  (colors, spacing scale, shadows, gradients)
   Change a value here and it updates the whole site.
   ------------------------------------------------------------- */
:root {
  /* Base palette */
  --background: #ffffff;
  --foreground: #14151c;
  --card: #ffffff;
  --muted: #f3f3f6;
  --muted-foreground: #6c6f7c;
  --border: #e2e2e8;

  /* Brand palette */
  --brand-red: #d1263f;
  --brand-navy: #2c2f52;
  --brand-navy-deep: #14152a;

  /* Derived effects */
  --gradient-brand: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-navy) 100%);
  --gradient-hero: linear-gradient(180deg, rgba(20, 21, 42, 0.55) 0%, rgba(10, 11, 22, 0.9) 100%);
  --shadow-card: 0 4px 24px rgba(20, 21, 42, 0.08);
  --shadow-elegant: 0 16px 48px rgba(20, 21, 42, 0.18);

  /* Fonts */
  --font-body: "Inter", sans-serif;
  --font-heading: "Poppins", sans-serif;

  /* Layout */
  --container-max: 80rem;      /* max-w-7xl */
  --gutter: 1.5rem;            /* px-6 */
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
}
/* ==========================================================================
   Header / Navigation — Jadeed Group
   ========================================================================== */
:root {
  --brand-red: #c1272d;
  --brand-red-deep: #8f1a20;
  --brand-navy: #1a2b4c;
  --brand-navy-deep: #0e1830;
  --border-color: #e7e7ea;
  --text-color: #1c1c1e;
  --text-muted: #6b6d76;

  --header-h: 5.5rem;
  --header-h-scrolled: 4.25rem;

  --ease-luxe: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-transition: 220ms var(--ease-luxe);

  --font-nav: -apple-system, "Inter", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; font-family: var(--font-nav); color: var(--text-color); }

/* ==========================================================================
   HEADER SHELL — transparent at top, glass on scroll
   ========================================================================== */
/* ==========================================================================
   HEADER SHELL — transparent at top, glass on scroll
   ========================================================================== */

#site-topbar {
  position: fixed;
  top: var(--header-space, 5.5rem);   /* sits right under the header */
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;              /* below header, above page content */
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 51;
  width: 100%;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid transparent;
  box-shadow: 0 0 0 rgba(20, 21, 40, 0);
  transition:
    background-color 480ms var(--ease-luxe),
    backdrop-filter 480ms var(--ease-luxe),
    border-color 480ms var(--ease-luxe),
    box-shadow 480ms var(--ease-luxe);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: var(--border-color);
  box-shadow: 0 12px 32px -16px rgba(20, 21, 40, 0.18);
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 1.75rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: height 420ms var(--ease-luxe);
}

.site-header.is-scrolled .site-header__inner { height: var(--header-h-scrolled); }

/* ==========================================================================
   LOGO
   ========================================================================== */
.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-header__logo-img {
  height: 3rem;
  width: auto;
  display: block;
  transform: scale(1);
  transform-origin: left center;
  transition: transform 420ms var(--ease-luxe), height 420ms var(--ease-luxe);
}
.site-header.is-scrolled .site-header__logo-img { transform: scale(0.86); }

/* ==========================================================================
   NAV — desktop defaults
   ========================================================================== */
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: gap 420ms var(--ease-luxe);
}
.site-header.is-scrolled .site-nav__list { gap: 0; }

.site-nav__item { position: relative; }

.site-nav__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  font-family: var(--font-nav);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-color);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: color 260ms ease, padding 420ms var(--ease-luxe);
  white-space: nowrap;
}
.site-header.is-scrolled .site-nav__link { padding-inline: 0.95rem; }

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 0.35rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-navy));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 320ms var(--ease-luxe);
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--brand-red);
}
.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__link.is-active::after {
  transform: scaleX(1);
}
.site-nav__link.is-active { color: var(--brand-red); font-weight: 600; }

.site-nav__link:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 2px;
}

.site-nav__chevron {
  transition: transform 300ms var(--ease-luxe);
  flex-shrink: 0;
  color: var(--text-muted);
}
.site-nav__item--dropdown[data-open="true"] .site-nav__chevron,
.site-nav__item--dropdown:hover .site-nav__chevron {
  transform: rotate(180deg);
  color: var(--brand-red);
}

/* ==========================================================================
   DROPDOWN — floating premium panel
   ========================================================================== */
.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  min-width: 240px;
  list-style: none;
  margin: 0;
  padding: 0.6rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-radius: 1rem;
  border: 1px solid rgba(20, 21, 40, 0.06);
  box-shadow: 0 24px 48px -16px rgba(20, 21, 40, 0.22), 0 4px 12px -4px rgba(20, 21, 40, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.98);
  transition: opacity 300ms var(--ease-luxe), transform 300ms var(--ease-luxe), visibility 300ms var(--ease-luxe);
  z-index: 50;
}
.site-nav__item--dropdown:hover .site-nav__dropdown,
.site-nav__item--dropdown[data-open="true"] .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.site-nav__dropdown li { position: relative; }
.site-nav__dropdown li + li { margin-top: 2px; }

.site-nav__dropdown-link {
  position: relative;
  display: block;
  padding: 0.7rem 1rem 0.7rem 1.15rem;
  font-family: var(--font-nav);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-color);
  text-decoration: none;
  border-radius: 0.6rem;
  transition: color 220ms ease, background-color 220ms ease, padding-left 260ms var(--ease-luxe);
}

.site-nav__dropdown-link::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 50%;
  height: 0;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--brand-red), var(--brand-navy));
  transform: translateY(-50%);
  transition: height 260ms var(--ease-luxe);
}

.site-nav__dropdown-link:hover,
.site-nav__dropdown-link:focus-visible {
  color: var(--brand-red);
  background-color: rgba(193, 39, 45, 0.05);
  padding-left: 1.4rem;
}
.site-nav__dropdown-link:hover::before,
.site-nav__dropdown-link:focus-visible::before {
  height: 60%;
}
.site-nav__dropdown-link:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: -2px;
}

.site-nav__item--dropdown::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 100%;
  height: 0.7rem;
}

/* ==========================================================================
   CTA BUTTON
   ========================================================================== */
.site-header__cta {
  position: relative;
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-deep) 100%);
  color: #fff;
  font-family: var(--font-nav);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 10px 24px -10px rgba(193, 39, 45, 0.55);
  transition: box-shadow 320ms var(--ease-luxe), transform 320ms var(--ease-luxe), padding 420ms var(--ease-luxe);
}
.site-header.is-scrolled .site-header__cta { padding: 0.6rem 1.4rem; }

.site-header__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 700ms var(--ease-luxe);
}
.site-header__cta:hover::after { transform: translateX(120%); }

.site-header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -10px rgba(193, 39, 45, 0.65);
}
.site-header__cta:focus-visible {
  outline: 2px solid var(--brand-navy);
  outline-offset: 3px;
}
.site-header__cta-icon {
  width: 1rem;
  height: 1rem;
  position: relative;
  z-index: 1;
  transition: transform 320ms var(--ease-luxe);
}
.site-header__cta:hover .site-header__cta-icon { transform: translateX(4px); }

/* ==========================================================================
   BODY SPACING (fixed header + fixed topbar together)
   ========================================================================== */
body {
  padding-top: calc(var(--header-space, 5.5rem) + var(--topbar-h, 2.25rem));
}
@media (max-width: 991px) {
  body {
    padding-top: calc(var(--header-space, 4.5rem) + var(--topbar-h, 2.25rem));
  }
}

/* ==========================================================================
   MOBILE CLOSE (X) BUTTON
   ========================================================================== */
.site-nav__close {
  display: none;
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0.65rem;
  cursor: pointer;
  color: var(--text-color);
  -webkit-tap-highlight-color: transparent;
  transition: background-color 220ms ease, transform 320ms var(--ease-luxe);
  z-index: 2;
}
.site-nav__close:hover,
.site-nav__close:focus-visible { background-color: rgba(20, 21, 40, 0.06); }
.site-nav__close:focus-visible { outline: 2px solid var(--brand-red); outline-offset: 2px; }
.site-nav__close:active { transform: scale(0.9); }

.site-nav__close .icon-line--top { transform: translateY(6px) rotate(45deg); }
.site-nav__close .icon-line--mid { opacity: 0; }
.site-nav__close .icon-line--bottom { transform: translateY(-6px) rotate(-45deg); }
.site-nav__close svg { transition: transform 340ms var(--ease-luxe); }
.site-nav__close:hover svg { transform: rotate(90deg); }

/* ==========================================================================
   MOBILE HAMBURGER
   ========================================================================== */
.site-header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0.65rem;
  cursor: pointer;
  color: var(--text-color);
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 220ms ease;
}
.site-header__toggle:hover,
.site-header__toggle:focus-visible { background-color: rgba(20, 21, 40, 0.06); }
.site-header__toggle:focus-visible { outline: 2px solid var(--brand-red); outline-offset: 2px; }

.icon-line { transition: transform 340ms var(--ease-luxe), opacity 200ms ease; transform-origin: center; }
.site-header__toggle[aria-expanded="true"] .icon-line--top { transform: translateY(6px) rotate(45deg); }
.site-header__toggle[aria-expanded="true"] .icon-line--mid { opacity: 0; }
.site-header__toggle[aria-expanded="true"] .icon-line--bottom { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   MOBILE BACKDROP
   ========================================================================== */
.site-nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 15, 28, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  z-index: 55;
  transition: opacity 320ms var(--ease-luxe);
}
.site-nav__backdrop.is-visible { opacity: 1; }

/* ==========================================================================
   TABLET / MOBILE (< 992px)
   ========================================================================== */
@media (max-width: 991px) {
  .site-header__inner { padding-inline: 1.25rem; height: 4.5rem; }
  .site-header.is-scrolled .site-header__inner { height: 4rem; }
  .site-header__logo-img { height: 2.4rem; }

  .site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: 100%;
    max-width: 100%;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: -16px 0 48px rgba(14, 15, 28, 0.18);
    transform: translateX(100%);
    transition: transform 420ms var(--ease-luxe);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 6rem 1.5rem 2.5rem;
    z-index: 60;
  }

  .site-nav.is-open { transform: translateX(0); }
  .site-nav__close { display: flex; }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .site-nav__link {
    width: 100%;
    justify-content: space-between;
    padding: 1rem 0.9rem;
    font-size: 1.02rem;
    border-radius: 0.75rem;
  }
  .site-nav__link::after { display: none; }
  .site-nav__link.is-active { background: rgba(193, 39, 45, 0.06); }

  .site-nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(193, 39, 45, 0.035);
    max-height: 0;
    overflow: hidden;
    padding: 0 0.5rem;
    margin-top: 0.15rem;
    border-radius: 0.75rem;
    transition: max-height 380ms var(--ease-luxe), padding 380ms var(--ease-luxe);
  }
  .site-nav__item--dropdown[data-open="true"] .site-nav__dropdown {
    max-height: 400px;
    padding: 0.5rem;
  }
  .site-nav__dropdown-link { padding: 0.85rem 1rem; min-height: 44px; }

  .site-header__cta {
    display: inline-flex;
    margin-top: 1.75rem;
    width: 100%;
    justify-content: center;
  }

  body.nav-open { overflow: hidden; }
}

@media (max-width: 420px) {
  .site-header__inner { padding-inline: 1rem; }
  .site-nav { width: 100vw; padding-inline: 1.1rem; }
  .site-header__logo-img { height: 2.15rem; }
}

/* ==========================================================================
   DESKTOP (>= 992px)
   ========================================================================== */
@media (min-width: 992px) {
  .site-nav {
    position: static;
    transform: none;
    height: auto;
    width: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    overflow: visible;
  }
  .site-nav__backdrop { display: none; }
  .site-header__cta { display: inline-flex; }
  .site-header__toggle { display: none; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .site-header, .site-header__inner, .site-header__logo-img, .site-nav,
  .site-nav__link, .site-nav__link::after, .site-nav__dropdown,
  .site-nav__dropdown-link, .site-nav__chevron, .site-header__cta,
  .site-header__cta::after, .icon-line, .site-nav__backdrop {
    transition: none !important;
  }
}

/* ==========================================================================
   header ended
   ========================================================================== */





/* =========================================================
   HERO — Premium Corporate Centered Hero
  
   ========================================================= */

.hero {
  --hero-red: #d22139;
  --hero-red-bright: #ff4d5e;
  --hero-navy: #0d1626;
  --hero-navy-2: #16233d;
  --hero-glass: rgba(255, 255, 255, 0.07);
  --hero-glass-border: rgba(255, 255, 255, 0.16);
  --hero-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --hero-ease-slow: cubic-bezier(0.16, 1, 0.3, 1);

  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--hero-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Background layers ---------- */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate3d(-50%, -50%, 0);
  object-fit: cover;
  opacity: 0.5;
  will-change: transform;
}

/* Primary cinematic gradient — darkest at top/bottom, clearer through
   the middle band so the video still reads as a real place */
.hero-bg__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 15, 26, 0.92) 0%,
    rgba(9, 15, 26, 0.55) 22%,
    rgba(9, 15, 26, 0.4) 50%,
    rgba(9, 15, 26, 0.62) 76%,
    rgba(9, 15, 26, 0.95) 100%
  );
}

/* Centered vignette — frames the centered content and guarantees
   contrast regardless of what's behind it in the video */
.hero-bg__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 55% at 50% 46%, rgba(9, 15, 26, 0.35) 0%, rgba(9, 15, 26, 0.72) 100%);
}

.hero-bg__radial {
  position: absolute;
  inset: -10%;
  background: radial-gradient(45% 40% at 50% 28%, rgba(210, 33, 57, 0.24) 0%, transparent 68%),
    radial-gradient(38% 34% at 78% 76%, rgba(60, 110, 220, 0.16) 0%, transparent 70%);
  mix-blend-mode: screen;
  animation: heroRadialDrift 22s ease-in-out infinite;
}

@keyframes heroRadialDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.85;
  }
  50% {
    transform: translate3d(-1.5%, 1.5%, 0) scale(1.06);
    opacity: 1;
  }
}

.hero-bg__noise {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero-bg__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 42%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 42%, #000 0%, transparent 78%);
}

/* Mouse-follow light — very soft, desktop only, added via JS setting
   --sx/--sy; opacity toggled on hover so it never appears on touch */
.hero-spotlight {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(480px circle at var(--sx, 50%) var(--sy, 45%), rgba(255, 255, 255, 0.09), transparent 62%);
  mix-blend-mode: overlay;
  transition: opacity 0.6s ease;
}

.hero.is-spotlight-active .hero-spotlight {
  opacity: 1;
}

/* ---------- Shell: single centered column ---------- */
.hero-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding: clamp(170px, 20vh, 230px) clamp(24px, 6vw, 60px) clamp(130px, 15vh, 170px);
  display: flex;
  justify-content: center;
}

.hero-content {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ---------- Eyebrow label ---------- */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.15rem 0.55rem 0.8rem;
  border-radius: 999px;
  background: var(--hero-glass);
  border: 1px solid var(--hero-glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.hero-label__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hero-red-bright);
  box-shadow: 0 0 0 4px rgba(255, 77, 94, 0.22);
  animation: heroPulseDot 2.4s ease-in-out infinite;
}

@keyframes heroPulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(255, 77, 94, 0.22);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(255, 77, 94, 0.05);
  }
}

/* ---------- Heading — the focal point, with a curtain-style
   line-reveal on load ---------- */
.hero-heading {
  margin-top: 1.75rem;
  font-size: clamp(2.2rem, 1.4rem + 2vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 80%;
}

.hero-heading__line {
  display: block;
  overflow: hidden;
}

.hero-heading__line-inner {
  display: block;
  transform: translateY(112%);
  transition: transform 1.05s var(--hero-ease-slow);
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.4);
}

.hero-heading.is-visible .hero-heading__line:nth-child(1) .hero-heading__line-inner {
  transition-delay: 0.05s;
}

.hero-heading.is-visible .hero-heading__line:nth-child(2) .hero-heading__line-inner {
  transition-delay: 0.22s;
}

.hero-heading.is-visible .hero-heading__line-inner {
  transform: translateY(0);
}

.hero-heading__accent {
  background: linear-gradient(100deg, var(--hero-red-bright), #ffb199 65%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Body copy ---------- */
.hero-desc {
  margin-top: 1.75rem;
  max-width: 80%;
  font-size: clamp(1rem, 0.94rem + 0.3vw, 1.15rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.74);
}

/* ---------- CTA ---------- */
.hero-actions {
  margin-top: 2.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.05rem 2.1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s var(--hero-ease), box-shadow 0.4s var(--hero-ease), color 0.4s ease;
}

.hero-btn__icon {
  width: 16px;
  height: 16px;
  transition: transform 0.4s var(--hero-ease);
}

.hero-btn__label {
  position: relative;
  z-index: 1;
}

/* Diagonal sheen that sweeps across on hover */
.hero-btn__sheen {
  position: absolute;
  inset: -50% -60%;
  z-index: 0;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.4) 50%, transparent 58%);
  transform: translateX(-130%) skewX(-15deg);
  transition: transform 0.75s var(--hero-ease-slow);
}

.hero-btn--primary {
  background: var(--hero-red);
  color: #fff;
  box-shadow: 0 16px 38px -16px rgba(210, 33, 57, 0.75);
}

.hero-btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, #fff, #f2f2f2);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-btn--primary:hover {
  color: var(--hero-navy);
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -16px rgba(210, 33, 57, 0.6), 0 0 0 1px rgba(255, 77, 94, 0.3);
}

.hero-btn--primary:hover::before {
  opacity: 1;
}

.hero-btn--primary:hover .hero-btn__sheen {
  transform: translateX(130%) skewX(-15deg);
}

.hero-btn--primary:hover .hero-btn__icon {
  transform: translateX(4px);
}

.hero-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

/* ---------- Scroll cue ---------- */
.hero-scroll {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.hero-scroll:hover {
  color: rgba(255, 255, 255, 0.9);
  transform: translateX(-50%) translateY(-2px);
}

.hero-scroll__track {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  position: relative;
}

.hero-scroll__dot {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: #fff;
  border-radius: 2px;
  animation: heroScrollDot 2s ease-in-out infinite;
}

@keyframes heroScrollDot {
  0% {
    opacity: 1;
    top: 6px;
  }
  60% {
    opacity: 0.15;
    top: 21px;
  }
  100% {
    opacity: 0;
    top: 6px;
  }
}

.hero-scroll__text {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- Reveal-on-load ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--hero-ease-slow), transform 0.9s var(--hero-ease-slow);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] {
  transition-delay: 0.05s;
}
[data-reveal-delay="2"] {
  transition-delay: 0.15s;
}
[data-reveal-delay="3"] {
  transition-delay: 0.5s;
}
[data-reveal-delay="4"] {
  transition-delay: 0.68s;
}
[data-reveal-delay="5"] {
  transition-delay: 1.1s;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .hero-heading__line-inner {
    opacity: 1;
    transform: none !important;
    transition: none !important;
  }
  .hero-bg__radial,
  .hero-label__dot,
  .hero-scroll__dot {
    animation: none !important;
  }
  .hero-bg__video,
  .hero-spotlight {
    transition: none !important;
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
  .hero-heading {
    max-width: 15ch;
  }
}

@media (max-width: 680px) {
  .hero-shell {
    padding-inline: 22px;
  }

  .hero-heading {
    font-size: ;
    max-width: 14ch;
  }

  .hero-desc {
    font-size: 10;
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-scroll {
    bottom: 22px;
  }
}

@media (max-width: 400px) {
  .hero-label {
    font-size: 0.64rem;
    padding: 0.45rem 0.9rem;
  }
}









/* =========================
   ABOUT SECTION — PREMIUM
========================= */
.jd-about{
    position: relative;
    padding: clamp(70px, 10vw, 130px) 20px;
    overflow: hidden;
    background: #fbfbfd;
}

/* faint decorative background texture behind the copy */
.jd-about__field{
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 8% 15%, rgba(210,33,57,.05), transparent 45%),
        radial-gradient(circle at 95% 85%, rgba(27,39,68,.06), transparent 45%);
    pointer-events: none;
}

.jd-about__container{
    max-width: 1200px;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
    justify-items: stretch; 
}

/* ---------- copy column ---------- */
.jd-about__eyebrow-row{
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: aboutUp .7s ease forwards;
}
.jd-about__line{
    width: 0;
    height: 2px;
    background: #d22139;
    animation: lineGrow .8s ease .3s forwards;
}
.jd-about__eyebrow{
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #d22139;
}

.jd-about__title{
    margin-top: 18px;
    font-size: clamp(1.875rem, 1.4rem + 2vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1b2744;
    opacity: 0;
    animation: aboutUp .7s ease .1s forwards;
}
.jd-about__title em{
    font-style: normal;
    position: relative;
    color: #d22139;
}
.jd-about__title em::after{
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 2px;
    height: 8px;
    background: rgba(210,33,57,.15);
    z-index: -1;
    border-radius: 4px;
}

.jd-about__lead{
    margin-top: 22px;
    max-width: 100%;
    color: #5b6172;
    font-size: 16px;
    line-height: 1.8;
    opacity: 0;
    animation: aboutUp .7s ease .2s forwards;
}

.jd-about__quote{
    margin-top: 26px;
    position: relative;
    padding: 20px 24px 20px 30px;
    background: #fff;
    border-left: 3px solid #d22139;
    border-radius: 0 14px 14px 0;
    box-shadow: 0 10px 30px rgba(27,39,68,.06);
    font-style: italic;
    color: #1b2744;
    opacity: 0;
    animation: aboutUp .7s ease .3s forwards;
}
.jd-about__quote::before{
    content: "\201C";
    position: absolute;
    top: -14px;
    left: 16px;
    font-size: 60px;
    font-family: Georgia, serif;
    color: rgba(210,33,57,.18);
    line-height: 1;
}
.jd-about__quote p{ position: relative; z-index: 1; margin: 0; }

.jd-about__pillars{
    margin-top: 30px;
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    opacity: 0;
    animation: aboutUp .7s ease .4s forwards;
}
.jd-about__pillar{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #eceef3;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #1b2744;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.jd-about__pillar:hover{
    transform: translateY(-4px);
    border-color: transparent;
    background: #1b2744;
    color: #fff;
    box-shadow: 0 14px 30px rgba(27,39,68,.25);
}
.jd-about__pillar-icon{
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(210,33,57,.08);
    color: #d22139;
    transition: background .3s ease, transform .3s ease;
}
.jd-about__pillar-icon svg{ width: 18px; height: 18px; }
.jd-about__pillar:hover .jd-about__pillar-icon{
    background: #d22139;
    color: #fff;
    transform: rotate(-8deg) scale(1.05);
}

.jd-about__actions{
    margin-top: 34px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    opacity: 0;
    animation: aboutUp .7s ease .5s forwards;
}
.jd-about__cta{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 50px;
    background: #1b2744;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: color .35s ease, box-shadow .35s ease;
}
.jd-about__cta::before{
    content: "";
    position: absolute;
    inset: 0;
    background: #d22139;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
    z-index: -1;
}
.jd-about__cta:hover::before{ transform: scaleX(1); }
.jd-about__cta:hover{ box-shadow: 0 10px 26px rgba(210,33,57,.35); }
.jd-about__cta-icon{ width: 16px; height: 16px; transition: transform .3s ease; }
.jd-about__cta:hover .jd-about__cta-icon{ transform: translateX(4px); }

.jd-about__call-label{ display: block; font-size: 13px; color: #8a8f9c; }
.jd-about__call-number{
    font-weight: 700;
    color: #d22139;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .3s ease;
}
.jd-about__call-number:hover{ border-color: #d22139; }

/* ---------- gallery column: single premium image + floating stat ---------- */
.jd-about__gallery{
    position: relative;
    width: 100%;          /* ye line add karein */
    max-width: 100%;      /* ye bhi add karein */
    opacity: 0;
    animation: aboutFade .9s ease .2s forwards;
}

.jd-about__frame{
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(27,39,68,.22);
}
.jd-about__image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .8s ease;
}
.jd-about__frame:hover .jd-about__image{ transform: scale(1.08); }

/* subtle bottom-to-top shade so any caption/edge stays readable & premium */
.jd-about__image-shade{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,14,24,0) 55%, rgba(11,14,24,.45) 100%);
    pointer-events: none;
}

/* thin corner accents — gives a "framed photograph" premium touch */
.jd-about__corner{
    position: absolute;
    width: 54px;
    height: 54px;
    pointer-events: none;
}
.jd-about__corner--tl{
    top: 18px; left: 18px;
    border-top: 2px solid rgba(255,255,255,.8);
    border-left: 2px solid rgba(255,255,255,.8);
    border-radius: 10px 0 0 0;
}
.jd-about__corner--br{
    bottom: 18px; right: 18px;
    border-bottom: 2px solid rgba(255,255,255,.8);
    border-right: 2px solid rgba(255,255,255,.8);
    border-radius: 0 0 10px 0;
}

/* floating stat card, overlapping the bottom-left of the photo */
.jd-about__badge{
    position: absolute;
    left: -28px;
    bottom: -28px;
    width: 148px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #d22139, #1b2744);
    box-shadow: 0 16px 40px rgba(210,33,57,.35), 0 0 0 8px #fbfbfd;
    transition: transform .4s ease, box-shadow .4s ease;
}
.jd-about__badge:hover{
    transform: translateY(-6px) rotate(-3deg);
    box-shadow: 0 22px 50px rgba(210,33,57,.45), 0 0 0 8px #fbfbfd;
}
.jd-about__badge-ring{
    position: absolute;
    inset: 10px;
    color: rgba(255,255,255,.5);
    animation: ringSpin 18s linear infinite;
}
.jd-about__badge-number{
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}
.jd-about__badge-label{
    margin-top: 6px;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.4;
    opacity: .9;
}

/* ---------- animations ---------- */
@keyframes aboutUp{
    from{ opacity: 0; transform: translateY(18px); }
    to{ opacity: 1; transform: translateY(0); }
}
@keyframes aboutFade{
    from{ opacity: 0; transform: scale(.97); }
    to{ opacity: 1; transform: scale(1); }
}
@keyframes lineGrow{
    to{ width: 40px; }
}
@keyframes ringSpin{
    to{ transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce){
    .jd-about__eyebrow-row, .jd-about__title, .jd-about__lead,
    .jd-about__quote, .jd-about__pillars, .jd-about__actions,
    .jd-about__gallery, .jd-about__badge-ring{
        animation: none !important;
        opacity: 1 !important;
    }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px){
    .jd-about__container{
        grid-template-columns: 1fr;
    }
    .jd-about__gallery{
        order: -1;
    }
    .jd-about__frame{ aspect-ratio: 16 / 10; }
    .jd-about__badge{
        width: 120px;
        left: 20px;
        bottom: -24px;
    }
}

@media (max-width: 560px){
    .jd-about__pillars{ grid-template-columns: 1fr; }
    .jd-about__title{ font-size: 1.7rem; }
    .jd-about__actions{ flex-direction: column; align-items: flex-start; gap: 16px; }
    .jd-about__badge{
        width: 100px;
        left: 16px;
        bottom: -20px;
    }
    .jd-about__badge-number{ font-size: 1.9rem; }
    .jd-about__badge-label{ font-size: 9px; }
}

/* -------------------------------------------------------------
   3. BASE TYPOGRAPHY
   ------------------------------------------------------------- */
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  line-height: 1.5;
  min-height: 100vh;
}
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.2; }

/* -------------------------------------------------------------
   4. SHARED / REUSABLE COMPONENTS
   Used across many sections so they live in one place instead
   of being repeated.
   ------------------------------------------------------------- */

/* page-width wrapper, used inside every section */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* small red uppercase label above a heading, e.g. "Our Services" */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-red);
}

/* big section heading under an eyebrow */
.section-title {
  margin-top: 0.75rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand-navy);
}
@media (min-width: 48rem) {
  .section-title { font-size: 3rem; }
}

/* rounded pill buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.btn-red { background: var(--brand-red); color: #fff; }
.btn-red:hover { background: #fff; color: var(--brand-navy); }
.btn-navy { background: var(--brand-navy); color: #fff; }
.btn-navy:hover { background: var(--brand-red); }
.btn-outline { border: 1px solid rgba(255, 255, 255, 0.4); color: #fff; backdrop-filter: blur(4px); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); }

/* numbers rendered with the brand gradient (1975, 25+, 2500+ ...) */
.gradient-text {
  background: var(--gradient-brand);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* small red dot used in front of list items */
.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--brand-red);
  flex-shrink: 0;
}

/* white card with soft shadow, used by several grids */
.card {
  background: var(--card);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* =============================================================
   5. TOP UTILITY BAR  (email / phone / social icons)
   ============================================================= */
.topbar {
  background: var(--brand-navy-deep);
  color: #fff;
  font-size: 0.75rem;
}
.topbar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-block: 0.5rem;
}
.topbar__contacts { display: flex; align-items: center; gap: 1rem; }
.topbar__item { display: flex; align-items: center; gap: 0.375rem; }
.topbar__phone { display: none; }
.topbar__social { display: flex; align-items: center; gap: 0.75rem; }
.topbar__social-label { opacity: 0.7; }
.topbar__social a:hover { color: var(--brand-red); }
.topbar svg { width: 0.875rem; height: 0.875rem; }

@media (min-width: 40rem) {
  .topbar__phone { display: flex; }
}
/* ===================== END TOP UTILITY BAR ===================== */


/* =============================================================
   6. HEADER / NAVIGATION
   ============================================================= */
.site-header {
  position: fixed;      /* was: sticky */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
}
.site-header__logo img { height: 3.5rem; width: auto; }

.site-nav {
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.site-nav a:hover { color: var(--brand-red); }

.site-header__cta { display: none; }
.site-header__menu-btn { padding: 0.5rem; }
.site-header__menu-btn svg { width: 1.5rem; height: 1.5rem; }

@media (min-width: 64rem) {
  .site-nav { display: flex; }
  .site-header__cta { display: inline-flex; }
  .site-header__menu-btn { display: none; }
}
/* ===================== END HEADER / NAVIGATION ===================== */


/* =============================================================
   7. HERO
   ============================================================= */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}
.hero__content {
  position: relative;
  padding-block: 8rem;
}
@media (min-width: 48rem) {
  .hero__content { padding-block: 11rem; }
}
.hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-red);
  background: rgba(255, 255, 255, 0.95);
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
}
.hero__title {
  margin-top: 1.5rem;
  max-width: 56rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
}
.hero__title span { color: var(--brand-red); }
@media (min-width: 48rem) {
  .hero__title { font-size: 4.5rem; }
}
.hero__text {
  margin-top: 1.5rem;
  max-width: 42rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
}
.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
/* ===================== END HERO ===================== */


/* =============================================================
   2. ABOUT
   ============================================================= */
.jd-about {
  position: relative;
  padding-block: 6rem;
  overflow: hidden;
}
.jd-about__field { position: absolute; inset: 0; pointer-events: none; }
.jd-about__container {
  position: relative;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 64rem) {
  .jd-about__container { grid-template-columns: 2fr 1fr; }
}
.jd-about__eyebrow-row { display: flex; align-items: center; gap: 0.75rem; }
.jd-about__line { width: 2.5rem; height: 2px; background: var(--brand-red); }
.jd-about__eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--brand-red);
}
.jd-about__title {
  margin-top: 0.75rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand-navy);
}
.jd-about__title em { color: var(--brand-red); font-style: normal; }
@media (min-width: 48rem) {
  .jd-about__title { font-size: 3rem; }
}
.jd-about__lead {
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}
.jd-about__quote {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--brand-red);
  background: var(--muted);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-style: italic;
  color: var(--brand-navy);
}
.jd-about__pillars {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.jd-about__pillar {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--muted);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-navy);
}
.jd-about__pillar-icon { width: 1.25rem; height: 1.25rem; color: var(--brand-red); }
.jd-about__pillar-icon svg { width: 100%; height: 100%; }
.jd-about__actions { margin-top: 2.5rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.jd-about__cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 999px; background: var(--brand-navy); color: #fff;
  padding: 0.75rem 1.5rem; font-size: 0.875rem; font-weight: 600;
  transition: background-color 0.2s ease;
}
.jd-about__cta:hover { background: var(--brand-red); }
.jd-about__cta-icon { width: 1rem; height: 1rem; }
.jd-about__call-label { display: block; font-size: 0.875rem; color: var(--muted-foreground); }
.jd-about__call-number { font-weight: 700; color: var(--brand-red); }

.jd-about__gallery { 
grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.jd-about__tile {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
}
.jd-about__tile img { width: 100%; height: 100%; object-fit: cover; }
.jd-about__tile figcaption {
  position: absolute; inset: auto 0 0 0;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(20,21,42,0.85), transparent);
  color: #fff; font-weight: 600; font-size: 0.875rem;
}
.jd-about__tile-tag { color: var(--brand-red); font-weight: 700; }
.jd-about__stat {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--gradient-brand);
  color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem;
  aspect-ratio: 4 / 3;
}
.jd-about__stat-ring { position: absolute; inset: 0.75rem; opacity: 0.5; }
.jd-about__stat-number { font-size: 2.5rem; font-weight: 700; }
.jd-about__stat-label { margin-top: 0.5rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.85; }
/* ===================== END ABOUT ===================== */

/* =========================================================
   SERVICES — Interactive Expanding Panels
   ========================================================= */

.services {
  position: relative;
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--muted, #f6f5f2);
}

.services__container {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ---------- Header ---------- */
.services__header {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.services__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brand-red);
}

.services__eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--brand-red);
  border-radius: 2px;
}

.services__title {
  margin-top: 1.25rem;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.875rem, 1.4rem + 2vw, 3rem);
  line-height: 1.15;
  color: var(--brand-navy);
}

.services__title-accent {
  color: var(--brand-red);
}

.services__lead {
  margin-top: 1.1rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted-foreground, #667085);
  margin-inline: auto;
  max-width: 100%;
}

/* ---------- Panels row ---------- */
.services__panels {
  display: flex;
  align-items: stretch;
  gap: .75rem;
  height: clamp(420px, 55vw, 560px);
}

.panel {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: none;
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: var(--brand-navy);
  color: #fff;
  text-align: left;
  font-family: inherit;
  transition: flex-grow .6s cubic-bezier(.22,.61,.36,1), box-shadow .4s ease;
  box-shadow: 0 10px 30px -14px rgba(20, 20, 30, .25);
}

.panel:hover,
.panel:focus-visible {
  box-shadow: 0 24px 48px -18px rgba(20, 20, 30, .35);
}

.panel.is-active {
  flex-grow: 5.5; /* expanded panel takes the lion's share of the row */
}

.panel:not(.is-active) {
  flex-grow: 1;
}

.panel:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
}

/* background image */
.panel__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.panel__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1s ease;
}
.panel.is-active .panel__bg img {
  transform: scale(1);
}

/* dark gradient so text is always readable */
.panel__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10, 14, 26, .92) 0%,
    rgba(10, 14, 26, .55) 42%,
    rgba(10, 14, 26, .25) 68%,
    rgba(10, 14, 26, .35) 100%
  );
  transition: background .5s ease;
}
.panel--cta .panel__scrim--solid {
  background: linear-gradient(155deg, var(--brand-red) 0%, var(--brand-navy) 100%);
}

/* ---------- Collapsed state: icon + vertical number/title ---------- */
.panel__collapsed {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 0;
  height: 100%;
  justify-content: flex-end;
  opacity: 1;
  transition: opacity .35s ease;
}

.panel.is-active .panel__collapsed {
  opacity: 0;
  pointer-events: none;
}

.panel__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .35);
  flex-shrink: 0;
}
.panel__icon svg { width: 20px; height: 20px; }

.panel__index {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .6);
}

.panel__vtitle {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: .95rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: .02em;
}

/* ---------- Expanded content ---------- */
.panel__content {
  position: relative;
  z-index: 2;
  padding: clamp(1.75rem, 3vw, 3rem);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s ease .1s, transform .45s ease .1s;
}

.panel.is-active .panel__content {
  opacity: 1;
  transform: translateY(0);
}

.panel__content-index {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .65);
  margin-bottom: .6rem;
}

.panel__content-title {
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: .75rem;
}

.panel__content-text {
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .85);
  max-width: 46ch;
}

.panel__tags {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.panel__tags li {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .45rem .85rem;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  color: #fff;
  backdrop-filter: blur(4px);
}

/* ---------- CTA panel variant ---------- */
.panel--cta {
  cursor: default;
}
.panel--cta.is-active { cursor: default; }

.panel__content--cta { display: flex; flex-direction: column; }

.panel__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  width: fit-content;
  margin-top: 1.5rem;
  padding: .9rem 1.6rem;
  font-size: .9rem;
  font-weight: 700;
  color: var(--brand-navy);
  background: #fff;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}
.panel__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -10px rgba(0, 0, 0, .35);
}
.panel__cta-btn svg { width: 16px; height: 16px; }


/* ---------- Hover/expand affordance ---------- */
.panel__hint {
  position: absolute;
  top: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  opacity: 0;
  transition: opacity .3s ease, background .3s ease, transform .3s ease;
  animation: hintPulse 2.4s ease-in-out infinite;
}
.panel__hint svg { width: 14px; height: 14px; }

.panel:not(.is-active) .panel__hint {
  opacity: .85;
}
.panel:not(.is-active):hover .panel__hint,
.panel:not(.is-active):focus-visible .panel__hint {
  opacity: 1;
  background: rgba(255, 255, 255, .22);
  transform: translateX(-50%) scale(1.1);
}
.panel.is-active .panel__hint {
  opacity: 0;
}

@keyframes hintPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .25); }
  50%      { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
}

/* subtle lightening so collapsed strips feel "clickable" on hover too */
.panel:not(.is-active):hover .panel__scrim {
  background: linear-gradient(
    to top,
    rgba(10, 14, 26, .82) 0%,
    rgba(10, 14, 26, .45) 42%,
    rgba(10, 14, 26, .15) 68%,
    rgba(10, 14, 26, .25) 100%
  );
}



/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .panel__hint { animation: none; }
}

/* mobile: hint rotates to point down (since accordion expands vertically) */
@media (max-width: 760px) {
  .panel__hint {
    top: 50%;
    left: auto;
    right: 1rem;
    transform: translateY(-50%) rotate(90deg);
  }
  .panel:not(.is-active):hover .panel__hint,
  .panel:not(.is-active):focus-visible .panel__hint {
    transform: translateY(-50%) rotate(90deg) scale(1.1);
  }
  .panel.is-active .panel__hint {
    transform: translateY(-50%) rotate(-90deg);
    opacity: .85;
  }
}
/* Tablet: keep the row, just tighten sizing */
@media (max-width: 1100px) {
  .services__panels { height: clamp(380px, 60vw, 480px); }
  .panel.is-active { flex-grow: 4; }
}

/* Mobile: stack into a vertical accordion */
@media (max-width: 760px) {
  .services__panels {
    flex-direction: column;
    height: auto;
    gap: .6rem;
  }

  .panel {
    flex: none;
    height: 74px;
    transition: height .5s cubic-bezier(.22,.61,.36,1);
  }

  .panel.is-active {
    height: 420px;
  }

  .panel__collapsed {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding: 0 1.25rem;
    gap: .85rem;
  }

  .panel__vtitle {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1rem;
  }

  .panel__content {
    padding: 1.5rem 1.25rem 1.75rem;
  }
}

/* =============================================================
   JADEED GROUP — SERVICES & JOURNEY SECTIONS STYLESHEET
   Premium Corporate UI — Responsive, Accessible, Performant
   ============================================================= */

/* -------------------------------------------------------------
   0. DESIGN TOKENS (fallbacks — override globally if defined)
   ------------------------------------------------------------- */
:root {
  --jadeed-primary: var(--brand-navy, #1a2b4c);
  --jadeed-primary-dark: #101a30;
  --jadeed-primary-light: var(--brand-red, #c1272d);
  --jadeed-accent: var(--brand-red, #c1272d);
  --jadeed-ink: #14151c;
  --jadeed-muted: #6b7280;
  --jadeed-bg: #ffffff;
  --jadeed-bg-alt: #f6f5f2;
  --jadeed-border: #e7e7ea;
  --jadeed-radius-sm: 8px;
  --jadeed-radius-md: 16px;
  --jadeed-radius-lg: 24px;
  --jadeed-shadow-sm: 0 4px 16px rgba(20, 21, 28, 0.06);
  --jadeed-shadow-md: 0 12px 32px rgba(20, 21, 28, 0.10);
  --jadeed-shadow-lg: 0 24px 60px rgba(20, 21, 28, 0.14);
  --jadeed-transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --jadeed-font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* -------------------------------------------------------------
   1. SHARED / EYEBROW LABEL
   ------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--jadeed-accent);
  border-radius: 2px;
}

/* =============================================================
   2. SERVICES SECTION
   ============================================================= */
.services {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
  background: var(--jadeed-bg);
  overflow: hidden;
}

.services__container {
  max-width: 1280px;
  margin: 0 auto;
}

.services__header {
  max-width: 100%;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.services__title {
  margin-top: 0.75rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.875rem, 1.4rem + 2vw, 3rem);
  line-height: 1.15;
  color: var(--brand-navy);
}

/* --- Grid --- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

/* --- Card --- */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--jadeed-bg);
  border: 1px solid var(--jadeed-border);
  border-radius: var(--jadeed-radius-md);
  overflow: hidden;
  transition: transform var(--jadeed-transition), box-shadow var(--jadeed-transition), border-color var(--jadeed-transition);
  will-change: transform;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-8px);
  box-shadow: var(--jadeed-shadow-lg);
  border-color: transparent;
}

/* --- Media --- */
.service-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover .service-card__img {
  transform: scale(1.08);
}

.service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 56, 32, 0) 40%, rgba(14, 56, 32, 0.45) 100%);
  opacity: 0;
  transition: opacity var(--jadeed-transition);
}

.service-card:hover .service-card__media::after {
  opacity: 1;
}

.service-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.4rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--jadeed-primary-dark);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  z-index: 2;
  transition: background var(--jadeed-transition), color var(--jadeed-transition);
}

.service-card:hover .service-card__badge {
  background: var(--jadeed-accent);
  color: #fff;
}

/* --- Body --- */
.service-card__body {
  padding: 1.75rem 1.5rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--jadeed-ink);
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

.service-card__text {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--jadeed-muted);
  margin: 0;
}

/* --- Responsive Grid Breakpoints --- */
@media (max-width: 1100px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services__header {
    margin-bottom: 2.5rem;
  }
}






<!------------------------------------------------------------------------------>

/* =============================================================
   JOURNEY SECTION — HORIZONTAL TIMELINE (complete stylesheet)
   ============================================================= */


.journey {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8rem) 1.5rem;
  background: var(--jadeed-bg-alt);
  overflow: hidden;
  isolation: isolate;
}

h2{
    margin-top: 0.75rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.875rem, 1.4rem + 2vw, 3rem);
  line-height: 1.15;
  color: var(--brand-navy);
}
.journey__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.journey__bg-shape { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.35; }
.journey__bg-shape--one { width: 480px; height: 480px; top: -160px; right: -140px; background: radial-gradient(circle, var(--jadeed-primary-light), transparent 70%); }
.journey__bg-shape--two { width: 380px; height: 380px; bottom: -140px; left: -120px; background: radial-gradient(circle, var(--jadeed-accent), transparent 70%); opacity: 0.18; }

.journey__container { 
    position: relative; 
    z-index: 1; max-width: 1280px; 
    margin: 64px auto; }

.journey__header { max-width: 80%; margin: 0 auto 3.5rem; text-align: center; }

.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--jadeed-accent); border-radius: 2px; }

.journey__title { 
    margin-top: 0.75rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.875rem, 1.4rem + 2vw, 3rem);
  line-height: 1.15;
  color: var(--brand-navy);
}
.journey__intro { 
    margin-top: 1rem; 
    font-size: 1.02rem; 
    line-height: 1.75; 
    color: var(--jadeed-muted); }

/* ---------- Timeline wrap: nav + track side by side ---------- */
.timeline-wrap {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.timeline__nav {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--jadeed-border);
  background: var(--jadeed-bg);
  color: var(--jadeed-primary);
  box-shadow: var(--jadeed-shadow-sm);
  cursor: pointer;
  transition: background var(--jadeed-transition), color var(--jadeed-transition), transform var(--jadeed-transition), box-shadow var(--jadeed-transition);
}
.timeline__nav svg { width: 20px; height: 20px; }
.timeline__nav:hover { background: var(--jadeed-primary); color: #fff; transform: scale(1.06); box-shadow: var(--jadeed-shadow-md); }
.timeline__nav:disabled { opacity: 0.35; cursor: default; pointer-events: none; }

/* ---------- Scrollable track ---------- */
.timeline {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 2.25rem;
  padding: 1.5rem 1rem 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.timeline::-webkit-scrollbar { height: 6px; }
.timeline::-webkit-scrollbar-thumb { background: var(--jadeed-border); border-radius: 999px; }
.timeline:focus-visible { outline: 2px solid var(--jadeed-primary); outline-offset: 4px; border-radius: 12px; }

/* connecting horizontal line, aligned through circle centres */
.timeline__line {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: calc(1.5rem + 75px);
  height: 3px;
  background: var(--jadeed-border);
  border-radius: 3px;
  z-index: 0;
}
.timeline__line-progress {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--jadeed-primary), var(--jadeed-accent));
  border-radius: 3px;
  transform-origin: left;
  transform: scaleX(0);
}

/* ---------- Milestone column ---------- */
.milestone {
  position: relative;
  z-index: 1;
  flex: 0 0 220px;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  scroll-snap-align: start;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.milestone.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .milestone { opacity: 1; transform: none; transition: none; }
}

.milestone__circle {
  width: 150px;
  height: 150px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--jadeed-bg);
  border: 4px solid var(--jadeed-bg);
  box-shadow: 0 0 0 3px var(--jadeed-border), var(--jadeed-shadow-sm);
  transition: transform var(--jadeed-transition), box-shadow var(--jadeed-transition);
}
.milestone__circle img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }

.milestone:hover .milestone__circle { transform: translateY(-4px) scale(1.04); box-shadow: 0 0 0 3px var(--jadeed-primary), var(--jadeed-shadow-md); }

.milestone--current .milestone__circle { box-shadow: 0 0 0 3px var(--jadeed-accent), var(--jadeed-shadow-md); animation: pulse-current 2.4s infinite; }
@keyframes pulse-current {
  0%, 100% { box-shadow: 0 0 0 3px var(--jadeed-accent); }
  50% { box-shadow: 0 0 0 3px var(--jadeed-accent), 0 0 0 9px rgba(193, 39, 45, 0.18); }
}

.milestone__year { 
    margin-top: 0.85rem; 
    font-size: 1.3rem; 
    font-weight: 600; 
    color: #01256a; 
    }
.milestone--current .milestone__year { color: var(--jadeed-accent); }

.milestone__card {
  margin-top: 0.6rem;
  width: 100%;
  background: var(--jadeed-bg);
  border: 1px solid var(--jadeed-border);
  border-radius: var(--jadeed-radius-md);
  padding: 1.1rem 1.1rem 1.25rem;
  box-shadow: var(--jadeed-shadow-sm);
  transition: transform var(--jadeed-transition), box-shadow var(--jadeed-transition);
}
.milestone:hover .milestone__card { transform: translateY(-3px); box-shadow: var(--jadeed-shadow-md); }
.milestone__card--current { border-color: var(--jadeed-accent); background: linear-gradient(180deg, #fff7f7, var(--jadeed-bg)); }

.milestone__stage { 
    display: inline-block; 
    font-size: 0.66rem; 
    font-weight: 700; 
    letter-spacing: 0.12em; 
    text-transform: uppercase; 
    color: #c1272d; 
    
}
.milestone__card--current .milestone__stage { 
    color: var(--jadeed-accent); 
    
}

.milestone__title { 
    margin-top: 0.5rem; 
    font-size: 0.80rem; 
    font-weight: 700; 
    color: #01256a;
    line-height: 1.3; 
    
}
.milestone__text { 
    margin-top: 0.5rem; 
    font-size: 0.50rem; 
    line-height: 1.6; 
    color: var(--jadeed-muted); }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 860px) {
  .timeline__nav { width: 38px; height: 38px; }
  .timeline { gap: 1.5rem; }
  .milestone { flex: 0 0 180px; width: 180px; }
  .milestone__circle { width: 120px; height: 120px; }
  .timeline__line { top: calc(1.5rem + 60px); }
}

@media (max-width: 560px) {
  .timeline-wrap { gap: 0.4rem; }
  .timeline__nav { width: 34px; height: 34px; }
  .timeline__nav svg { width: 16px; height: 16px; }
  .milestone { flex: 0 0 160px; width: 160px; }
  .milestone__circle { width: 100px; height: 100px; }
  .timeline__line { top: calc(1.5rem + 50px); }
  .milestone__card { padding: 0.9rem 0.9rem 1.1rem; }
  .milestone__title { font-size: 0.7rem; }
  .milestone__text { font-size: 0.50rem; }

  .journey__title { font-size: 1.55rem; line-height: 1.35; }
  .journey__intro { font-size: 0.92rem; line-height: 1.65; }
  .journey__bg-shape--one, .journey__bg-shape--two { display: none; }
}

html, body { overflow-x: hidden; }




/* =============================================================
   CEO MESSAGE SECTION — Premium Executive Redesign
   ============================================================= */

#ceo.ceo-section  {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: linear-gradient(180deg, #0a1120 0%, #0d1a30 55%, #0a1120 100%);
  color: #fff;
  isolation: isolate;
}

/* --- Background Decoration --- */
.ceo-bg-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ceo-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 75%);
}

.ceo-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}

.ceo-bg-glow--one {
  width: 480px;
  height: 480px;
  top: -120px;
  left: -140px;
  background: radial-gradient(circle, rgba(200, 30, 45, 0.55), transparent 70%);
}

.ceo-bg-glow--two {
  width: 520px;
  height: 520px;
  bottom: -160px;
  right: -160px;
  background: radial-gradient(circle, rgba(30, 90, 170, 0.4), transparent 70%);
}

.ceo-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Eyebrow --- */
.ceo-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.ceo-eyebrow-line {
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c81e2d);
}

/* --- Grid Layout --- */
.ceo-grid {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

/* --- Portrait Column --- */
.ceo-portrait-col {
  position: sticky;
  top: 6rem;
}

.ceo-portrait-frame {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ceo-portrait-frame:hover {
  transform: translateY(-6px);
}

.ceo-portrait-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.03);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.ceo-portrait-frame:hover .ceo-portrait-img {
  transform: scale(1.04);
}

.ceo-portrait-corner {
  position: absolute;
  width: 46px;
  height: 46px;
  border: 2px solid #c81e2d;
  z-index: 2;
  opacity: 0.9;
}

.ceo-portrait-corner--tl {
  top: 14px;
  left: 14px;
  border-right: none;
  border-bottom: none;
}

.ceo-portrait-corner--br {
  bottom: 14px;
  right: 14px;
  border-left: none;
  border-top: none;
}

.ceo-portrait-ribbon {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 1.1rem 1.25rem;
  background: linear-gradient(180deg, transparent, rgba(5, 8, 16, 0.92) 70%);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.ceo-identity-card {
  margin-top: 1.75rem;
  padding: 1.5rem 1.65rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(6px);
}

.ceo-identity-name {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}

.ceo-identity-role {
  margin: 0.3rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e2465a;
}

.ceo-identity-divider {
  width: 100%;
  height: 1px;
  margin: 1rem 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), transparent);
}

.ceo-identity-company {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

/* --- Message Column --- */
.ceo-message-col {
  min-width: 0;
}

.ceo-header {
  margin-bottom: 1.75rem;
}

.ceo-heading {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  color:#fff;
}

.ceo-heading-accent {
  color: transparent;
  background: linear-gradient(100deg, #e2465a, #ff8a6b);
  -webkit-background-clip: text;
  background-clip: text;
}

/* --- Quote Block --- */
.ceo-quote-block {
  position: relative;
  margin: 0 0 2rem;
  padding: 0.25rem 0 0.25rem 1.75rem;
  border-left: 3px solid #c81e2d;
}

.ceo-quote-mark {
  position: absolute;
  top: -1rem;
  left: 0.75rem;
  font-size: 4rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(200, 30, 45, 0.35);
  pointer-events: none;
}

.ceo-quote-lead {
  position: relative;
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.6;
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
}

/* --- Body --- */
.ceo-body {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
  width: 100%;
}

.ceo-body strong {
  color: #fff;
  font-weight: 700;
}

.ceo-body-salutation {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.ceo-body-thanks {
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

/* --- Signature Block --- */
.ceo-signature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ceo-signature-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ceo-signature-warm {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.ceo-signature-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 1.65rem;
  font-weight: 600;
  color: #fff;
}

.ceo-signature-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, color 0.4s ease;
}

.ceo-signature:hover .ceo-signature-seal {
  transform: rotate(-8deg) scale(1.08);
  border-color: #c81e2d;
  color: #fff;
}

/* --- Reveal-on-scroll animation --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 900px) {
  .ceo-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ceo-portrait-col {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .ceo-container {
    padding: 0 1.25rem;
  }

  .ceo-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    gap: 0.6rem;
  }

  .ceo-heading {
    font-size: 1.9rem;
  }

  .ceo-quote-lead {
    font-size: 1.05rem;
  }

  .ceo-body {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .ceo-signature {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .ceo-portrait-col {
    max-width: 100%;
  }
}

html, body {
  overflow-x: hidden;
}
/* ===================== END CEO MESSAGE ===================== */
/* ===================== END CEO MESSAGE ===================== */


/* =============================================================
   12. STATS + WORKFLOW + GROWTH CHART
   ============================================================= */
.stats-section { padding-block: 6rem; }
.stats-grid { display: grid; gap: 1.5rem; margin-bottom: 5rem; grid-template-columns: 1fr; }
@media (min-width: 48rem) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
.stat-card { border-radius: var(--radius-2xl); padding: 2rem; text-align: center; box-shadow: var(--shadow-card); border: 1px solid var(--border); }
.stat-card__number { font-size: 3rem; font-weight: 700; }
.stat-card__label { margin-top: 0.75rem; font-size: 0.875rem; font-weight: 500; color: var(--muted-foreground); }

.workflow-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 64rem) { .workflow-grid { grid-template-columns: 1fr 1fr; } }
.workflow-grid h3 { font-size: 1.875rem; font-weight: 700; color: var(--brand-navy); }
.workflow-grid > div > p { margin-top: 1rem; color: var(--muted-foreground); }
.workflow-list { margin-top: 1.5rem; display: grid; grid-template-columns: 1fr; gap: 0.75rem; font-size: 0.875rem; }
@media (min-width: 40rem) { .workflow-list { grid-template-columns: repeat(2, 1fr); } }
.workflow-list li { display: flex; align-items: flex-start; gap: 0.5rem; }
.workflow-list .dot { margin-top: 0.375rem; }

.growth-chart {
  margin-top: 1.5rem;
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  background: var(--muted);
  height: 12rem;
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}
.growth-chart__bar { flex: 1; border-radius: 0.5rem 0.5rem 0 0; background: var(--gradient-brand); }
.growth-chart__bar:nth-child(1) { height: 35%; }
.growth-chart__bar:nth-child(2) { height: 48%; }
.growth-chart__bar:nth-child(3) { height: 55%; }
.growth-chart__bar:nth-child(4) { height: 68%; }
.growth-chart__bar:nth-child(5) { height: 72%; }
.growth-chart__bar:nth-child(6) { height: 85%; }
.growth-chart__bar:nth-child(7) { height: 95%; }
.growth-chart__years { margin-top: 0.5rem; display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--muted-foreground); }
/* ===================== END STATS + WORKFLOW + GROWTH CHART ===================== */





/* ============================================================
  
   ============================================================ */



/* ---------- Layout shell ---------- */
.jd-showcase {
  padding: 6rem 0;
  background: var(--background);
}

.jd-showcase__container {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ---------- Shared type ---------- */
.jd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-red);
}

.jd-eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--brand-red);
  display: inline-block;
}

.jd-heading {
  margin-top: 0.75rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.875rem, 1.4rem + 2vw, 3rem);
  line-height: 1.15;
  color: var(--brand-navy);
}

.jd-heading--sm {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
}

.jd-heading__accent {
  color: var(--brand-red);
}

.jd-subheading {
  margin-top: 1rem;
  max-width: 100%;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ---------- Reveal-on-scroll base state ---------- */











@media (prefers-reduced-motion: reduce) {
  .jd-stat,
  .jd-flow__step{
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Statistics ---------- */
.jd-stats__intro {
  text-align: center;
  max-width: 100%;
  margin-inline: auto;
}
.jd-stats__intro .jd-subheading {
  margin-inline: auto;
  width: 100%;
}

.jd-stats {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .jd-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.jd-stat {
  position: relative;
  padding: 1.5rem 1.75rem;
  text-align: left;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: opacity 0.6s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.jd-stat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elegant);
}

/* icon + value sit side by side in one row */
.jd-stat__top {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.jd-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: var(--gradient-brand);
  color: #fff;
  margin-bottom: 0; /* was pushing icon down when stacked */
}
.jd-stat__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.jd-stat__value {
  font-family: "Poppins", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient-brand);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* label sits full-width underneath the icon+value row */
.jd-stat__label {
  margin-top: 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.jd-stat__bar {
  margin-top: 1rem;
  height: 3px;
  width: 0;
  max-width: 5rem;
  border-radius: 999px;
  background: var(--gradient-brand);
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
.jd-stat.is-visible .jd-stat__bar {
  width: 100%;
}




/* ---------- Workflow ---------- */
.jd-workflow {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .jd-workflow {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
  }
}

.jd-workflow__intro {
  position: relative;
}

/* Giant faint numeral filling the intro column's empty space —
   also quietly explains why there are six cards on the right */
.jd-workflow__ghost-number {
  position: absolute;
  top: -2.5rem;
  right: -0.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(8rem, 6rem + 8vw, 13rem);
  line-height: 1;
  color: var(--brand-navy);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

@media (max-width: 1023px) {
  .jd-workflow__ghost-number {
    display: none;
  }
}

.jd-workflow__intro > * {
  position: relative;
  z-index: 1;
}

.jd-workflow__highlight {
  margin: 2rem 0 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--brand-red);
  background: linear-gradient(to right, var(--muted), transparent);
  border-radius: 0 1rem 1rem 0;
}

.jd-workflow__highlight-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.15rem;
  color: var(--brand-red);
}

.jd-workflow__highlight p {
  margin: 0;
  font-style: italic;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--brand-navy);
}

.jd-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .jd-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .jd-flow {
    grid-template-columns: repeat(3, 1fr);
  }
}

.jd-flow__step {
  padding: 1.75rem 1.5rem;
  background: var(--muted);
  border: 1px solid transparent;
  border-radius: 1rem;
  transition:
    opacity 0.6s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.jd-flow__step:hover {
  transform: translateY(-4px);
  background: var(--card);
  border-color: var(--brand-red);
  box-shadow: var(--shadow-card);
}

.jd-flow__node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1.5px solid var(--brand-navy);
  color: var(--brand-navy);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.jd-flow__node svg {
  width: 1.25rem;
  height: 1.25rem;
}

.jd-flow__step:hover .jd-flow__node {
  transform: scale(1.08) rotate(-6deg);
  background: var(--gradient-brand);
  border-color: transparent;
  color: #fff;
}

.jd-flow__title {
  margin-top: 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.jd-flow__text {
  margin-top: 0.4rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* ---------- Growth chart ---------- */


.jd-chart {
  margin-top: 2rem;
  padding: 1.5rem 1.5rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-card);
}

/* Wrapper caps the chart's height so it can never balloon on wide
   screens — this is what keeps the chart compact and proportional. */
.jd-chart__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 2.7 / 1;
  max-height: 320px;
}

.jd-chart__svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.jd-chart__grid line {
  stroke: var(--border);
  stroke-width: 1;
  stroke-dasharray: 4 6;
}

.jd-chart__area {
  opacity: 0;
  transition: opacity 1s ease 0.3s;
}


.jd-chart__line {
  stroke: url(#jdLineStroke);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.jd-chart__point {
  fill: var(--card);
  stroke: var(--brand-red);
  stroke-width: 3;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: 1.6s;
  cursor: pointer;
}



.jd-chart__point:hover {
  fill: var(--brand-red);
}

.jd-chart__point--current {
  fill: var(--brand-red);
  stroke: var(--card);
}

.jd-chart__point-ripple {
  fill: none;
  stroke: var(--brand-red);
  stroke-width: 2;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes jd-pulse {
  0% {
    r: 7;
    opacity: 0.6;
  }
  100% {
    r: 20;
    opacity: 0;
  }
}

/* Start / end value tags floating on the chart itself */
.jd-chart__tag {
  position: absolute;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  opacity: 0;
  transition: opacity 0.5s ease 1.9s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 1.9s;
  white-space: nowrap;
}



.jd-chart__tag--start {
  left: 0;
  bottom: 8%;
  transform: translate(-0.5rem, 0.5rem);
}


.jd-chart__tag--end {
  right: 0;
  top: 2%;
  color: #fff;
  background: var(--gradient-brand);
  border-color: transparent;
  box-shadow: var(--shadow-card);
  transform: translate(0.5rem, -0.5rem);
}


@media (max-width: 640px) {
  .jd-chart__tag {
    display: none;
  }
}

.jd-chart__axis {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0 0.25rem;
}

.jd-chart__axis span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.jd-chart__axis span:last-child {
  color: var(--brand-red);
  font-weight: 700;
  background: color-mix(in oklch, var(--brand-red) 12%, transparent);
}

@media (prefers-reduced-motion: reduce) {
  .jd-chart__line {
    transition: none;
    stroke-dashoffset: 0;
  }
  .jd-chart__point {
    transition: none;
  }
  .jd-chart__point-ripple {
    animation: none;
    display: none;
  }
  .jd-chart__area,
  .jd-chart__tag {
    transition: none;
  }
  
}





/* ============================================================
   PROJECTS — Interactive Vertical Showcase
   ============================================================ */

.jp {
  position: relative;
  overflow: hidden;
  padding-block: 7rem;
  background: #fff;
  isolation: isolate;
}

/* ---------- Ambient background ---------- */
.jp__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.jp__glow {
  position: absolute;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.16;
}
.jp__glow--a {
  top: -12rem;
  right: -10rem;
  background: var(--brand-red);
}
.jp__glow--b {
  bottom: -16rem;
  left: -14rem;
  background: var(--brand-navy);
  opacity: 0.12;
}
.jp__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(20, 21, 42, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 21, 42, 0.035) 1px, transparent 1px);
  background-size: 3rem 3rem;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 40%, transparent 90%);
}

.jp__inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ---------- Header ---------- */
.jp__head {
  max-width: 46rem;
}
.jp__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-red);
}
.jp__eyebrow-mark {
  width: 2.5rem;
  height: 2px;
  background: var(--brand-red);
}
.jp__title {
  margin-top: 1rem;
  font-family: var(--font-heading, inherit);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--brand-navy);
}
.jp__title em {
  font-style: normal;
  color: var(--brand-red);
}
.jp__lede {
  margin-top: 1.5rem;
  max-width: 40rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted-foreground, #6c6f7c);
}

/* ---------- Stats row ---------- */
.jp__stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 34rem;
  border-top: 1px solid var(--border, #e2e2e8);
}
.jp__stat {
  padding: 1.25rem 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.jp__stat + .jp__stat {
  border-left: 1px solid var(--border, #e2e2e8);
  padding-left: 1.25rem;
}
.jp__stat-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-navy);
  font-variant-numeric: tabular-nums;
}
.jp__stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground, #6c6f7c);
  line-height: 1.4;
}

/* ---------- Showcase layout ---------- */
.jp__showcase {
  margin-top: 4.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
}
@media (min-width: 64rem) {
  .jp__showcase {
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
    gap: 3.5rem;
  }
}

/* ---------- Sticky visual stage ---------- */
.jp__stage {
  order: -1;
}
@media (min-width: 64rem) {
  .jp__stage {
    order: 0;
  }
}
.jp__stage-frame {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-2xl, 1.5rem);
  overflow: hidden;
  box-shadow: var(--shadow-elegant, 0 16px 48px rgba(20, 21, 42, 0.18));
  background: var(--brand-navy-deep);
}
@media (min-width: 64rem) {
  .jp__stage-frame {
    position: sticky;
    top: 6.5rem;
    aspect-ratio: auto;
    height: 100%;
  }
}
.jp__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.jp__slide.is-active {
  opacity: 1;
}
.jp__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jp__stage-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 21, 42, 0.92) 0%, rgba(20, 21, 42, 0.15) 45%, transparent 70%);
}
.jp__stage-meta {
  position: absolute;
  inset: auto 1.75rem 1.75rem 1.75rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  color: #fff;
}
.jp__stage-index {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
.jp__stage-index b {
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 0.25rem;
}
.jp__stage-name {
  font-size: 1.375rem;
  font-weight: 700;
}
.jp__tick {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  opacity: 0.7;
}
.jp__tick--tl {
  top: 1.25rem;
  left: 1.25rem;
  border-right: 0;
  border-bottom: 0;
}
.jp__tick--br {
  bottom: 1.25rem;
  right: 1.25rem;
  border-left: 0;
  border-top: 0;
}

/* ---------- Project index (accordion list) ---------- */
.jp__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.jp__card {
  border-radius: var(--radius-xl, 1rem);
  border: 1px solid var(--border, #e2e2e8);
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.jp__item.is-open .jp__card {
  border-color: rgba(209, 38, 63, 0.35);
  box-shadow: var(--shadow-card, 0 4px 24px rgba(20, 21, 42, 0.08));
}

/* thumbnail only visible on mobile, where the sticky stage is stacked above */
.jp__card-media {
  display: none;
}
@media (max-width: 63.99rem) {
  .jp__item:first-child .jp__card-media,
  .jp__card-media {
    display: none;
  }
}

.jp__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  cursor: pointer;
}
.jp__num {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-red);
  font-variant-numeric: tabular-nums;
}
.jp__heading {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.jp__badge {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-foreground, #6c6f7c);
}
.jp__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-navy);
}
.jp__chev {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--muted, #f3f3f6);
  color: var(--brand-navy);
  transition: transform 0.3s ease, background-color 0.2s ease, color 0.2s ease;
}
.jp__chev svg {
  width: 1rem;
  height: 1rem;
}
.jp__item.is-open .jp__chev {
  transform: rotate(180deg);
  background: var(--brand-red);
  color: #fff;
}

.jp__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.jp__item.is-open .jp__panel {
  grid-template-rows: 1fr;
}
.jp__panel-in {
  overflow: hidden;
  min-height: 0;
}
.jp__copy {
  padding: 0 1.5rem 1.5rem 3.375rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted-foreground, #6c6f7c);
}
.jp__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin: 0 1.5rem 1.5rem 3.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-red);
}
.jp__link svg {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.2s ease;
}
.jp__link:hover svg {
  transform: translateX(3px);
}

/* ---------- Mobile: show a small thumbnail per closed card ---------- */
@media (max-width: 63.99rem) {
  .jp__stage {
    margin-bottom: 0.5rem;
  }
  .jp__trigger {
    padding: 1rem 1.25rem;
  }
  .jp__copy,
  .jp__link {
    padding-left: 1.25rem;
    margin-left: 0;
  }
  .jp__copy {
    padding-right: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .jp__link {
    margin-right: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .jp__slide,
  .jp__panel,
  .jp__chev,
  .jp__link svg {
    transition: none !important;
  }
}














/* =============================================================
   14. BLOG
   ============================================================= */
.blog { padding-block: 6rem; }
.blog__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.blog__grid { margin-top: 3.5rem; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 48rem) { .blog__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .blog__grid { grid-template-columns: repeat(4, 1fr); } }

.blog-card { background: var(--card); border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-card); }
.blog-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.blog-card:hover .blog-card__media img { transform: scale(1.1); }
.blog-card__body { padding: 1.5rem; }
.blog-card__date { font-size: 0.75rem; color: var(--muted-foreground); }
.blog-card__title { margin-top: 0.5rem; font-size: 1rem; font-weight: 700; color: var(--brand-navy); line-height: 1.375; transition: color 0.2s ease; }
.blog-card:hover .blog-card__title { color: var(--brand-red); }
.blog-card__link { margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; font-weight: 600; color: var(--brand-red); }
.blog-card__link svg { width: 0.875rem; height: 0.875rem; }
/* ===================== END BLOG ===================== */






/* ---------- Section shell ---------- */
.jd-leadership {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0;
  background: var(--background);
}

.jd-leadership__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.jd-leadership__glow {
  position: absolute;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
}

.jd-leadership__glow--one {
  top: -12rem;
  right: -10rem;
  background: var(--brand-navy);
  animation: jd-lead-float 24s ease-in-out infinite alternate;
}

.jd-leadership__glow--two {
  bottom: -14rem;
  left: -10rem;
  background: var(--brand-red);
  animation: jd-lead-float 28s ease-in-out infinite alternate-reverse;
}

@keyframes jd-lead-float {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-2rem, 2rem, 0);
  }
}

.jd-leadership__grid {
  position: absolute;
  inset: -10%;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.4;
  mask-image: radial-gradient(circle at 75% 15%, black, transparent 65%);
}

.jd-leadership__monogram {
  position: absolute;
  right: -1rem;
  bottom: -3rem;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(9rem, 7rem + 9vw, 16rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px oklch(0.32 0.09 265 / 0.08);
  user-select: none;
}

.jd-leadership__inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ---------- Header (shared .jd-eyebrow, scoped safely) ---------- */
.jd-leadership__head {
  max-width: 46rem;
  margin-bottom: 4rem;
}

.jd-leadership .jd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-red);
}

.jd-leadership .jd-eyebrow::before {
  content: none;
}

.jd-leadership .jd-eyebrow__line {
  width: 2rem;
  height: 2px;
  background: var(--brand-red);
  display: inline-block;
}

.jd-leadership__title {
  margin: 0.75rem 0 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 1.5rem + 2.2vw, 3.25rem);
  line-height: 1.15;
  color: var(--brand-navy);
}

.jd-leadership__title em {
  font-style: normal;
  color: var(--brand-red);
}

.jd-leadership__lead {
  margin-top: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 1.0625rem;
}

/* ---------- Reveal-on-scroll (generic, used across this section) ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .jd-leadership__glow {
    animation: none;
  }
}

/* ---------- Stage layout ---------- */
.jd-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .jd-stage {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 3.5rem;
    align-items: start;
  }
}

/* ---------- Portrait gallery ---------- */
.jd-portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--brand-navy-deep);
  box-shadow: var(--shadow-elegant);

  /* spotlight custom properties, driven by JS */
  --spot-x: 50%;
  --spot-y: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.4s ease;
}

.jd-portrait-frame__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
  z-index: 3;
}

.jd-portrait {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  filter: grayscale(25%);
  transition: opacity 0.6s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
}

.jd-portrait.is-active {
  opacity: 1;
  transform: scale(1);
  filter: grayscale(0%);
}

.jd-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.jd-portrait-frame__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 55%, oklch(0.15 0.05 265 / 0.75) 100%);
}

/* Pointer spotlight (desktop, fine pointer, motion allowed) */
.jd-portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), oklch(1 0 0 / 0.18), transparent 45%);
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.jd-portrait-frame.is-hovered::after {
  opacity: 1;
}

.jd-portrait-frame__badge {
  position: absolute;
  z-index: 3;
  right: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: oklch(1 0 0 / 0.12);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-variant-numeric: tabular-nums;
}

.jd-portrait-frame__badge-num {
  font-weight: 700;
  font-size: 0.9375rem;
}

.jd-portrait-frame__badge-sep {
  width: 0.75rem;
  height: 1px;
  background: oklch(1 0 0 / 0.5);
  display: inline-block;
}

.jd-portrait-frame__badge-total {
  font-size: 0.75rem;
  opacity: 0.7;
}

.jd-rail {
  margin-top: 1rem;
  height: 3px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
}

.jd-rail__fill {
  display: block;
  height: 100%;
  width: var(--progress, 33.333%);
  background: var(--gradient-brand);
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Bio content ---------- */
.jd-stage__content {
  position: relative;
}

.jd-bio {
  display: none;
}

.jd-bio.is-active {
  display: block;
  animation: jd-bio-in 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes jd-bio-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .jd-bio.is-active {
    animation: none;
  }
}

.jd-bio__index {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--brand-red);
  letter-spacing: 0.1em;
}

.jd-bio__role {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.jd-bio__name {
  margin: 0.35rem 0 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
  color: var(--brand-navy);
}

.jd-bio__quote {
  margin: 1.5rem 0 0;
  padding: 0.25rem 0 0.25rem 1.25rem;
  border-left: 3px solid var(--brand-red);
}

.jd-bio__quote p {
  margin: 0;
  font-style: italic;
  line-height: 1.75;
  color: var(--foreground);
  font-size: 1.0625rem;
}

.jd-bio__tags {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.jd-bio__tags li {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--brand-navy);
  background: var(--muted);
}

/* ---------- Selector ---------- */
.jd-selector {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.jd-selector__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1.25rem 0.5rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  cursor: pointer;
  text-align: center;
  font: inherit;
  color: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.jd-selector__item:hover {
  border-color: var(--brand-red);
  transform: translateY(-3px);
}

.jd-selector__item:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 2px;
}

.jd-selector__item.is-active {
  border-color: var(--brand-red);
  background: var(--muted);
  box-shadow: var(--shadow-card);
}

.jd-selector__thumb {
  flex-shrink: 0;
  width: clamp(3.5rem, 3rem + 4vw, 5.5rem);
  height: clamp(3.5rem, 3rem + 4vw, 5.5rem);
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--border);
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.jd-selector__item.is-active .jd-selector__thumb {
  border-color: var(--brand-red);
  transform: scale(1.06);
}

.jd-selector__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.jd-selector__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 0;
  width: 100%;
}

.jd-selector__name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--brand-navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.jd-selector__role {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Selection indicator — a small bar that grows and colors when active */
.jd-selector__arrow {
  width: 1.5rem;
  height: 2px;
  border: 0;
  background: var(--border);
  border-radius: 999px;
  transition: background-color 0.3s ease, width 0.3s ease;
}

.jd-selector__item.is-active .jd-selector__arrow {
  background: var(--brand-red);
  width: 2.25rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .jd-leadership {
    padding: 4.5rem 0;
  }

  .jd-selector {
    gap: 0.5rem;
  }

  .jd-selector__item {
    padding: 1rem 0.35rem 1.25rem;
  }

  .jd-selector__name {
    font-size: 0.75rem;
  }

  .jd-selector__role {
    font-size: 0.6875rem;
  }
}

/* ---------- Forced colors / high contrast ---------- */
@media (forced-colors: active) {
  .jd-portrait-frame,
  .jd-selector__item,
  .jd-bio__tags li {
    border: 1px solid CanvasText;
  }

  .jd-selector__item.is-active {
    outline: 2px solid Highlight;
  }
}

/* ---------- Print ---------- */
@media print {
  .jd-leadership__bg {
    display: none !important;
  }

  .jd-bio {
    display: block !important;
    page-break-inside: avoid;
    margin-bottom: 1.5rem;
  }

  .jd-selector {
    display: none !important;
  }
}








/* =========================================================
   JADEED GROUP — BRANCHES / NATIONWIDE LOCATOR (clean rebuild)
   ========================================================= */

#branches {
  --jg-navy: #0b1f3a;
  --jg-navy-2: #14305f;
  --jg-red: #c9262f;
  --jg-ink: #0d1b32;
  --jg-muted: #64748b;
  --jg-line: #e7e9ef;
  --jg-surface: #ffffff;
  --jg-surface-alt: #f6f8fb;
  --jg-radius-sm: 12px;
  --jg-radius-md: 20px;
  --jg-radius-lg: 28px;
  --jg-shadow-sm: 0 4px 16px rgba(11, 31, 58, 0.07);
  --jg-shadow-md: 0 20px 46px -24px rgba(11, 31, 58, 0.4);
  --jg-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.jg-branches {
  position: relative;
  isolation: isolate;
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--jg-surface-alt) 50%, #ffffff 100%);
  overflow: hidden;
}

/* ---------- Decorative background ---------- */
.jg-branches__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.jg-branches__orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35; }
.jg-branches__orb--one { width: 34rem; height: 34rem; top: -14rem; left: -12rem; background: radial-gradient(circle, rgba(20, 48, 95, 0.35), transparent 70%); }
.jg-branches__orb--two { width: 28rem; height: 28rem; right: -10rem; bottom: -10rem; background: radial-gradient(circle, rgba(201, 38, 47, 0.22), transparent 70%); }
.jg-branches__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(11,31,58,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(11,31,58,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 25%, #000 0%, transparent 78%);
}

.jg-branches__inner { position: relative; max-width: 1240px; margin-inline: auto; padding-inline: 1.5rem; }

/* ---------- Header ---------- */
.jg-branches__head { max-width: 100%; }

.jg-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--jg-navy);
}
.jg-eyebrow__dot {
  width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--jg-red);
  box-shadow: 0 0 0 4px rgba(201, 38, 47, 0.15);
}

.jg-branches__title {
  margin-top: 1.1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.875rem, 1.4rem + 2vw, 3rem);
  line-height: 1.15;
  color: var(--brand-navy);
  letter-spacing: -0.015em;
}
.jg-branches__title-accent { color: var(--jg-red); }

.jg-branches__lead {
  margin-top: 1.1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--jg-muted);
}

/* ---------- Stats strip ---------- */
.jg-branches__stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--jg-line);
  border: 1px solid var(--jg-line);
  border-radius: var(--jg-radius-md);
  overflow: hidden;
  box-shadow: var(--jg-shadow-sm);
  list-style: none;
  padding: 0;
}
.jg-stat {
  background: #fff;
  padding: 1.5rem 1.4rem;
  transition: background 0.3s ease;
}
.jg-stat:hover { background: var(--jg-surface-alt); }
.jg-stat__value {
  display: block;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 800;
  color: var(--jg-navy);
  font-variant-numeric: tabular-nums;
}
.jg-stat__value--text { font-size: clamp(1.4rem, 2vw, 1.7rem); }
.jg-stat__label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jg-muted);
}

/* ---------- Explorer layout ---------- */
.jg-explorer {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
}

/* ---------- Left rail ---------- */
.jg-rail {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.1rem;
  background: #fff;
  border: 1px solid var(--jg-line);
  border-radius: var(--jg-radius-md);
  box-shadow: var(--jg-shadow-sm);
}

.jg-rail__item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: var(--jg-ink);
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.jg-rail__item:hover { background: var(--jg-surface-alt); transform: translateX(2px); }
.jg-rail__item:focus-visible { outline: 2px solid var(--jg-red); outline-offset: 2px; }

.jg-rail__item.is-active {
  background: linear-gradient(135deg, var(--jg-navy), var(--jg-navy-2));
  color: #fff;
  box-shadow: var(--jg-shadow-md);
}

.jg-rail__index {
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(13, 27, 50, 0.35);
}
.jg-rail__item.is-active .jg-rail__index { color: rgba(255, 255, 255, 0.55); }

.jg-rail__text { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.jg-rail__name {
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.jg-rail__meta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--jg-muted);
}
.jg-rail__item.is-active .jg-rail__meta { color: rgba(255, 255, 255, 0.7); }

.jg-rail__badge {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: rgba(201, 38, 47, 0.12);
  color: var(--jg-red);
}
.jg-rail__item.is-active .jg-rail__badge { background: rgba(255, 255, 255, 0.18); color: #fff; }

.jg-rail__chevron {
  width: 16px; height: 16px;
  color: rgba(13, 27, 50, 0.3);
  transition: transform 0.3s ease, color 0.3s ease;
}
.jg-rail__item:hover .jg-rail__chevron { transform: translateX(3px); color: var(--jg-red); }
.jg-rail__item.is-active .jg-rail__chevron { color: #fff; transform: translateX(3px); }

/* ---------- Stage / panels ---------- */
.jg-stage { position: relative; }

.jg-panel {
  display: none;
  background: #fff;
  border: 1px solid var(--jg-line);
  border-radius: var(--jg-radius-lg);
  overflow: hidden;
  box-shadow: var(--jg-shadow-md);
}
.jg-panel.is-active {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  animation: jgPanelIn 0.5s var(--jg-ease) both;
}
@keyframes jgPanelIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Left visual column (used by every panel: aside OR media) */
.jg-panel__aside,
.jg-panel__media {
  position: relative;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  background: linear-gradient(150deg, var(--jg-navy) 0%, var(--jg-navy-2) 100%);
  color: #fff;
  overflow: hidden;
}
.jg-panel__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.jg-panel__glow {
  position: absolute; inset: -30% -30% auto auto;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,38,47,0.4), transparent 70%);
  filter: blur(10px);
}

.jg-panel__region {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.jg-panel__code,
.jg-panel__index {
  margin-top: auto;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.18);
}
.jg-panel__coords {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.jg-panel__pulse {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.jg-panel__pulse svg { width: 20px; height: 20px; }
.jg-panel__pulse-ring {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(201, 38, 47, 0.55);
  animation: jgPulseRing 2.4s ease-out infinite;
}
@keyframes jgPulseRing {
  0% { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}

.jg-panel__pin { width: 26px; height: 26px; }

/* Body column */
.jg-panel__body { padding: 2.25rem 2.25rem 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }

.jg-panel__tag,
.jg-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jg-red);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(201, 38, 47, 0.08);
  border: 1px solid rgba(201, 38, 47, 0.18);
}
.jg-panel__tag-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.jg-panel__title {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 800;
  color: var(--jg-navy);
  letter-spacing: -0.01em;
}
.jg-panel__desc,
.jg-panel__lead {
  margin: 0;
  max-width: 52ch;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--jg-muted);
}

/* Details list */
.jg-details {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.jg-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: var(--jg-surface-alt);
  border: 1px solid var(--jg-line);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.jg-detail:hover { background: #fff; border-color: rgba(201,38,47,0.25); transform: translateX(3px); }

.jg-detail__icon {
  flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: rgba(201, 38, 47, 0.08);
  color: var(--jg-red);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.jg-detail__icon svg { width: 18px; height: 18px; }
.jg-detail:hover .jg-detail__icon { background: var(--jg-red); color: #fff; transform: scale(1.05); }

.jg-detail__text { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.jg-detail__label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(13,27,50,0.42);
}
.jg-detail__value { font-size: 0.9rem; line-height: 1.6; font-weight: 600; color: var(--jg-navy); word-break: break-word; }

.jg-link { color: inherit; text-decoration: none; }
.jg-link:hover, .jg-link:focus-visible { color: var(--jg-red); }

/* Actions / buttons */
.jg-panel__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.25rem; }
.jg-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-size: 0.82rem; font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.jg-btn svg { width: 16px; height: 16px; }

.jg-btn--solid,
.jg-btn--primary {
  background: linear-gradient(135deg, var(--jg-navy), var(--jg-navy-2));
  color: #fff;
  box-shadow: 0 14px 30px -18px rgba(11,31,58,0.9);
}
.jg-btn--solid:hover, .jg-btn--primary:hover { background: linear-gradient(135deg, var(--jg-red), #a11c22); transform: translateY(-2px); }

.jg-btn--ghost {
  background: #fff;
  color: var(--jg-navy);
  border-color: var(--jg-line);
}
.jg-btn--ghost:hover { border-color: var(--jg-red); color: var(--jg-red); transform: translateY(-2px); }

/* ---------- Directory grid ---------- */
.jg-directory { margin-top: 4rem; }
.jg-directory__head { max-width: 40rem; margin-bottom: 2rem; }
.jg-directory__title { margin: 0; font-size: 1.5rem; font-weight: 800; color: var(--jg-navy); }
.jg-directory__subtitle { margin-top: 0.5rem; color: var(--jg-muted); }

.jg-directory__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.jg-mini {
  display: flex; gap: 0.9rem;
  padding: 1.4rem;
  background: #fff;
  border: 1px solid var(--jg-line);
  border-radius: var(--jg-radius-md);
  box-shadow: var(--jg-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.jg-mini:hover { transform: translateY(-4px); box-shadow: var(--jg-shadow-md); }

.jg-mini__pin {
  flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(201,38,47,0.08);
  color: var(--jg-red);
}
.jg-mini__pin svg { width: 18px; height: 18px; }

.jg-mini__body { display: flex; flex-direction: column; gap: 0.3rem; min-width: 0; }
.jg-mini__badge {
  width: fit-content;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--jg-red);
}
.jg-mini__name { margin: 0; font-size: 0.98rem; font-weight: 700; color: var(--jg-navy); }
.jg-mini__address { margin: 0; font-size: 0.82rem; line-height: 1.55; color: var(--jg-muted); }
.jg-mini__link { margin-top: 0.2rem; font-size: 0.82rem; font-weight: 700; color: var(--jg-navy); text-decoration: none; }
.jg-mini__link:hover { color: var(--jg-red); }

.jg-mini--cta {
  background: linear-gradient(135deg, var(--jg-navy), var(--jg-navy-2));
  color: #fff;
  align-items: center;
}
.jg-mini--cta .jg-mini__name { color: #fff; }
.jg-mini--cta .jg-mini__address { color: rgba(255,255,255,0.75); margin-bottom: 0.75rem; }
.jg-mini--cta .jg-btn--sm { padding: 0.6rem 1.1rem; font-size: 0.78rem; }











/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .jg-explorer { grid-template-columns: 260px minmax(0, 1fr); }
  .jg-directory__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .jg-explorer { grid-template-columns: 1fr; }

  .jg-rail {
    flex-direction: row;
    overflow-x: auto;
    gap: 0.6rem;
    -webkit-overflow-scrolling: touch;
  }
  .jg-rail__item {
    flex: 0 0 auto;
    min-width: 210px;
    grid-template-columns: auto minmax(0,1fr) auto;
  }
  .jg-rail__chevron { display: none; }

  .jg-panel.is-active { grid-template-columns: 1fr; }
  .jg-panel__aside, .jg-panel__media { flex-direction: row; align-items: center; padding: 1.25rem 1.5rem; }
  .jg-panel__code, .jg-panel__index { margin-top: 0; margin-left: auto; font-size: 1.8rem; }

  .jg-branches__stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .jg-directory__grid { grid-template-columns: 1fr; }
  .jg-panel__body { padding: 1.5rem 1.5rem 1.75rem; }
  .jg-branches__title { font-size: 1.85rem; }
}

html, body { overflow-x: hidden; }


















/* =============================================================
   17. OTHER BUSINESSES
   ============================================================= */
.other-businesses { padding-block: 6rem; background: var(--muted); }
.other-businesses__grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 48rem) { .other-businesses__grid { grid-template-columns: repeat(4, 1fr); } }
.business-tile { position: relative; overflow: hidden; border-radius: var(--radius-2xl); aspect-ratio: 1 / 1; box-shadow: var(--shadow-card); }
.business-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.business-tile:hover img { transform: scale(1.1); }
.business-tile__overlay { position: absolute; inset: 0; background: rgba(20,21,42,0.6); transition: background-color 0.2s ease; }
.business-tile:hover .business-tile__overlay { background: rgba(20,21,42,0.4); }
.business-tile__label { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding-inline: 1rem; color: #fff; font-weight: 700; font-size: 1.125rem; }
/* ===================== END OTHER BUSINESSES ===================== */


/* =============================================================
   18. CONTACT
   ============================================================= */
.contact { padding-block: 6rem; background: var(--brand-navy-deep); color: #fff; text-align: center; }
.contact .container { max-width: 56rem; }
.contact__title { font-size: 2.25rem; font-weight: 700; }
@media (min-width: 48rem) { .contact__title { font-size: 3rem; } }
.contact__text { margin-top: 1rem; font-size: 1.125rem; color: rgba(255,255,255,0.75); }
.contact__actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
/* ===================== END CONTACT ===================== */





/* ==========================================================================
   01. DESIGN TOKENS
   ========================================================================== */
   
   

   
.jg-footer, .jd-footer__band {
  --jg-red: #d81f26;
  --jg-red-soft: #f0454c;
  --jg-red-deep: #a3161c;
  --jg-gold: #d9a441;
  --jg-ink-900: #06090f;
  --jg-ink-800: #0a1018;
  --jg-ink-700: #101823;
  --jg-ink-600: #16202d;
  --jg-text: #ffffff;
  --jg-text-muted: rgba(255, 255, 255, 0.62);
  --jg-text-dim: rgba(255, 255, 255, 0.44);
  --jg-line: rgba(255, 255, 255, 0.09);
  --jg-line-strong: rgba(255, 255, 255, 0.16);
  --jg-glass: rgba(255, 255, 255, 0.045);
  --jg-glass-hi: rgba(255, 255, 255, 0.08);

  --jg-tracking: 0.14em;
  --jg-shell: 1280px;
  --jg-gutter: 40px;
  --jg-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ==========================================================================
   02. BASE / RESET
   ========================================================================== */
.jg-footer *, .jg-footer *::before, .jg-footer *::after,
.jd-footer__band *, .jd-footer__band *::before, .jd-footer__band *::after { 
    box-sizing: border-box;
        text-align: center;

    
}

.jg-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  font-family: var(--jg-font);
  color: var(--jg-text-muted);
  background-color: var(--jg-ink-900);
  -webkit-font-smoothing: antialiased;
}
.jg-footer p, .jg-footer ul, .jg-footer h2, .jg-footer h3 { 
    margin: 0; 
    padding: 0; 
}
.jg-footer ul { 
    list-style: none; 
    
}
.jg-footer a { color: inherit; text-decoration: none; }
.jg-footer img, .jg-footer svg { display: block; max-width: 100%; }
.jg-footer button, .jg-footer input { font: inherit; color: inherit; }

.jg-sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

.jg-shell { width: 100%; max-width: var(--jg-shell); margin-inline: auto; padding-inline: var(--jg-gutter); }

/* ==========================================================================
   03. DECORATIVE BACKGROUND
   ========================================================================== */
.jg-footer__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }

.jg-footer__glow {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35; will-change: transform;
}
.jg-footer__glow--one {
  width: 520px; height: 520px; top: -220px; left: -140px;
  background: radial-gradient(circle, rgba(216,31,38,0.72), transparent 68%);
  animation: jg-drift-a 22s var(--jg-ease) infinite alternate;
}
.jg-footer__glow--two {
  width: 620px; height: 620px; bottom: -320px; right: -180px;
  background: radial-gradient(circle, rgba(217,164,65,0.42), transparent 70%);
  animation: jg-drift-b 27s var(--jg-ease) infinite alternate;
}
.jg-footer__grid {
  position: absolute; inset: 0; opacity: 0.5;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px, 64px 64px;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 12%, transparent 78%);
          mask-image: radial-gradient(120% 100% at 50% 0%, #000 12%, transparent 78%);
}
.jg-footer__noise { position: absolute; inset: 0; background: radial-gradient(1100px 700px at 50% 120%, rgba(22,32,45,0.95), transparent 68%); }

@keyframes jg-drift-a { from { transform: translate(0,0); } to { transform: translate(40px,30px); } }
@keyframes jg-drift-b { from { transform: translate(0,0); } to { transform: translate(-30px,-20px); } }

/* ==========================================================================
   04. BAND 01 — LEAD (brand + newsletter)
   ========================================================================== */
.jg-footer__band--lead { position: relative; z-index: 1; padding-block: 92px 76px; }

.jg-lead { 
    display: ; 
    grid-template-columns: minmax(0,1.05fr) minmax(0,1fr); 
    gap: 72px; 
    align-items: start; }

.jg-lead__brand { display: flex; flex-direction: column; gap: 1.35rem; max-width: 34rem; }

.jg-brandmark { display: inline-flex; width: fit-content; }
.jg-brandmark__plate {
  display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.96) 0%, rgba(240,242,246,0.9) 100%);
  box-shadow: 0 18px 40px -22px rgba(0,0,0,0.85), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 0.45s var(--jg-ease), box-shadow 0.45s var(--jg-ease);
}
.jg-brandmark:hover .jg-brandmark__plate { transform: translateY(-4px); }
.jg-brandmark__plate img { height: 44px; width: auto; }

.jg-lead__eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--jg-gold);
}
.jg-lead__statement { font-size: 0.975rem; line-height: 1.85; color: var(--jg-text-muted); }
.jg-lead__statement strong { color: #fff; font-weight: 600; }

.jg-metrics { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1px; border: 1px solid var(--jg-line); border-radius: 1rem; overflow: hidden; background: var(--jg-line); }
.jg-metric { padding: 1.15rem 1.1rem; background: rgba(255,255,255,0.025); transition: background 0.35s ease; }
.jg-metric:hover { background: rgba(255,255,255,0.06); }
.jg-metric__value { display: block; font-size: 1.45rem; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.jg-metric__label { display: block; margin-top: 0.35rem; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--jg-text-dim); }

/* ---- Newsletter panel ---- */
.jg-newsletter {
  position: relative; border: 1px solid var(--jg-line); border-radius: 1.35rem; padding: 2.25rem; overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.015) 100%);
  box-shadow: 0 30px 70px -45px rgba(0,0,0,0.9);
}
.jg-newsletter::before {
  content: ""; 
  position: absolute; 
  text-align:center;
  inset: -40% -20% auto auto; 
  width: 18rem; height: 18rem; 
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,31,38,0.28) 0%, rgba(216,31,38,0) 70%); 
  pointer-events: none;
}
.jg-newsletter__kicker { 
    font-size: 0.68rem; 
    font-weight: 700; 
    letter-spacing: 0.2em; 
    text-transform: uppercase; 
    color: var(--jg-gold); 
    
}
.jg-newsletter__title { 
    margin: 0.5rem 0 0.6rem; 
    font-size: 1.15rem; 
    font-weight: 700; 
    color: #fff; 
        text-align: center;

    
}
.jg-newsletter__text { 
    font-size: 0.9rem; 
    line-height: 1.7; 
    color: var(--jg-text-muted); 
    max-width: 100%; }   
    text-align: center;
}

.jg-newsletter__form { 
    position: relative; 
    z-index: 1; 
    margin-top: 5rem; 
        text-align: center;
        justify-content:center;
    

}
.jg-field { 
    display: ; 
    margin-top:2rem;
    flex-wrap: wrap; 
    gap: 0.75rem;
       text-align: center;

    
}
.jg-field__input {
  flex: 1 1 15rem; min-width: 0; padding: 0.95rem 1.15rem; font: inherit; font-size: 0.9rem; color: #fff;
  background: rgba(255,255,255,0.05); border: 1px solid var(--jg-line); border-radius: 0.85rem; outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.jg-field__input::placeholder { color: var(--jg-text-dim); }
.jg-field__input:hover { border-color: rgba(255,255,255,0.22); }
.jg-field__input:focus { border-color: var(--jg-red); background: rgba(255,255,255,0.08); box-shadow: 0 0 0 3px rgba(216,31,38,0.22); }
.jg-field__input[aria-invalid="true"] { border-color: var(--jg-red-soft); box-shadow: 0 0 0 3px rgba(240,69,76,0.22); }

.jg-field__submit {
  flex: 0 0 auto; 
  display: inline-flex; 
  align-items: center; 
  gap: 0.55rem; 
  padding: 0.95rem 1.6rem;
  font: inherit; 
  font-size: 0.85rem; 
  font-weight: 700; 
  letter-spacing: 0.06em; 
  color: #fff;
  justify-content:center;
  background: linear-gradient(135deg, var(--jg-red) 0%, var(--jg-red-deep) 100%); border: 0; border-radius: 0.85rem;
  cursor: pointer; transition: transform 0.35s var(--jg-ease), box-shadow 0.35s ease;
  box-shadow: 0 14px 30px -14px rgba(216,31,38,0.85);
}
.jg-field__submit:hover { transform: translateY(-2px); }
.jg-field__submit:disabled { opacity: 0.6; cursor: default; transform: none; }
.jg-field__submit svg { width: 1.05rem; height: 1.05rem; }
.jg-field__submit:focus-visible, .jg-field__input:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

.jg-newsletter__status { min-height: 1.1rem; margin-top: 0.75rem; font-size: 0.78rem; color: var(--jg-text-muted); }
.jg-newsletter__status[data-state="success"] { color: #7ee3a4; }
.jg-newsletter__status[data-state="error"] { color: #ff8a92; }

.jg-newsletter__legal { margin-top: 0.9rem; font-size: 0.75rem; line-height: 1.6; color: var(--jg-text-dim); }
.jg-newsletter__legal a { color: rgba(255,255,255,0.75); border-bottom: 1px solid rgba(255,255,255,0.25); }
.jg-newsletter__legal a:hover { color: #fff; border-color: var(--jg-red); }

/* ==========================================================================
   05. BAND 02 — DIRECTORY (nav + contact)
   ========================================================================== */
.jg-footer__band--directory { position: relative; z-index: 1; padding-block: 76px; border-top: 1px solid var(--jg-line); }

.jg-directory { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(0,1fr); gap: 60px; }

.jg-directory__nav { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2.5rem; }
.jg-navgroup__title {
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.4rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #fff;
}
.jg-navgroup__index { color: var(--jg-gold); font-weight: 700; }
.jg-navlist { display: flex; flex-direction: column; gap: 0.2rem; }
.jg-navlink { display: inline-flex; padding: 0.4rem 0; font-size: 0.925rem; color: var(--jg-text-muted); transition: color 0.3s ease, transform 0.35s var(--jg-ease); }
.jg-navlink:hover, .jg-navlink:focus-visible { color: #fff; transform: translateX(4px); }

.jg-contact__title { display: block; margin-bottom: 1.4rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; }
.jg-contact__list { display: flex; flex-direction: column; gap: 1.35rem; }
.jg-contact__item { display: flex; align-items: flex-start; gap: 0.9rem; }
.jg-contact__icon {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem;
  border-radius: 0.85rem; color: var(--jg-gold); background: rgba(255,255,255,0.04); border: 1px solid var(--jg-line);
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s var(--jg-ease);
}
.jg-contact__icon svg { width: 1.05rem; height: 1.05rem; }
.jg-contact__item:hover .jg-contact__icon { background: var(--jg-red); border-color: var(--jg-red); color: #fff; transform: translateY(-3px); }
.jg-contact__body { display: flex; flex-direction: column; gap: 0.3rem; }
.jg-contact__label { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--jg-text-dim); }
.jg-contact__value { font-size: 0.925rem; line-height: 1.55; color: var(--jg-text-muted); font-style: normal; }
a.jg-contact__value:hover, a.jg-contact__value:focus-visible { color: #fff; }

.jg-contact__cta {
  display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 1.6rem; padding: 0.85rem 1.4rem;
  border-radius: 999px; border: 1px solid var(--jg-line-strong); color: #fff; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.04em; transition: background 0.3s ease, transform 0.35s var(--jg-ease);
}
.jg-contact__cta:hover { background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.jg-contact__cta svg { width: 1rem; height: 1rem; }

/* ==========================================================================
   06. BAND 03 — SOCIAL + BACK TO TOP
   ========================================================================== */
.jd-footer__band--social {
  position: relative; z-index: 1; padding: 2.25rem 0; border-top: 1px solid var(--jg-line);
  background: var(--jg-ink-900); font-family: var(--jg-font);
}
.jd-footer__shell { width: 100%; max-width: var(--jg-shell); margin-inline: auto; padding-inline: var(--jg-gutter); }
.jd-social { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem 2rem; }
.jd-social__intro { display: flex; flex-direction: column; gap: 0.35rem; max-width: 28rem; }
.jd-social__eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--jg-gold); }
.jd-social__text { margin: 0; font-size: 0.85rem; color: var(--jg-text-muted); }

.jd-social__list { display: flex; align-items: center; gap: 0.65rem; margin: 0; padding: 0; list-style: none; }
.jd-social__item { display: flex; }
.jd-social__link {
  position: relative; display: grid; place-items: center; width: 2.85rem; height: 2.85rem; border-radius: 50%;
  color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden; text-decoration: none; transition: color 0.35s ease, border-color 0.35s ease, transform 0.45s var(--jg-ease), box-shadow 0.45s ease;
}
.jd-social__link::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: linear-gradient(135deg, var(--jg-red), var(--jg-red-deep)); transform: scale(0); opacity: 0;
  transition: transform 0.45s var(--jg-ease), opacity 0.35s ease; z-index: 0;
}
.jd-social__link:hover, .jd-social__link:focus-visible { color: #fff; border-color: rgba(255,255,255,0.28); transform: translateY(-4px); box-shadow: 0 16px 30px -14px rgba(198,32,42,0.8); }
.jd-social__link:hover::before, .jd-social__link:focus-visible::before { transform: scale(1); opacity: 1; }
.jd-social__icon { position: relative; z-index: 1; display: inline-flex; }
.jd-social__name { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.jd-social__link:focus-visible { outline: 2px solid rgba(255,255,255,0.85); outline-offset: 3px; }

.jd-totop {
  display: inline-flex; align-items: center; gap: 0.7rem; padding: 0.6rem 1.3rem 0.6rem 0.6rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.82);
  font-family: inherit; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, transform 0.4s var(--jg-ease);
}
.jd-totop__icon { display: grid; place-items: center; width: 2.1rem; height: 2.1rem; border-radius: 50%; background: linear-gradient(135deg, var(--jg-red), var(--jg-red-deep)); color: #fff; }
.jd-totop__icon svg { width: 1rem; height: 1rem; }
.jd-totop:hover, .jd-totop:focus-visible { color: #fff; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.jd-totop:focus-visible { outline: 2px solid rgba(255,255,255,0.85); outline-offset: 3px; }

/* ==========================================================================
   07. BAND 04 — LEGAL
   ========================================================================== */
.jd-footer__band--legal {
  position: relative; z-index: 1; padding: 1.4rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.24); font-family: var(--jg-font);
}
.jd-legal { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.9rem 2rem; }
.jd-legal__copy { margin: 0; font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.jd-legal__name { font-weight: 600; color: rgba(255,255,255,0.8); margin: 0 0.25em; }
.jd-legal__list { display: flex; flex-wrap: wrap; gap: 0; margin: 0; padding: 0; list-style: none; }
.jd-legal__item + .jd-legal__item::before { content: ""; display: inline-block; width: 1px; height: 12px; margin: 0 0.75rem; background: rgba(255,255,255,0.16); vertical-align: middle; }
.jd-legal__link { color: rgba(255,255,255,0.58); font-size: 0.78rem; transition: color 0.3s ease; }
.jd-legal__link:hover, .jd-legal__link:focus-visible { color: #fff; }
.jd-legal__origin { display: flex; align-items: center; gap: 0.5rem; margin: 0; font-size: 0.72rem; letter-spacing: 0.05em; color: rgba(255,255,255,0.38); text-transform: uppercase; }

/* ==========================================================================
   08. REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .jg-footer *, .jg-footer *::before, .jg-footer *::after,
  .jd-footer__band *, .jd-footer__band *::before, .jd-footer__band *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important; scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   09. RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
  .jg-lead { grid-template-columns: 1fr; gap: 2.5rem; }
  .jg-directory { grid-template-columns: 1fr; gap: 2.5rem; }
  .jg-directory__nav { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .jg-footer__band--lead, .jg-footer__band--directory { padding-block: 3rem; }
  .jg-directory__nav { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 2rem 1.5rem; }
  .jg-metrics { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .jg-field { flex-direction: column;
  justify-content:center;}
  .jg-field__submit { justify-content: center; }
  .jd-social { flex-direction: column; align-items: flex-start; }
  .jd-legal { flex-direction: column; align-items: flex-start; }
}
















/* =============================================================
   19. FOOTER
   ============================================================= */
.site-footer { background: #0b0c17; color: rgba(255,255,255,0.7); padding-block: 3rem; }
.site-footer__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 48rem) { .site-footer__grid { grid-template-columns: repeat(4, 1fr); } }
.site-footer__brand { grid-column: span 1; }
@media (min-width: 48rem) { .site-footer__brand { grid-column: span 2; } }
.site-footer__logo { height: 4rem; width: auto; background: #fff; border-radius: var(--radius-lg); padding: 0.5rem; }
.site-footer__tagline { margin-top: 1rem; font-size: 0.875rem; max-width: 28rem; }
.site-footer__heading { color: #fff; font-weight: 600; margin-bottom: 0.75rem; }
.site-footer__links { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.site-footer__links a:hover, .site-footer__contact a:hover { color: var(--brand-red); }
.site-footer__contact { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.site-footer__bottom {
  max-width: var(--container-max);
  margin: 2.5rem auto 0;
  padding: 1.5rem var(--gutter) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem;
  font-size: 0.75rem;
}
.site-footer__social { display: flex; gap: 0.75rem; }
.site-footer__social a:hover { color: var(--brand-red); }
/* ===================== END FOOTER ===================== */