/* File Count Co — Production Stylesheet */
:root {
  --navy: #0B1F3A;
  --navy-600: #091932;
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark: #9A7B2E;
  --surface: #F8FAFC;
  --ink: #0F172A;
  --white: #ffffff;
  --ease-premium: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html[dir='rtl'] body { font-family: 'IBM Plex Sans Arabic', Cairo, system-ui, sans-serif; }
html[dir='ltr'] body { font-family: Inter, 'IBM Plex Sans', system-ui, sans-serif; }
body { background: var(--white); color: var(--ink); -webkit-font-smoothing: antialiased; line-height: 1.6; }
::selection { background: rgba(201,168,76,.3); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

.container-wide { width: 100%; max-width: 80rem; margin-inline: auto; }
.brand-logo { height: 4.15rem; }
.brand-logo-mobile { height: 3.3rem; }
.brand-logo-footer { height: 4.1rem; }
@media (min-width: 640px) {
  .brand-logo { height: 4.9rem; }
  .brand-logo-mobile { height: 3.6rem; }
  .brand-logo-footer { height: 4.5rem; }
}
.section-padding { padding: 5rem 1rem; }
@media (min-width: 640px) { .section-padding { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .section-padding { padding: 7rem 2rem; } }
.section-padding { position: relative; }
.section-padding::after {
  content: "";
  position: absolute;
  inset-inline: max(1rem, calc((100% - 80rem) / 2 + 1rem));
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(11,31,58,0), rgba(11,31,58,.1) 20%, rgba(201,168,76,.28) 50%, rgba(11,31,58,.1) 80%, rgba(11,31,58,0));
  opacity: .42;
}
#hero.section-padding::after,
#cta.section-padding::after,
#stats.section-padding::after { opacity: .35; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.shrink-0 { flex-shrink: 0; }
.gap-1 { gap: .25rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.order-1 { order: 1; }
.order-2 { order: 2; }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .sm\:inline-flex { display: inline-flex; }
  .sm\:block { display: block; }
  .sm\:px-6 { padding-inline: 1.5rem; }
  .sm\:px-16 { padding-inline: 4rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:h-12 { height: 3rem; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:col-span-1 { grid-column: span 1; }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
  .lg\:px-8 { padding-inline: 2rem; }
  .lg\:py-24 { padding-block: 6rem; }
  .lg\:py-28 { padding-block: 7rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:p-10 { padding: 2.5rem; }
  .lg\:pt-0 { padding-top: 0; }
}

.p-2 { padding: .5rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-inline: .75rem; }
.px-4 { padding-inline: 1rem; }
.px-6 { padding-inline: 1.5rem; }
.px-8 { padding-inline: 2rem; }
.py-1\.5 { padding-block: .375rem; }
.py-2 { padding-block: .5rem; }
.py-3 { padding-block: .75rem; }
.py-4 { padding-block: 1rem; }
.py-6 { padding-block: 1.5rem; }
.py-12 { padding-block: 3rem; }
.py-16 { padding-block: 4rem; }
.pt-1 { padding-top: .25rem; }
.pt-8 { padding-top: 2rem; }
.pt-24 { padding-top: 6rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-0 { padding-bottom: 0; }
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mx-auto { margin-inline: auto; }

.h-2 { height: .5rem; }
.h-3 { height: .75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-20 { height: 5rem; }
.h-auto { height: auto; }
.h-full { height: 100%; }
.w-2 { width: .5rem; }
.w-3 { width: .75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-20 { width: 5rem; }
.w-32 { width: 8rem; }
.w-auto { width: auto; }
.w-full { width: 100%; }
.w-0 { width: 0; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.min-h-screen { min-height: 100vh; }
.min-h-\[calc\(100vh-6rem\)\] { min-height: calc(100vh - 6rem); }

.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { inset: 0; }
.inset-x-0 { left: 0; right: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.start-5 { inset-inline-start: 1.25rem; }
.-bottom-8 { bottom: -2rem; }
.-end-8 { inset-inline-end: -2rem; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-tight { letter-spacing: -.025em; }
.tracking-wider { letter-spacing: .05em; }
.tracking-\[0\.3em\] { letter-spacing: .3em; }
.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.text-balance { text-wrap: balance; }

.bg-white { background-color: var(--white); }
.bg-surface { background-color: var(--surface); }
.bg-navy { background-color: var(--navy); }
.text-white { color: var(--white); }
.text-ink { color: var(--ink); }
.text-navy { color: var(--navy); }
.text-gold { color: var(--gold); }
.text-gold-dark { color: var(--gold-dark); }
.text-gold-light { color: var(--gold-light); }
.text-ink\/60 { color: rgba(15,23,42,.6); }
.text-ink\/40 { color: rgba(15,23,42,.4); }
.text-ink\/70 { color: rgba(15,23,42,.7); }
.text-white\/70 { color: rgba(255,255,255,.7); }

.border { border: 1px solid rgba(11,31,58,.1); }
.border-2 { border: 2px solid rgba(11,31,58,.2); }
.border-t { border-top: 1px solid rgba(11,31,58,.05); }
.border-b { border-bottom: 1px solid rgba(11,31,58,.05); }

.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,.1); }

.overflow-hidden { overflow: hidden; }
.pointer-events-none { pointer-events: none; }
.opacity-0 { opacity: 0; }
.opacity-30 { opacity: .3; }
.opacity-100 { opacity: 1; }
.translate-y-0 { transform: translateY(0); }
.translate-y-6 { transform: translateY(1.5rem); }
.translate-y-8 { transform: translateY(2rem); }
.-translate-y-1 { transform: translateY(-.25rem); }
.blur-2xl { filter: blur(40px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.antialiased { -webkit-font-smoothing: antialiased; }
.gpu { transform: translateZ(0); will-change: transform; }
.inline-block { display: inline-block; }

.transition-all { transition: all .3s ease; }
.transition-colors { transition: color .3s, background-color .3s, border-color .3s; }
.transition-transform { transition: transform .3s ease; }
.transition-opacity { transition: opacity .5s ease; }
.duration-300 { transition-duration: .3s; }
.duration-500 { transition-duration: .5s; }
.duration-700 { transition-duration: .7s; }

.bg-gradient-to-b { background-image: linear-gradient(to bottom, rgba(248,250,252,.8), #fff, #fff); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--navy), var(--navy-600), var(--navy)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--gold), var(--gold-dark)); }
.from-navy { background-color: var(--navy); }
.to-navy-600 { background-color: var(--navy-600); }

.section-title { font-size: 1.875rem; font-weight: 700; letter-spacing: -.025em; color: var(--ink); }
@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }
.section-subtitle { margin-top: 1rem; max-width: 42rem; font-size: 1.125rem; color: rgba(15,23,42,.6); line-height: 1.75; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .85rem;
  padding-inline: .75rem;
  padding-block: .3rem;
  border-radius: 9999px;
  border: 1px solid rgba(11,31,58,.12);
  background: rgba(255,255,255,.85);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .25s ease;
}
.section-kicker::before {
  content: "";
  width: .45rem;
  height: .45rem;
  border-radius: 9999px;
  background: var(--gold);
}
.section-kicker--inverse {
  border-color: rgba(232,213,163,.35);
  background: rgba(255,255,255,.08);
  color: var(--gold-light);
}
.section-kicker:hover {
  border-color: rgba(201,168,76,.45);
  transform: translateY(-1px);
}

.reveal-on-scroll {
  transition-timing-function: var(--ease-premium);
  will-change: transform, opacity;
}

.btn-primary, .btn-secondary, .btn-gold {
  position: relative;
  overflow: hidden;
}
.btn-primary::before,
.btn-secondary::before,
.btn-gold::before {
  content: "";
  position: absolute;
  inset-inline-end: .5rem;
  top: .45rem;
  width: .65rem;
  height: .65rem;
  border-top: 1.5px solid rgba(201,168,76,.9);
  border-inline-end: 1.5px solid rgba(201,168,76,.9);
  border-radius: 0 .15rem 0 0;
  opacity: .75;
  transition: transform .25s ease, opacity .25s ease;
}
.btn-primary::after,
.btn-secondary::after,
.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.22) 45%, transparent 100%);
  transform: translateX(-140%);
  transition: transform .45s ease;
}
.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-gold:hover::before {
  transform: translate(-1px, 1px);
  opacity: 1;
}
.btn-primary:hover::after,
.btn-secondary:hover::after,
.btn-gold:hover::after {
  transform: translateX(120%);
}

.btn-primary { display: inline-flex; align-items: center; justify-content: center; border-radius: .5rem; background: var(--navy); padding: .75rem 1.5rem; font-size: .875rem; font-weight: 600; color: var(--white); transition: all .28s var(--ease-premium); }
.btn-primary:hover { background: var(--navy-600); box-shadow: 0 14px 26px -10px rgba(11,31,58,.45); transform: translateY(-1px); }
.btn-primary:active { transform: scale(.98); }

.btn-secondary { display: inline-flex; align-items: center; justify-content: center; border-radius: .5rem; border: 2px solid rgba(11,31,58,.2); background: var(--white); padding: .75rem 1.5rem; font-size: .875rem; font-weight: 600; color: var(--navy); transition: all .28s var(--ease-premium); }
.btn-secondary:hover { border-color: var(--gold); background: var(--surface); box-shadow: 0 8px 20px -12px rgba(11,31,58,.35); transform: translateY(-1px); }
.btn-secondary:active { transform: scale(.98); }

.btn-gold { display: inline-flex; align-items: center; justify-content: center; border-radius: .5rem; background: linear-gradient(to right, var(--gold), var(--gold-dark)); padding: 1rem 2rem; font-size: 1rem; font-weight: 700; color: var(--navy); transition: all .28s var(--ease-premium); }
.btn-gold:hover { box-shadow: 0 15px 30px -14px rgba(201,168,76,.7); transform: translateY(-1px); }
.btn-gold:active { transform: scale(.98); }

.card-premium { border-radius: 1rem; border: 1px solid rgba(11,31,58,.05); background: var(--white); padding: 1.65rem; box-shadow: 0 1px 2px rgba(0,0,0,.05); transition: all .28s var(--ease-premium); position: relative; }
.card-premium::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-inline-end: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.7), transparent);
  opacity: 0;
  transition: opacity .25s ease;
}
.card-premium:hover { transform: translateY(-5px); border-color: rgba(201,168,76,.3); box-shadow: 0 24px 30px -14px rgba(11,31,58,.16); }
.card-premium:hover::before { opacity: 1; }

.fc-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='96' height='96' viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%230B1F3A' stroke-opacity='0.08' stroke-width='1.2' stroke-linecap='round'%3E%3Cpath d='M20 16V52M20 16H44M20 34H38M44 16H52M52 16V52M20 52H52'/%3E%3C/g%3E%3Cg fill='%23C9A84C' fill-opacity='0.18'%3E%3Ccircle cx='20' cy='16' r='2'/%3E%3Ccircle cx='20' cy='34' r='2'/%3E%3Ccircle cx='20' cy='52' r='2'/%3E%3Ccircle cx='44' cy='16' r='2'/%3E%3Ccircle cx='52' cy='16' r='2'/%3E%3Ccircle cx='52' cy='52' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.header-scrolled { border-bottom: 1px solid rgba(11,31,58,.05); background: rgba(255,255,255,.8); backdrop-filter: blur(12px); box-shadow: 0 8px 24px -20px rgba(11,31,58,.55); }

#scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 9997; background: linear-gradient(to right, var(--gold), var(--gold-dark)); transition: width 75ms ease-out; }

#preloader { position: fixed; inset: 0; z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--white); transition: opacity .5s ease; }
#preloader.hidden { opacity: 0; pointer-events: none; }

.preloader-logo {
  width: min(360px, 80vw);
  height: auto;
  opacity: 0;
  animation: preloaderLogoIn .5s ease .15s forwards;
}
.preloader-text { opacity: 0; animation: textReveal .3s ease .85s forwards; }

@keyframes preloaderLogoIn {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes textReveal { to { opacity: 1; } }

.custom-cursor { position: fixed; z-index: 9998; pointer-events: none; mix-blend-mode: difference; display: none; }
@media (min-width: 1024px) { .custom-cursor:not(.hidden) { display: block; } }
.cursor-dot { width: .75rem; height: .75rem; border-radius: 9999px; border: 1px solid var(--white); background: transparent; transition: transform .2s ease-out; }
.cursor-dot.hover-btn { transform: scale(2.5); background: rgba(255,255,255,.2); }
.cursor-dot.hover-card { transform: scale(1.8); }

.animate-float { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-node { animation: heroNodePulse 3s ease-in-out infinite; }
@keyframes heroNodePulse { 0%, 100% { opacity: .6; } 50% { opacity: 1; } }
.hero-data-flow { stroke-dasharray: 8 12; animation: dataFlow 2s linear infinite; }
@keyframes dataFlow { to { stroke-dashoffset: -40; } }
.animate-pulse-soft { animation: pulseSoft 3s ease-in-out infinite; }
@keyframes pulseSoft { 0%, 100% { opacity: .4; } 50% { opacity: .8; } }
.hero-fc-core path,
.hero-fc-core circle {
  filter: drop-shadow(0 4px 16px rgba(201,168,76,.22));
}
.hero-fc-node {
  animation: heroNodePulse 2.6s ease-in-out infinite;
}
.hero-fc-link {
  stroke-dasharray: 4 8;
  animation: fcLinkFlow 2.6s linear infinite;
}
@keyframes fcLinkFlow {
  to { stroke-dashoffset: -24; }
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.hero-proof li {
  border: 1px solid rgba(11,31,58,.1);
  background: rgba(255,255,255,.8);
  color: rgba(15,23,42,.72);
  border-radius: 9999px;
  padding: .4rem .8rem;
  font-size: .75rem;
  font-weight: 600;
  transition: all .25s ease;
}
.hero-proof li:hover {
  border-color: rgba(201,168,76,.5);
  color: var(--navy);
  background: rgba(255,255,255,.95);
}

.fc-icon-shell {
  position: relative;
  overflow: hidden;
}
.fc-icon-shell::before {
  content: "";
  position: absolute;
  inset-inline-end: .18rem;
  top: .18rem;
  width: .5rem;
  height: .5rem;
  border-top: 1.5px solid rgba(201,168,76,.8);
  border-inline-end: 1.5px solid rgba(201,168,76,.8);
  border-radius: 0 .12rem 0 0;
  opacity: .85;
}
.fc-icon-shell::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 70% 20%, rgba(201,168,76,.16), transparent 50%);
  opacity: .7;
  transition: opacity .25s ease;
}
.card-premium:hover .fc-icon-shell::after {
  opacity: 1;
}
.fc-icon-shell--solid::before {
  border-top-color: rgba(232,213,163,.9);
  border-inline-end-color: rgba(232,213,163,.9);
}

.hero-capability {
  transition: transform .26s var(--ease-premium), filter .26s var(--ease-premium);
}
.hero-capability:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 8px 18px rgba(11,31,58,.16));
}

.journey-shell {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: .25rem 0 0;
}
.journey-horizontal {
  --timeline-progress: 0%;
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 2rem;
  position: relative;
}
.timeline-line {
  position: absolute;
  inset-inline: 1.1rem;
  top: 1.1rem;
  height: 2px;
  background: rgba(11,31,58,.12);
}
.timeline-line::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  height: 100%;
  width: var(--timeline-progress, 0%);
  background: linear-gradient(to right, var(--gold), var(--gold-dark));
  transition: width .6s ease;
}
.timeline-card {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity .68s var(--ease-premium), transform .68s var(--ease-premium);
}
.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.timeline-node-wrap {
  height: 2.6rem;
  display: flex;
  align-items: center;
}
.timeline-node {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px rgba(11,31,58,.12), 0 8px 18px -12px rgba(11,31,58,.45);
  font-weight: 700;
  font-size: .8rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.timeline-card:hover .timeline-node {
  transform: scale(1.06);
  box-shadow: 0 0 0 3px rgba(201,168,76,.22);
}
.timeline-content {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: .4rem 0 0;
  min-height: auto;
  transition: transform .25s var(--ease-premium);
}
.timeline-card:hover .timeline-content {
  transform: translateY(-2px);
}
.timeline-content h3 {
  margin-bottom: .25rem;
}
.timeline-content p {
  font-size: .84rem;
  line-height: 1.6;
}
@media (max-width: 1023px) {
  .journey-horizontal {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .timeline-line {
    inset-inline-start: 1.1rem;
    inset-inline-end: auto;
    top: 1rem;
    width: 2px;
    height: calc(100% - 2rem);
  }
  .timeline-line::after {
    width: 100%;
    height: var(--timeline-progress, 0%);
    background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
  }
}

.stat-value { font-size: 2.25rem; font-weight: 700; color: var(--gold); font-variant-numeric: tabular-nums; }
@media (min-width: 640px) { .stat-value { font-size: 3rem; } }
@media (min-width: 1024px) { .stat-value { font-size: 3.75rem; } }

html[dir='rtl'] .rtl\:rotate-180 { transform: rotate(180deg); }
body.overflow-hidden { overflow: hidden; }
.last\:pb-0:last-child { padding-bottom: 0; }
.\!py-12 { padding-block: 3rem !important; }

.group { position: relative; }
.group:hover { transform: translateY(-5px); }

footer .flex.h-10:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); box-shadow: 0 10px 20px -15px rgba(11,31,58,.45); }
.cta-shell { box-shadow: 0 18px 44px rgba(11,31,58,.18); }
.cta-shell::after {
  content: "";
  position: absolute;
  inset-inline-end: 1.1rem;
  top: 1rem;
  width: 1rem;
  height: 1rem;
  border-top: 1.5px solid rgba(232,213,163,.85);
  border-inline-end: 1.5px solid rgba(232,213,163,.85);
  opacity: .8;
}

/* Missing utility-compatible colors used by HTML/JS */
.bg-navy\/5 { background-color: rgba(11,31,58,.05); }
.bg-gold\/10 { background-color: rgba(201,168,76,.1); }
.bg-gold\/20 { background-color: rgba(201,168,76,.2); }
.border-navy\/5 { border-color: rgba(11,31,58,.05); }
.border-navy\/10 { border-color: rgba(11,31,58,.1); }
.border-navy\/20 { border-color: rgba(11,31,58,.2); }
.hover\:text-gold:hover { color: var(--gold); }
.hover\:text-gold-light:hover { color: var(--gold-light); }
.hover\:text-navy:hover { color: var(--navy); }
.hover\:border-gold:hover { border-color: var(--gold); }
.hover\:bg-surface:hover { background: var(--surface); }
.space-y-3 > * + * { margin-top: .75rem; }
.group-hover\:bg-gold\/10:hover { background-color: rgba(201,168,76,.1); }
.group-hover\:text-gold:hover { color: var(--gold); }

.footer-premium {
  padding-top: 4.2rem !important;
  padding-bottom: 3.25rem !important;
}
.footer-premium .container-wide > .grid {
  align-items: start;
}
.footer-premium p,
.footer-premium a {
  line-height: 1.7;
}
.social-links {
  align-items: center;
}
.social-link {
  transition: transform .25s var(--ease-premium), box-shadow .25s var(--ease-premium), color .25s var(--ease-premium), border-color .25s var(--ease-premium);
}
.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -15px rgba(11,31,58,.45);
}

/* Hero RTL/LTR layout: headline right, illustration left (RTL-first) */
html[dir='rtl'] .hero-content { order: 1; }
html[dir='rtl'] .hero-illus { order: 2; }
html[dir='ltr'] .hero-content { order: 2; }
html[dir='ltr'] .hero-illus { order: 1; }

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