/* ══════════════════════════════════════════
   Abroad Gurdian · 2026
   Design System inspired by Apple/Samsung
   ══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --color-bg: #050505;
  --color-text: #fafafa;
  --color-brand: #F5C518;
  --color-brand-light: #FFDC6B;
  --color-brand-dark: #D4900C;
  --color-accent: #F5C518;
  --color-accent-hover: #FFD447;
  --color-gold-gradient: linear-gradient(135deg, #F5C518 0%, #D4900C 100%);
  --color-gold-gradient-h: linear-gradient(135deg, #FFE066 0%, #F5C518 100%);
  --color-white: #ffffff;
  --color-black: #000000;
  --color-card-bg: #0f0f12;
  --color-surface: #111114;
  --color-border: rgba(255, 255, 255, 0.07);
  --color-border-active: rgba(245, 197, 24, 0.45);
  --color-glass: rgba(255, 255, 255, 0.03);
  --color-glass-border: rgba(255, 255, 255, 0.08);
  --color-gold-glass: rgba(245, 197, 24, 0.08);
  --color-gold-glow: rgba(245, 197, 24, 0.25);
  --ease-apple: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-expo: cubic-bezier(1, 0, 0, 1);
  --radius-card: 24px;
  --radius-pill: 100px;
  --nav-height: 80px;
  --gold-shadow: 0 8px 32px rgba(245, 197, 24, 0.3);
}

/* ── Global Interactive Feedback ── */
.btn-primary,
.btn-secondary,
.btn-submit,
.nav-link,
.mobile-nav-link,
.nav-hamburger,
.whatsapp-float,
button {
  transition: transform 0.2s var(--ease-apple), opacity 0.2s var(--ease-apple), background 0.3s ease, border 0.3s ease;
}

.btn-primary:active,
.btn-secondary:active,
.btn-submit:active,
.nav-hamburger:active,
.whatsapp-float:active,
button:active {
  transform: scale(0.96) !important;
}

.nav-link:active,
.mobile-nav-link:active {
  transform: scale(0.98);
  opacity: 0.7;
}

/* ── Reset & Global ── */
html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

input,
select,
button,
textarea {
  font-family: inherit;
}

/* ── WIM Stats ── */
.wim-stats-container {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.wim-stat-card {
  transition: all 0.4s var(--ease-apple);
  cursor: default;
}

.wim-stat-icon {
  font-size: 1.5rem;
  color: var(--color-brand);
  margin-bottom: 0.5rem;
  transition: all 0.4s var(--ease-apple);
}

.wim-stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--color-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  transition: all 0.4s var(--ease-apple);
}

.wim-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

/* Glow Effect for Mission Stats */
.wim-stat-card:hover .wim-stat-num,
.wim-stat-card--active .wim-stat-num {
  text-shadow: 0 0 25px rgba(245, 197, 24, 0.5);
  transform: scale(1.05);
}

.wim-stat-card:hover .wim-stat-icon,
.wim-stat-card--active .wim-stat-icon {
  color: #fff;
  filter: drop-shadow(0 0 12px rgba(245, 197, 24, 0.7));
  transform: translateY(-3px);
}

/* ── WIM Badge Upgraded ── */
/* ── Preloader ── */
.preloader {
  position: fixed;
  inset: 0;
  background: #09090b;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-apple), visibility 0.8s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
  width: 100%;
  max-width: 400px;
  padding: 2rem;
}

.preloader-logo {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
}

.preloader-logo img {
  height: 100px;
  width: auto;
  filter: drop-shadow(0 0 24px rgba(245, 197, 24, 0.5));
  opacity: 0;
  transform: scale(0.9);
  animation: logo-reveal 1.2s var(--ease-apple) forwards;
}

.preloader-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  position: relative;
  opacity: 0;
  animation: bar-reveal 1s var(--ease-apple) forwards 0.3s;
}

.preloader-progress {
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--color-brand), transparent);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.preloader-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  opacity: 0;
  transform: translateY(10px);
  animation: tagline-reveal 1s var(--ease-apple) forwards 0.6s;
}

@keyframes logo-reveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bar-reveal {
  to {
    opacity: 1;
  }
}

@keyframes tagline-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── UI Entrance Transitions ── */
.nav,
.hero-left-col,
.hero-right-col {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s var(--ease-apple), transform 1.2s var(--ease-apple);
}

.main-content.visible .nav {
  opacity: 1;
  transform: translateY(0);
}

.main-content.visible .hero-left-col {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.main-content.visible .hero-right-col {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* ── Navigation Redesign (Floating Pill Style) ── */
.nav {
  position: fixed;
  top: 20px;
  /* Floating from top */
  left: 0;
  right: 0;
  height: auto;
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: all 0.5s var(--ease-apple);
  pointer-events: none;
  /* Let clicks pass through to empty space */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  pointer-events: auto;
  /* Re-enable for content */
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: transform 0.4s var(--ease-apple);
}

.nav-logo img {
  height: 72px;
  transition: height 0.4s var(--ease-apple);
}

.nav-menu-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(9, 9, 11, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 0.15rem 0.15rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.5s var(--ease-apple);
}

.nav-menu {
  padding-inline-start: 0px !important;
  margin: 6px !important;
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.35rem 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 100px;
  transition: all 0.3s ease;
  display: block;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
  color: #000;
  background: var(--color-brand);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-actions .btn-primary {
  /* padding: 0.4rem 1.15rem; */
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

.nav-hamburger {
  display: none;
  /* Hidden on desktop */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  background: rgba(9, 9, 11, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  gap: 5px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s var(--ease-apple);
  pointer-events: auto;
}

.nav-hamburger:hover {
  border-color: var(--color-brand);
  transform: scale(1.05);
}

/* Hide the main bar background entirely even when scrolled */
.nav.scrolled {
  background: transparent;
  border-bottom: none;
  height: auto;
  top: 16px;
}

/* Compact scroll states */
.nav.scrolled .nav-logo img {
  height: 34px;
}

@media (max-width: 1100px) {
  .nav {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
    top: 24px !important;
    padding: 0;
    opacity: 1 !important;
    pointer-events: auto;
    z-index: 9999;
  }

  .nav:not(.hidden) {
    transform: translateY(0) !important;
  }

  .nav-hamburger {
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
  }

  .nav-container {
    padding: 0 2rem;
  }

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

  .nav-menu-wrapper,
  .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

.nav.hidden {
  /* Translate enough to clear both its own height AND the top offset (20-24px) */
  transform: translateY(calc(-100% - 32px)) !important;
  pointer-events: none !important;
}

#menu-particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.mobile-menu ul {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-video {
    object-position: center;
    /* Ensure mobile video centers well */
  }
}

/* ── Floating WhatsApp Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--color-brand);
  color: #000;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(245, 197, 24, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.4s var(--ease-apple);
  animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  background: #fff;
  box-shadow: 0 15px 35px rgba(245, 197, 24, 0.5);
  color: #25d366;
  /* WhatsApp Green on hover */
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(245, 197, 24, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(245, 197, 24, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 4px;
  transition: transform 0.4s var(--ease-apple), opacity 0.3s var(--ease-apple);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Performance Optimizations ── */
@media (max-width: 1024px) {

  .section-legacy,
  .section-cta,
  .page-header {
    background-attachment: scroll !important;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  clip-path: circle(0% at top right);
  transition: opacity 0.4s var(--ease-apple), visibility 0.4s, clip-path 0.6s var(--ease-apple);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  clip-path: circle(150% at top right);
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  padding: 0;
}

.mobile-menu li {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-apple), transform 0.5s var(--ease-apple);
}

.mobile-menu.open li {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for menu items */
.mobile-menu.open li:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu.open li:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu.open li:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu.open li:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-menu.open li:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-menu.open li:nth-child(6) {
  transition-delay: 0.35s;
}

.mobile-menu.open li:nth-child(7) {
  transition-delay: 0.4s;
}

.mobile-menu.open li:nth-child(8) {
  transition-delay: 0.45s;
}

.mobile-nav-link {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: -0.04em;
  transition: all 0.3s var(--ease-apple);
  display: block;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: var(--color-brand);
  transform: scale(1.05);
}

.mobile-cta {
  display: inline-block;
  margin-top: 2rem;
  font-size: 1.1rem !important;
  padding: 1.2rem 2.5rem !important;
}

/* ── Buttons ── */
.btn-primary {
  background: var(--color-gold-gradient);
  color: #000;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-apple);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}

.btn-primary:hover {
  transform: scale(1.05) translateY(-2px);
  background: var(--color-gold-gradient-h);
  box-shadow: var(--gold-shadow);
}

.btn-primary.is-dark {
  background: #000;
  color: #fff;
  border: 2px solid #000;
}

.btn-primary.is-dark:hover {
  background: transparent;
  color: #000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--color-brand);
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1.5px solid var(--color-brand);
  transition: all 0.3s var(--ease-apple);
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--color-gold-gradient);
  border-color: transparent;
  color: #000;
  transform: translateY(-2px);
  box-shadow: var(--gold-shadow);
}

.btn-secondary.is-dark {
  border-color: #000;
  color: #000;
}

.btn-secondary.is-dark:hover {
  background: #000;
  color: #fff;
}

/* ── Tags ── */
.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-brand);
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.3);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.tag.is-dark {
  color: rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.25);
}

.tag.is-light {
  color: var(--color-brand);
  border-color: rgba(255, 204, 0, 0.4);
}

/* ── Container ── */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4rem;
}

.section {
  padding: 9rem 0;
  position: relative;
  z-index: 10;
}

.section-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  color: var(--color-brand);
}

.section-title em {
  font-style: italic;
  color: #fff;
}

.section-rounded-top {
  border-radius: 40px 40px 0 0;
  margin-top: 0;
  /* Removed negative margin to prevent overlap */
  box-shadow: 0 -60px 120px rgba(0, 0, 0, 1);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 5;
}

/* ── Hero ── */
.section-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 4rem 5rem;
  /* Lowered spacing to clear faces */
  color: #fff;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Fallback background when video fails to load (slow connection / old device) */
.hero-bg.video-failed {
  background: linear-gradient(135deg,
      #1a0a00 0%,
      #2d1200 20%,
      #0f0f0f 50%,
      #1a0500 80%,
      #000000 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Balanced gradient: subtle darkening on the left for contrast, but keeping figures visible */
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 30%, transparent 60%),
    linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.hero-wrapper {
  position: relative;
  z-index: 2;
}

.hero-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  max-width: 480px;
  /* Tighter width to clear the doctor face */
  gap: 0;
}

.hero-eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-brand);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

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

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero-sub {
  display: block;
  font-size: 0.4em;
  font-weight: 500;
  color: var(--color-brand);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.hero-heading {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  /* More minimal and premium */
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0.5rem 0;
  text-transform: uppercase;
}

.hero-heading .hero-sub-inline {
  font-size: 0.4em;
  font-weight: 500;
  color: var(--color-brand);
  letter-spacing: 0.05em;
  vertical-align: middle;
  text-transform: none;
  /* Keep the 'oF' as requested */
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 340px;
  opacity: 0.75;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat .stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-brand);
}

.hero-stat .stat-suffix {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-brand);
  display: inline;
}

.hero-stat .stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.35rem;
}

.hero-stat-divider {
  width: 1px;
  height: 3rem;
  background: rgba(255, 255, 255, 0.15);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 5;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: float-scroll 2.5s ease-in-out infinite;
}

@keyframes float-scroll {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

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

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
}

/* ── About / Philosophy Section ── */
.section-about {
  background-color: #111;
  z-index: 20;
}

.section-about .section-title {
  color: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  margin-bottom: 7rem;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  color: var(--color-brand);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.about-feature strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.about-feature p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about-img-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-brand);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  text-align: center;
}

.badge-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-brand);
  letter-spacing: -0.02em;
}

.badge-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

/* ── Marquee ── */
.client-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 4rem;
}

.trusted-by-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 2rem;
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 0;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 3rem;
  min-width: 100%;
  animation: scroll-marquee 25s linear infinite;
}

.marquee-content span {
  font-size: 4.5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  transition: color 0.3s ease, -webkit-text-stroke 0.3s ease;
  white-space: nowrap;
}

.marquee-content span:hover {
  color: var(--color-brand);
  -webkit-text-stroke: 0px;
}

@keyframes scroll-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* ── Featured Products / Flick Cards ── */
.section-featured {
  background-color: #f4f0eb;
  padding: 12rem 0 16rem;
  position: relative;
  overflow: hidden;
}

.section-header-inline {
  margin-bottom: 4rem;
}

.section-header-inline .tag {
  margin-bottom: 0.75rem;
}

.section-header-inline .section-title.is-light {
  color: #111;
}

.featured-bg_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  container-type: inline-size;
  display: flex;
  justify-content: center;
  padding-top: 3rem;
  pointer-events: none;
}

.featured-bg h2 {
  font-size: 22cqw;
  font-weight: 900;
  color: var(--color-brand);
  opacity: 0.1;
  line-height: 0.9;
  white-space: nowrap;
  letter-spacing: -0.04em;
}

.featured-slider-wrapper {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  min-height: 700px;
  z-index: 1;
}

.flick-card__left {
  text-align: right;
  z-index: 10;
  pointer-events: none;
}

.flick-card__right {
  text-align: left;
  z-index: 10;
  pointer-events: none;
}

.featured-product__name h2 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 900;
  line-height: 0.9;
  color: #111;
  letter-spacing: -0.03em;
}

.featured-product__title h3 {
  font-size: 0.85rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.featured-product__text p {
  font-size: 1rem;
  color: rgba(17, 17, 17, 0.55);
  line-height: 1.65;
  max-width: 280px;
}

/* Card Stack */
.flick-group {
  position: relative;
  width: 100%;
  height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 2000px;
}

.flick-group__relative-object {
  opacity: 0;
  pointer-events: none;
  width: 24em;
  position: relative;
}

.flick-group__relative-object-before {
  padding-top: 140%;
}

.flick-group__collection {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.flick-group__list {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.flick-group__item {
  position: absolute;
  width: 24em;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}

.flick-card {
  background-color: var(--color-card-bg);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  /* Standard clipping */
  width: 100%;
  height: 34em;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.35);
  transform-style: preserve-3d;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s var(--ease-apple);

  /* Definitive Fix for Chrome/Safari Clipping Bug with 3D/Hover */
  isolation: isolate;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}

.flick-card__media {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  /* Ensure children also stay clipped */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

[data-flick-cards-item-status="active"] .flick-card {
  border-color: var(--color-border-active);
  box-shadow: 0 50px 120px -20px rgba(245, 197, 24, 0.2);
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-apple);
}

.flick-card:hover .cover-image {
  transform: scale(1.04);
}

.flick-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  pointer-events: none;
}

.flick-card__label {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 30;
}

.flick-card__label .label {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.4em 0.9em;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-pill);
}

.flick-card__btn {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s var(--ease-apple);
  pointer-events: auto;
}

[data-flick-cards-item-status="active"] .flick-card__btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.flick-card__nav {
  position: absolute;
  bottom: -6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  z-index: 100;
  pointer-events: auto;
}

.slide__counter {
  color: rgba(17, 17, 17, 0.4);
  font-family: monospace;
  font-size: 0.9rem;
  display: flex;
  gap: 0.4rem;
}

.slide-arrow__controls {
  display: flex;
  gap: 0.75rem;
}

.slide__arrow {
  width: 3.2rem;
  height: 3.2rem;
  border: 1.5px solid rgba(17, 17, 17, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #111;
  background: rgba(17, 17, 17, 0.05);
  transition: all 0.3s var(--ease-apple);
  cursor: pointer;
}

.slide__arrow:hover {
  border-color: var(--color-accent);
  background: var(--color-gold-gradient);
  color: #000;
  transform: scale(1.1);
}

[data-flick-cards-dragger] {
  position: absolute;
  inset: 0;
  z-index: 25;
  cursor: grab;
}

[data-flick-cards-dragger]:active {
  cursor: grabbing;
}

.featured-product-collection {
  display: none !important;
}

/* ── Animated Timeline Section ── */
.section-timeline {
  background: #070709;
  color: #fff;
  z-index: 30;
  overflow: hidden;
}

.tl-artwork-wrap img:hover {
  transform: scale(1.02) translateY(-10px);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9), 0 0 60px rgba(245, 197, 24, 0.2) !important;
}

.tl-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 6rem;
}

.tl-header .section-title {
  color: #fff;
  margin-bottom: 1.25rem;
}

.tl-header .section-title em {
  color: var(--color-brand);
}

.tl-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
}

/* ── Timeline Spine ── */
.tl-wrapper {
  position: relative;
}

.tl-spine-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  z-index: 0;
}

.tl-ghost-line {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

/* Infinite flowing energy pulse down the spine */
.tl-ghost-line::after {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(245, 197, 24, 0.5), transparent);
  animation: energy-flow 3s linear infinite;
}

@keyframes energy-flow {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

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

.tl-spine-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0px 0px 12px rgba(245, 197, 24, 0.8));
}

#tl-spark {
  transition: opacity 0.3s;
}

/* Destination Trophy Goal */
.tl-destination {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #111;
  border: 2px solid rgba(245, 197, 24, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.5s ease;
  color: rgba(245, 197, 24, 0.3);
  font-size: 1.5rem;
}

/* Wining / Goal Achieved Animation */
.destination-achieved {
  background: var(--color-gold-gradient);
  border-color: #fff;
  color: #000;
  transform: translate(-50%, 50%) scale(1.2);
  animation: win-pulse 1.2s infinite alternate ease-in-out;
}

@keyframes win-pulse {
  from {
    box-shadow: 0 0 0 10px rgba(245, 197, 24, 0.1), 0 0 40px rgba(245, 197, 24, 0.5);
  }

  to {
    box-shadow: 0 0 0 15px rgba(245, 197, 24, 0.3), 0 0 80px rgba(245, 197, 24, 1);
  }
}

/* ── Rows ── */
.tl-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  gap: 0;
  padding: 2.5rem 0;
  position: relative;
  z-index: 2;
}

.tl-spacer {
  flex: 1;
}

/* ── Dot ── */
.tl-dot-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tl-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1a1a1e;
  border: 2px solid rgba(245, 197, 24, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s, box-shadow 0.4s;
  flex-shrink: 0;
}

.tl-dot-inner {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.3);
  transition: background 0.4s, transform 0.4s;
}

.tl-dot--active {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 8px rgba(245, 197, 24, 0.2), 0 0 24px rgba(245, 197, 24, 0.6);
  animation: dot-ping 1s var(--ease-apple) forwards;
}

.tl-dot--active .tl-dot-inner {
  background: var(--color-brand);
  transform: scale(1.4);
}

@keyframes dot-ping {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.6), 0 0 20px rgba(245, 197, 24, 0.4);
  }

  60% {
    box-shadow: 0 0 0 14px rgba(245, 197, 24, 0), 0 0 30px rgba(245, 197, 24, 0.6);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(245, 197, 24, 0), 0 0 24px rgba(245, 197, 24, 0.6);
  }
}

/* ── Cards ── */
.tl-card {
  background: #0c0c0e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-apple);
}

@media (min-width: 900px) {
  .tl-card {
    flex-direction: row;
    min-height: 280px;
  }
}

/* Image Side */
.tl-card-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .tl-card-img {
    width: 240px;
    height: auto;
    flex-shrink: 0;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
  }
}

/* Inner zoom element for smooth scaling without border distortion */
.tl-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

@media (hover: hover) and (pointer: fine) {
  .tl-card:hover .tl-card-img::before {
    transform: scale(1.1);
  }
}

.tl-card--active .tl-card-img::before {
  transform: scale(1.1);
}

/* Text Side */
.tl-card-content {
  padding: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  background: #0c0c0e;
}

/* RIGHT cards reverse the layout on desktop */
@media (min-width: 900px) {
  .tl-right .tl-card {
    flex-direction: row-reverse;
    text-align: right;
  }

  .tl-right .tl-card-img {
    border-right: none;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
  }

  .tl-right .tl-card-content {
    align-items: flex-end;
  }
}

.tl-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245, 197, 24, 0.07) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 3;
}

.tl-card:hover,
.tl-card--active {
  border-color: rgba(245, 197, 24, 0.8);
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 60px rgba(245, 197, 24, 0.5);
}

.tl-card:hover::after,
.tl-card--active::after {
  opacity: 1;
}

/* ── CSS fly-in animation (JS adds these classes) ── */
.tl-card--from-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.75s var(--ease-apple), transform 0.75s var(--ease-apple), border-color 0.4s, box-shadow 0.4s;
}

.tl-card--from-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.75s var(--ease-apple), transform 0.75s var(--ease-apple), border-color 0.4s, box-shadow 0.4s;
}

.tl-card--from-left.tl-card--visible,
.tl-card--from-right.tl-card--visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Stagger by position */
.tl-row:nth-child(2) .tl-card {
  transition-delay: 0.05s;
}

.tl-row:nth-child(3) .tl-card {
  transition-delay: 0.10s;
}

.tl-row:nth-child(4) .tl-card {
  transition-delay: 0.15s;
}

.tl-row:nth-child(5) .tl-card {
  transition-delay: 0.20s;
}

.tl-row:nth-child(6) .tl-card {
  transition-delay: 0.25s;
}

.tl-row:nth-child(7) .tl-card {
  transition-delay: 0.30s;
}

.tl-card-num {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 197, 24, 0.15);
  margin-bottom: 1rem;
  transition: color 0.3s, -webkit-text-stroke 0.3s;
  font-family: 'Outfit', sans-serif;
}

.tl-card:hover .tl-card-num,
.tl-card--active .tl-card-num {
  color: var(--color-brand);
  -webkit-text-stroke: 0px;
  text-shadow: 0 0 20px rgba(245, 197, 24, 0.8);
}

.tl-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-brand);
  margin-bottom: 1rem;
  transition: all 0.3s var(--ease-apple);
}

.tl-card:hover .tl-card-icon,
.tl-card--active .tl-card-icon {
  background: var(--color-gold-gradient);
  border-color: transparent;
  color: #000;
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 0 24px rgba(245, 197, 24, 0.8);
}

.tl-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.tl-card-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

/* ── Mobile: stack vertically ── */
@media (max-width: 768px) {
  .tl-spine-wrap {
    display: none;
  }

  .tl-row {
    grid-template-columns: 1fr;
    padding: 1rem 0;
  }

  .tl-dot-wrap,
  .tl-spacer {
    display: none;
  }

  .tl-card {
    margin-bottom: 0;
  }
}


.process-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 5rem;
}

.process-header .section-title {
  color: #fff;
  margin-bottom: 1.25rem;
}

.process-header .section-title em {
  color: var(--color-brand);
  font-style: italic;
}

.process-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 3px;
}

.process-step {
  background: #0c0c0e;
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.35s var(--ease-apple);
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(245, 197, 24, 0.07) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-step:hover {
  background: #111115;
}

.process-step:hover::before {
  opacity: 1;
}

.step-number {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 197, 24, 0.25);
  margin-bottom: 1.5rem;
  font-family: 'Outfit', sans-serif;
  transition: -webkit-text-stroke 0.3s ease, color 0.3s ease;
}

.process-step:hover .step-number {
  color: var(--color-brand);
  -webkit-text-stroke: 0px;
}

.step-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-brand);
  margin-bottom: 1.25rem;
  transition: all 0.3s var(--ease-apple);
}

.process-step:hover .step-icon-wrap {
  background: var(--color-gold-gradient);
  border-color: transparent;
  color: #000;
  box-shadow: var(--gold-shadow);
  transform: scale(1.1);
}

.step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

.process-cta-bar {
  background: var(--color-gold-gradient);
  border-radius: 20px;
  margin-top: 3rem;
  padding: 2.5rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.process-cta-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.process-cta-bar p {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  max-width: 420px;
  line-height: 1.45;
}

.process-cta-bar .btn-primary {
  background: #000;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

.process-cta-bar .btn-primary:hover {
  background: #1a1a1a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-cta-bar {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
}

.custom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
}

.custom-content {
  max-width: 560px;
}

.custom-text {
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  opacity: 0.75;
}

.button-group {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Premium Awwwards Style Visual ── */
.awwwards-visual {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aw-radar-grid {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.05);
  background: radial-gradient(circle, transparent 40%, rgba(229, 184, 11, 0.03) 100%);
  animation: spin-slow 60s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aw-radar-line-h,
.aw-radar-line-v {
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
}

.aw-radar-line-h {
  width: 100%;
  height: 1px;
}

.aw-radar-line-v {
  width: 1px;
  height: 100%;
}

.aw-core {
  position: relative;
  width: 150px;
  height: 150px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 60px rgba(245, 197, 24, 0.25);
}

.aw-core img {
  width: 70%;
  filter: drop-shadow(0 0 18px rgba(245, 197, 24, 0.5));
  z-index: 5;
}

.aw-core-ring-1,
.aw-core-ring-2 {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 1px solid rgba(245, 197, 24, 0.35);
  animation: pulse-ring 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.aw-core-ring-2 {
  inset: -30px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  animation-delay: 1.5s;
}

.aw-card {
  position: absolute;
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.8rem 1.5rem 0.8rem 0.8rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 20;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.aw-card:hover {
  background: rgba(245, 197, 24, 0.08);
  border-color: rgba(245, 197, 24, 0.5);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.6), 0 0 24px rgba(245, 197, 24, 0.2);
}

.aw-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #222, #111);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.05);
}

.aw-text h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.aw-text p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  margin: 0;
}

/* Asymmetric Positions for a high-end editorial feel */
.card-top {
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card-bottom {
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 50%);
}

.card-tl {
  top: 20%;
  left: 0%;
}

.card-tr {
  top: 30%;
  right: -5%;
}

.card-bl {
  bottom: 30%;
  left: -5%;
}

.card-br {
  bottom: 20%;
  right: 5%;
}


@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

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

@media (max-width: 768px) {
  .aw-radar-grid {
    width: 300px;
    height: 300px;
  }

  .aw-core {
    width: 100px;
    height: 100px;
  }

  .aw-card {
    padding: 0.5rem 1rem 0.5rem 0.5rem;
  }

  .aw-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .aw-text h4 {
    font-size: 0.7rem;
  }

  .aw-text p {
    font-size: 0.6rem;
  }

  /* Balanced 6-card layout for mobile */
  .card-top {
    top: -5%;
    left: 50%;
  }

  .card-bottom {
    bottom: -5%;
    left: 50%;
  }

  .card-tl {
    top: 15%;
    left: -10%;
  }

  .card-tr {
    top: 15%;
    right: -10%;
  }

  .card-bl {
    bottom: 15%;
    left: -10%;
  }

  .card-br {
    bottom: 15%;
    right: -10%;
  }
}


/* ── Applications / Solutions Grid ── */
.section-solutions {
  background: #050505;
  color: #fff;
}

.section-solutions .section-title {
  color: #fff;
}

.solutions-header {
  margin-bottom: 4rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Flip Card Container */
.solution-card {
  perspective: 1500px;
  cursor: pointer;
  height: 380px;
}

/* Inner Wrapper doing the flip */
.solution-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

.solution-card:hover .solution-card-inner {
  transform: translateY(-8px) rotateY(180deg);
}

/* Common rules for front and back */
.solution-card-front,
.solution-card-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-card, 16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  transition: all 0.4s var(--ease-apple);
}

.solution-card:hover .solution-card-front,
.solution-card:hover .solution-card-back {
  border-color: rgba(245, 197, 24, 0.45);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 1);
}

.solution-card-front {
  background: linear-gradient(135deg, #111114, #050505);
}

.solution-icon-wrap .icon {
  color: var(--color-brand);
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.1), transparent);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid rgba(245, 197, 24, 0.1);
  margin-bottom: 2rem;
}

.solution-card-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Back Face Content Styles */
.solution-card-back h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
}

.solution-card-back p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.solution-link-back {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  padding: 0.8rem 1.75rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.solution-link-back:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

/* Unique Gradients for each back card */
.card-nurses .solution-card-back {
  background: linear-gradient(135deg, #134e5e, #71b280);
}

.card-doctors .solution-card-back {
  background: linear-gradient(135deg, #141e30, #243b55);
}

.card-dentists .solution-card-back {
  background: linear-gradient(135deg, #310e68, #5f0f40);
}

.card-pharmacists .solution-card-back {
  background: linear-gradient(135deg, #093028, #237a57);
}

.card-allied .solution-card-back {
  background: linear-gradient(135deg, #2b5876, #4e4376);
}

.card-students .solution-card-back {
  background: linear-gradient(135deg, #5c258d, #4389a2);
}

/* Elements on front */
.solution-icon-wrap {
  margin-bottom: 1.5rem;
}

.solution-card-front .icon {
  font-size: 2.8rem;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.solution-card:hover .solution-card-front .icon {
  transform: scale(1.15) rotate(5deg);
}

.solution-card-front h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.solution-card-front p {
  color: #b0b0b0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.solution-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-brand);
  letter-spacing: 0.05em;
  transition: padding-left 0.2s;
  display: inline-block;
  text-decoration: none;
}

.solution-link:hover {
  padding-left: 8px;
}

/* ── Legacy / Stats ── */
.section-legacy {
  background-color: #0c0c0c;
  background-image: url('https://images.unsplash.com/photo-1518684079-3c830dcef090?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* subtle parallax */
  color: #fff;
  position: relative;
  isolation: isolate;
}

/* Dark overlay so content stays crisp over the bg image */
.section-legacy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.82);
  z-index: -1;
  border-radius: inherit;
}

.section-legacy .section-title {
  color: #fff;
}

.legacy-header {
  margin-bottom: 5rem;
}

.legacy-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 6rem;
  overflow: hidden;
  border-radius: 20px;
}

.legacy-stat-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 3.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

.legacy-stat-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 197, 24, 0.2);
}

.legacy-stat-icon {
  font-size: 2rem;
  color: var(--color-brand);
  margin-bottom: 1.5rem;
  transition: all 0.4s var(--ease-apple);
}

.legacy-stat-num {
  font-size: 4.5rem;
  font-weight: 900;
  background: var(--color-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  line-height: 1;
  transition: all 0.4s var(--ease-apple);
}

.legacy-stat-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(245, 197, 24, 0.7);
  margin-top: 0.25rem;
  transition: all 0.4s var(--ease-apple);
}

/* Glow Effect for Numbers/Icons when Active or Hovered */
.legacy-stat-card:hover .legacy-stat-num,
.legacy-stat-card--active .legacy-stat-num {
  text-shadow: 0 0 30px rgba(245, 197, 24, 0.6);
  transform: scale(1.05);
}

.legacy-stat-card:hover .legacy-stat-icon,
.legacy-stat-card--active .legacy-stat-icon,
.legacy-stat-card:hover .legacy-stat-suffix,
.legacy-stat-card--active .legacy-stat-suffix {
  color: #fff;
  filter: drop-shadow(0 0 15px rgba(245, 197, 24, 0.8));
  transform: translateY(-5px);
}

.legacy-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.75rem;
}

/* Testimonials */
.testimonials-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s var(--ease-apple);
}

.testimonial-card:hover {
  border-color: rgba(245, 197, 24, 0.25);
  background: rgba(245, 197, 24, 0.04);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.testimonial-proof {
  margin-top: 4rem;
}

.testimonial-proof-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.testimonial-proof-header .tag {
  margin-bottom: 0.65rem;
}

.testimonial-proof-header h3 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: 0;
  color: #fff;
}

.testimonial-media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-media-card {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-media-card--wide {
  grid-column: span 2;
}

.testimonial-media-card--promo {
  grid-column: span 2;
}

.testimonial-media-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.5s var(--ease-apple), opacity 0.3s ease;
}

.testimonial-media-card:hover img {
  transform: scale(1.04);
}

.testimonial-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.testimonial-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #050505;
  border: 1px solid rgba(245, 197, 24, 0.2);
  object-fit: cover;
}

/* ── FAQ Section ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 1.75rem 2.25rem;
  cursor: pointer;
  transition: all 0.3s var(--ease-apple);
}

.faq-item:hover {
  border-color: rgba(245, 197, 24, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.faq-item[open] {
  border-left: 3px solid var(--color-brand);
  background: rgba(245, 197, 24, 0.02);
}

.faq-item summary {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  color: var(--color-brand);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  font-size: 1rem;
}

/* ── Contact / CTA ── */
.section-cta {
  background-color: #050505;
  background-image: linear-gradient(rgba(5, 5, 5, 0.85), rgba(5, 5, 5, 0.85)), url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}

.section-cta .section-title {
  color: #fff;
}

.cta-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8rem;
  align-items: start;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  outline: none;
  width: 100%;
  appearance: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-input:focus {
  border-color: var(--color-brand);
  background: rgba(245, 197, 24, 0.05);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.1);
  outline: none;
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: #111;
  color: #fff;
}

.btn-submit {
  background: var(--color-gold-gradient);
  color: #000;
  padding: 1.1rem 2rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-apple);
  text-align: center;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.btn-submit:hover {
  background: var(--color-gold-gradient-h);
  transform: translateY(-2px);
  box-shadow: var(--gold-shadow);
}

.cta-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-info-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.cta-info-card:hover {
  border-color: rgba(245, 197, 24, 0.25);
  background: rgba(245, 197, 24, 0.03);
}

.cta-info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cta-info-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-brand);
  margin-bottom: 0.25rem;
}

.cta-info-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Footer ── */
.footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 7rem 4rem 3rem;
}

/* .footer-container removed to fix empty ruleset lint */

.footer-top {
  display: flex;
  gap: 6rem;
  margin-bottom: 5rem;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  color: #fff;
  border-color: var(--color-brand);
  background: rgba(245, 197, 24, 0.12);
  box-shadow: 0 0 14px rgba(245, 197, 24, 0.2);
}

.footer-nav-grid {
  display: flex;
  gap: 5rem;
  flex: 1;
  justify-content: flex-end;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col h4 {
  background: var(--color-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ══════════════════════════════════════
   PRODUCTS PAGE STYLES
   ══════════════════════════════════════ */

/* Products Hero */
.products-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: 0 4rem 6rem;
  background: #050505;
  position: relative;
  overflow: hidden;
}

.products-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at 60% 40%, rgba(212, 167, 106, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.products-hero-content {
  position: relative;
  z-index: 2;
}

.products-hero .hero-heading {
  font-size: clamp(3rem, 7vw, 6.5rem);
  color: #fff;
  margin-bottom: 1rem;
}

.products-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 500px;
  line-height: 1.65;
}

/* Product Filter Tabs */
.product-filters-section {
  background: #0a0a0a;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: var(--nav-height);
  z-index: 50;
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  flex-shrink: 0;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease-apple);
  white-space: nowrap;
}

.filter-tab:hover {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.25);
}

.filter-tab.active {
  background: var(--color-brand);
  color: #000;
  border-color: var(--color-brand);
}

/* Product Catalog Grid */
.product-catalog {
  background: #0a0a0a;
  padding: 6rem 0 10rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.45s var(--ease-apple);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(245, 197, 24, 0.3);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 197, 24, 0.08);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.8s var(--ease-apple);
}

.product-card:hover .product-card-img {
  transform: scale(1.04);
}

.product-card-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.product-card-badge.is-certified {
  background: rgba(212, 167, 106, 0.85);
  color: #000;
  border-color: transparent;
}

.product-card-body {
  padding: 2rem;
}

.product-card-category {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 0.6rem;
}

.product-card-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.product-card-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.product-card-specs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.spec-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card-action {
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s var(--ease-apple);
}

.product-card-action:hover {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: #000;
}

.product-card-arrow {
  color: var(--color-brand);
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.product-card:hover .product-card-arrow {
  transform: translateX(4px);
}

/* Featured Product Hero Card */
.product-featured-banner {
  background: linear-gradient(135deg, #111 0%, #1a1208 100%);
  border: 1px solid rgba(212, 167, 106, 0.2);
  border-radius: 32px;
  overflow: hidden;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 380px;
  margin-bottom: 1rem;
  position: relative;
}

.product-featured-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212, 167, 106, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.banner-content {
  padding: 4rem;
  position: relative;
  z-index: 2;
}

.banner-tag {
  display: inline-block;
  background: rgba(212, 167, 106, 0.15);
  color: var(--color-brand);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 167, 106, 0.3);
  margin-bottom: 1.5rem;
}

.banner-title {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.banner-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.banner-img-wrap {
  position: relative;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-apple);
}

.product-featured-banner:hover .banner-img {
  transform: scale(1.04);
}

.banner-specs {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.banner-spec {
  text-align: center;
}

.banner-spec-val {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-brand);
  letter-spacing: -0.03em;
}

.banner-spec-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.25rem;
}

/* Product Specs Modal */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-apple);
}

.product-modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-box {
  position: relative;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  max-width: 760px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 2;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s var(--ease-apple);
}

.product-modal.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  transition: all 0.2s;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(245, 197, 24, 0.15);
  border-color: var(--color-accent);
  color: #fff;
}

.modal-img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: 32px 32px 0 0;
}

.modal-body {
  padding: 3rem;
}

.modal-category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.modal-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.modal-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.modal-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.modal-spec-item {
  background: #111;
  padding: 1.5rem;
  text-align: center;
}

.modal-spec-item strong {
  display: block;
  font-size: 1.3rem;
  color: var(--color-brand);
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.modal-spec-item span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
}

.modal-features {
  margin-bottom: 2.5rem;
}

.modal-features h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.modal-features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.modal-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.modal-features li::before {
  content: '✦';
  color: var(--color-brand);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.modal-actions {
  display: flex;
  gap: 1rem;
}

/* No filter match message */
.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 6rem 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.1rem;
  display: none;
}

.no-results.visible {
  display: block;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 1380px) {
  .nav-menu-wrapper {
    max-width: calc(100% - 420px);
    /* keep clear of logo + actions */
  }

  .nav-link {
    padding: 0.55rem 0.75rem;
    font-size: 0.73rem;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 1200px) {
  .hero-bottom-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .custom-container {
    flex-direction: column;
    text-align: center;
  }

  .button-group {
    justify-content: center;
  }

  .custom-visual {
    margin-top: 5rem;
  }

  .featured-slider-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    min-height: auto;
  }

  .flick-card__left,
  .flick-card__right {
    text-align: center;
    order: 2;
  }

  .flick-group {
    order: 1;
    height: 500px;
  }

  .featured-product__text p {
    max-width: 100%;
  }

  .cta-container {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

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

  .product-featured-banner {
    grid-template-columns: 1fr;
  }

  .banner-img-wrap {
    min-height: 280px;
  }

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

  .testimonials-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .nav {
    top: 12px;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .nav-hamburger {
    width: 48px;
    height: 48px;
  }

  .section {
    padding: 5rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .section-hero {
    padding: 0 1.25rem 4rem;
    min-height: 100svh;
    /* Use svh for better mobile height handling */
  }

  .hero-heading {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
    letter-spacing: -0.04em;
    line-height: 1.05;
  }

  .hero-sub,
  .hero-sub-inline {
    font-size: 0.35em;
  }

  .hero-description {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .hero-stat .stat-number {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    margin-bottom: 1.25rem;
  }

  .about-text {
    font-size: 1rem;
  }

  .footer-container {
    padding: 0 1.5rem;
  }

  .footer {
    padding: 5rem 0 2rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-nav-grid {
    flex-direction: column;
    gap: 2rem;
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

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

  .legacy-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 3rem;
  }

  .legacy-stat-card {
    padding: 2rem 1rem;
  }

  .legacy-stat-num {
    font-size: 2.8rem;
  }

  .legacy-stat-suffix {
    font-size: 1.1rem;
  }

  @media (max-width: 480px) {
    .legacy-stats-grid {
      grid-template-columns: 1fr;
    }
  }

  .section-legacy {
    padding-bottom: 2rem;
  }

  .testimonials-wrap {
    grid-template-columns: 1fr;
  }

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

  .modal-specs-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-logo img {
    height: 60px;
    width: auto;
  }

  .products-hero {
    padding: 0 1.5rem 4rem;
    min-height: 45vh;
  }

  .custom-container {
    flex-direction: column;
    gap: 4rem;
    text-align: center;
  }

  .custom-content {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .button-group {
    justify-content: center;
  }

  .custom-visual {
    width: 100%;
    height: 320px;
    max-width: 340px;
    margin: 0 auto;
  }

  .ply-layers {
    width: 220px;
    height: 220px;
  }

  .layer-label {
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
    right: 105%;
  }

  .marquee-content span {
    font-size: 3rem;
  }

  .section-featured {
    padding: 8rem 0 14rem;
  }

  .flick-group {
    height: 420px;
  }

  .flick-group__item,
  .flick-group__relative-object {
    width: 18em;
  }

  @media (max-width: 480px) {

    .flick-group__item,
    .flick-group__relative-object {
      width: 15em;
      /* Further reduce on small mobile */
    }

    .flick-card {
      height: 22em;
    }

    .flick-group {
      height: 360px;
    }
  }

  .flick-card {
    height: 26em;
  }

  .flick-card__left,
  .flick-card__right {
    display: none;
  }

  .featured-slider-wrapper {
    display: flex;
    justify-content: center;
    padding: 0;
  }

  .banner-content {
    padding: 2.5rem;
  }

  .product-featured-banner {
    grid-template-columns: 1fr;
  }
}

/* ── Network Grid Section (Visual Journey Redesign) ── */
.network-header {
  text-align: center;
  margin-bottom: 4rem;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.network-card {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.network-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 197, 24, 0.1);
}

/* Image fills the full card — positioned at top so faces show up top */
.network-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.network-card:hover .network-bg {
  transform: scale(1.06);
}

/* Top gradient so text at top stays readable */
.network-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.4) 28%,
      transparent 55%);
  pointer-events: none;
  z-index: 1;
}

/* Text pinned to TOP-LEFT — away from centered faces */
.network-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.6rem 1.8rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Gold category badge */
.network-cat {
  display: inline-block;
  color: var(--color-brand);
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.25);
  padding: 0.25em 0.75em;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 0.4rem;
}

/* Career title — clean and bold */
.network-title {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

@media (max-width: 1024px) {
  .network-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .network-card {
    height: 440px;
  }
}

@media (max-width: 600px) {
  .network-grid {
    grid-template-columns: 1fr;
  }

  .network-card {
    height: 360px;
  }

  .network-header .section-title {
    font-size: 2.5rem !important;
  }
}

/* ══════════════════════════════════════════════════════
   PREMIUM MOBILE DESIGN SYSTEM — Abroad Guardian
   Breakpoints: 768px · 480px · 380px
   ══════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Global smoothing ── */
  * {
    -webkit-tap-highlight-color: transparent;
  }

  /* ── Sections ── */
  .section {
    padding: 4.5rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  /* ─────────────────────────────────────────────────────
     HERO
  ───────────────────────────────────────────────────── */
  .section-hero {
    padding: 0 0 3.5rem;
    min-height: 100svh;
    align-items: flex-end;
  }

  .hero-wrapper.hero-bottom-content {
    padding: 0 1.25rem;
    width: 100%;
  }

  .hero-left-col {
    max-width: 100%;
  }

  .hero-eyebrow-wrap {
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }

  .hero-heading {
    font-size: clamp(2.4rem, 13vw, 3.6rem);
    letter-spacing: -0.04em;
    line-height: 1.04;
    margin-bottom: 0;
  }

  .hero-sub {
    font-size: 0.32em;
    letter-spacing: 0.18em;
    display: block;
    margin-bottom: 0.4rem;
    color: var(--color-brand);
    opacity: 0.9;
  }

  .hero-sub-inline {
    font-size: 0.55em;
    letter-spacing: 0.08em;
    display: block;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.2rem;
  }

  .hero-description {
    font-size: 0.92rem !important;
    max-width: 100% !important;
    line-height: 1.65;
    margin-top: 1rem !important;
    color: rgba(255, 255, 255, 0.65) !important;
  }

  .scroll-indicator {
    display: none;
  }

  /* ─────────────────────────────────────────────────────
     NAVIGATION
  ───────────────────────────────────────────────────── */
  .nav {
    top: 14px;
  }

  .nav-container {
    padding: 0 1.1rem;
  }

  .nav-logo img {
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(245, 197, 24, 0.25));
  }

  .nav-hamburger {
    width: 44px;
    height: 44px;
    background: rgba(9, 9, 11, 0.75) !important;
    backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
  }

  .nav-hamburger span {
    width: 20px;
    height: 1.5px;
  }

  /* Mobile menu premium look */
  .mobile-nav-link {
    font-size: 2.1rem;
    letter-spacing: -0.03em;
  }

  .mobile-cta {
    font-size: 0.9rem !important;
    padding: 1rem 2rem !important;
    margin-top: 1.5rem;
  }

  /* ─────────────────────────────────────────────────────
     WIM — WHO IS ABROAD GUARDIAN
  ───────────────────────────────────────────────────── */
  #who-is-max {
    padding: 3.5rem 0 !important;
  }

  .wim-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  #wim-img-wrap {
    order: -1;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
  }

  #wim-img-clip {
    border-radius: 20px !important;
    max-height: 260px;
    overflow: hidden;
  }

  #wim-img-clip img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center top;
  }

  #wim-badge {
    bottom: -1rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    white-space: nowrap;
    padding: 0.65rem 1.25rem !important;
    border-radius: 10px !important;
  }

  #wim-content {
    text-align: left;
    padding-top: 1.5rem;
  }

  #wim-tag {
    margin-bottom: 0.75rem !important;
  }

  #wim-content .section-title {
    font-size: clamp(2rem, 10vw, 2.8rem) !important;
    margin-bottom: 1rem !important;
  }

  #wim-content .about-text {
    font-size: 0.93rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
  }

  .wim-stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .wim-stat-card {
    background: rgba(245, 197, 24, 0.04);
    border: 1px solid rgba(245, 197, 24, 0.12);
    border-radius: 14px;
    padding: 1rem 0.5rem;
    text-align: center;
  }

  .wim-stat-icon {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
  }

  .wim-stat-num {
    font-size: 1.8rem !important;
  }

  .wim-stat-label {
    font-size: 0.6rem;
    line-height: 1.3;
  }

  /* ─────────────────────────────────────────────────────
     ABOUT / EXPERTISE SECTION
  ───────────────────────────────────────────────────── */
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .about-content {
    order: 1;
  }

  .about-media {
    order: 2;
  }

  .about-img-wrap {
    border-radius: 20px;
    overflow: hidden;
  }

  .about-features {
    gap: 1rem;
  }

  .about-feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    gap: 0.75rem;
  }

  .feature-icon {
    font-size: 0.9rem;
    min-width: 28px;
    height: 28px;
    background: rgba(245, 197, 24, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ─────────────────────────────────────────────────────
     MARQUEE STRIP
  ───────────────────────────────────────────────────── */
  .marquee-content span {
    font-size: 2.2rem;
  }

  .client-wrapper {
    margin-top: 2rem;
  }

  /* ─────────────────────────────────────────────────────
     FLICK CARDS — PROGRAMS
  ───────────────────────────────────────────────────── */
  .section-featured {
    padding: 5rem 0 10rem;
  }

  .section-header-inline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 3rem;
  }

  .featured-slider-wrapper {
    display: flex;
    justify-content: center;
    padding: 0;
  }

  .flick-card__left,
  .flick-card__right {
    display: none;
  }

  .flick-group {
    height: 400px;
    order: 1;
  }

  .flick-group__item,
  .flick-group__relative-object {
    width: 17em;
  }

  .flick-card {
    height: 25em;
    border-radius: 20px;
  }

  .flick-card__media {
    border-radius: 20px;
  }

  .flick-card__btn {
    bottom: 1.2rem;
    right: 1.2rem;
  }

  .flick-card__btn .btn-primary {
    font-size: 0.7rem;
    padding: 0.6rem 1.2rem;
  }

  .flick-card__label {
    top: 1rem;
    left: 1rem;
  }

  .flick-card__nav {
    margin-top: 1.5rem;
    justify-content: center;
  }

  /* ─────────────────────────────────────────────────────
     TIMELINE — YOUR PATH
  ───────────────────────────────────────────────────── */
  .section-timeline.section {
    padding: 4rem 0 5rem;
  }

  .tl-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .tl-subtitle {
    font-size: 0.9rem;
    max-width: 280px;
    margin: 0.75rem auto 0;
    line-height: 1.6;
  }

  /* Stack all timeline rows to single column */
  .tl-wrapper {
    padding: 0 1.25rem;
  }

  .tl-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 0 !important;
    margin-bottom: 1.5rem;
    position: relative;
  }

  /* Hide the alternating spacers on mobile */
  .tl-spacer {
    display: none !important;
  }

  .tl-dot-wrap {
    display: none !important;
  }

  .tl-spine-wrap {
    display: none !important;
  }

  .tl-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #0f0f13;
    border: 1px solid rgba(245, 197, 24, 0.1);
  }

  .tl-card[data-tl-side="left"],
  .tl-card[data-tl-side="right"] {
    transform: none !important;
    opacity: 1 !important;
  }

  .tl-card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .tl-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, #0f0f13 100%);
  }

  .tl-card-content {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .tl-card-num {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--color-brand);
    font-weight: 800;
    margin-bottom: 0.5rem;
  }

  .tl-card-icon {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-brand);
  }

  .tl-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    color: #fff;
  }

  .tl-card-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
  }

  .tl-destination {
    display: none;
  }

  /* ─────────────────────────────────────────────────────
     NETWORK GRID — CAREERS
  ───────────────────────────────────────────────────── */
  .network-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .network-card {
    height: 320px !important;
  }

  .network-title {
    font-size: 1.2rem;
  }

  /* ─────────────────────────────────────────────────────
     TESTIMONIALS
  ───────────────────────────────────────────────────── */
  .testimonials-wrap {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .testimonial-card {
    border-radius: 20px;
    padding: 1.5rem !important;
  }

  .testimonial-proof {
    margin-top: 2.5rem;
  }

  .testimonial-proof-header {
    display: block;
    margin-bottom: 1rem;
  }

  .testimonial-proof-header h3 {
    font-size: 1.65rem;
    max-width: 100%;
  }

  .testimonial-media-grid,
  .testimonial-video-grid {
    grid-template-columns: 1fr !important;
  }

  .testimonial-media-card,
  .testimonial-media-card--wide,
  .testimonial-media-card--promo {
    grid-column: auto;
    min-height: 240px;
    border-radius: 16px;
  }

  .testimonial-video {
    border-radius: 16px;
  }

  /* ─────────────────────────────────────────────────────
     LEGACY / STATS SECTION
  ───────────────────────────────────────────────────── */
  .legacy-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem;
  }

  .legacy-stat-card {
    border-radius: 18px;
    padding: 1.5rem 1rem;
  }

  .legacy-stat-num {
    font-size: 2.4rem !important;
  }

  /* ─────────────────────────────────────────────────────
     FAQ SECTION
  ───────────────────────────────────────────────────── */
  .faq-item {
    border-radius: 14px !important;
    padding: 0 !important;
  }

  .faq-item summary {
    padding: 1.1rem 1.25rem !important;
    font-size: 0.92rem !important;
    gap: 1rem;
    line-height: 1.45;
  }

  .faq-item>div,
  .faq-item>p {
    padding: 0 1.25rem 1.25rem !important;
    font-size: 0.88rem !important;
    line-height: 1.7;
  }

  /* ─────────────────────────────────────────────────────
     CONTACT / CTA / PARTNER FORM
  ───────────────────────────────────────────────────── */
  .cta-container {
    grid-template-columns: 1fr !important;
    gap: 3rem;
  }

  .form-row {
    grid-template-columns: 1fr !important;
  }

  .contact-form-wrap,
  .partner-form-box {
    border-radius: 20px;
    padding: 1.75rem 1.25rem !important;
  }

  .btn-submit {
    width: 100%;
    justify-content: center;
    padding: 1rem !important;
    font-size: 0.85rem !important;
    border-radius: 14px;
  }

  .solutions-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  /* ─────────────────────────────────────────────────────
     FOOTER
  ───────────────────────────────────────────────────── */
  .footer {
    padding: 4rem 0 2rem;
  }

  .footer-container {
    padding: 0 1.25rem;
  }

  .footer-top {
    flex-direction: column !important;
    gap: 2.5rem;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto;
  }

  .footer-tagline {
    font-size: 0.82rem;
    line-height: 1.65;
    max-width: 280px;
    margin: 0.75rem auto 0;
    text-align: center;
  }

  .footer-nav-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem;
    text-align: center;
  }

  .footer-nav-col h4 {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
    gap: 0.75rem;
  }

  .footer-social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 0.75rem;
    text-align: center;
    padding-top: 2rem;
    font-size: 0.72rem;
  }

  /* ─────────────────────────────────────────────────────
     TYPOGRAPHY & SECTION HEADERS
  ───────────────────────────────────────────────────── */
  .section-title {
    font-size: clamp(2rem, 10vw, 3rem) !important;
    letter-spacing: -0.035em;
    line-height: 1.05;
  }

  .tag {
    font-size: 0.62rem;
    padding: 0.35rem 0.85rem;
    letter-spacing: 0.18em;
    margin-bottom: 0.85rem;
  }

  .about-text {
    font-size: 0.93rem;
    line-height: 1.75;
  }

  /* ─────────────────────────────────────────────────────
     BUTTONS — Comfortable touch targets
  ───────────────────────────────────────────────────── */
  .btn-primary,
  .btn-secondary {
    min-height: 46px;
    padding: 0.85rem 1.5rem;
    font-size: 0.75rem;
  }

  /* ─────────────────────────────────────────────────────
     WHATSAPP FLOAT — Compact
  ───────────────────────────────────────────────────── */
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  /* ─────────────────────────────────────────────────────
     SECTION ROUNDED TOP — thinner on mobile
  ───────────────────────────────────────────────────── */
  .section-rounded-top {
    border-radius: 28px 28px 0 0;
  }

  /* Gold rule tighter */
  .gold-rule {
    margin: 0;
  }
}

/* ── Extra small: 480px ── */
@media (max-width: 480px) {

  .section {
    padding: 3.5rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  /* Hero */
  .hero-heading {
    font-size: clamp(2.1rem, 11vw, 2.8rem);
  }

  /* WIM stats — stack 2+1 on very small */
  .wim-stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .wim-stats-container>*:last-child {
    grid-column: 1 / -1;
    max-width: 180px;
    margin: 0 auto;
  }

  /* Flick cards */
  .flick-group {
    height: 360px;
  }

  .flick-group__item,
  .flick-group__relative-object {
    width: 15em;
  }

  .flick-card {
    height: 22em;
  }

  /* Legacy stats */
  .legacy-stats-grid {
    grid-template-columns: 1fr !important;
  }

  /* Footer nav — single column */
  .footer-nav-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  /* Timeline card image shorter */
  .tl-card-img {
    height: 300px;
  }

  /* Section title */
  .section-title {
    font-size: clamp(1.85rem, 9vw, 2.4rem) !important;
  }

  /* Network card */
  .network-card {
    height: 280px !important;
  }

  .network-title {
    font-size: 1.05rem;
  }

  /* Form full-width CTA */
  .modal-actions {
    flex-direction: column;
  }

  .modal-actions .btn-primary,
  .modal-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ── Ultra-small: 380px ── */
@media (max-width: 380px) {

  .hero-heading {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 0.3em;
  }

  .section-title {
    font-size: 1.75rem !important;
  }

  .mobile-nav-link {
    font-size: 1.75rem;
  }

  .nav-hamburger {
    width: 40px;
    height: 40px;
  }

  .wim-stat-num {
    font-size: 1.5rem !important;
  }

  .wim-stat-label {
    font-size: 0.55rem;
  }

  .tl-card-title {
    font-size: 1.1rem;
  }

  .tl-card-desc {
    font-size: 0.82rem;
  }

  .flick-group {
    height: 330px;
  }

  .flick-group__item,
  .flick-group__relative-object {
    width: 13.5em;
  }

  .flick-card {
    height: 20em;
  }
}

/* ══════════════════════════════════════════════════════
   CONSOLIDATED MOBILE FIXES: TIMELINE & FOOTER
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Timeline Card Fix (Side-by-side Num & Icon) ── */
  .tl-card-content {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    padding: 1.5rem !important;
    text-align: left !important;
  }

  .tl-card-num {
    display: inline-block !important;
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    color: var(--color-brand) !important;
    margin: 0 0.75rem 0.5rem 0 !important;
    line-height: 1 !important;
    -webkit-text-stroke: 0px !important;
  }

  .tl-card-icon {
    display: inline-flex !important;
    width: 34px !important;
    height: 34px !important;
    font-size: 1rem !important;
    margin: 0 0 0.5rem 0 !important;
    background: rgba(245, 197, 24, 0.1) !important;
    border: 1px solid rgba(245, 197, 24, 0.2) !important;
    border-radius: 8px !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--color-brand) !important;
  }

  /* Force wrap for Title & Desc */
  .tl-card-title {
    flex: 0 0 100% !important;
    font-size: 1.25rem !important;
    margin: 0.5rem 0 0.6rem 0 !important;
    font-weight: 800 !important;
    color: #fff !important;
  }

  .tl-card-desc {
    flex: 0 0 100% !important;
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.55) !important;
    margin: 0 !important;
  }

  /* ── Footer Premium Fix ── */
  .footer {
    padding: 4rem 0 2rem !important;
    background: #050505 !important;
  }

  .footer-brand {
    text-align: center !important;
    padding-bottom: 2.5rem !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    margin-bottom: 2.5rem !important;
  }

  .footer-brand img {
    height: 38px !important;
    margin: 0 auto 1.25rem !important;
  }

  .footer-brand p {
    font-size: 0.82rem !important;
    color: rgba(255,255,255,0.4) !important;
    max-width: 280px !important;
    margin: 0 auto 1.5rem !important;
  }

  .footer-socials {
    display: flex !important;
    justify-content: center !important;
    gap: 0.75rem !important;
  }

  .footer-nav-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
    padding-bottom: 2.5rem !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    margin-bottom: 2rem !important;
    text-align: left !important;
  }

  .footer-col h4 {
    font-size: 0.65rem !important;
    color: var(--color-brand) !important;
    margin-bottom: 0.75rem !important;
  }

  .footer-col a {
    font-size: 0.78rem !important;
    color: rgba(255,255,255,0.4) !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
  }

  .footer-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
    text-align: center !important;
  }
}
