/* ============================================================
   SM TRADING HUB — MAIN STYLESHEET
   Reference-Based Design System
   Font: Manrope (matching reference)
   Colors: Extracted from SM Trading Hub logo
   ============================================================ */

/* ---- CSS Custom Properties (Design Tokens) ---- */
:root {
  /* Brand Colors — derived from SM Trading Hub logo */
  --gold-primary:       #C9A227;     /* Logo primary gold */
  --gold-light:         #E8C547;     /* Lighter gold */
  --gold-warm:          #D4AF3A;     /* Warm gold mid */
  --gold-dark:          #A07A1A;     /* Deep gold */
  --gold-pale:          #F5E8B0;     /* Very light gold tint */
  --gold-subtle:        rgba(201, 162, 39, 0.12);

  --silver:             #B0B7C3;     /* Logo silver accent */
  --silver-light:       #D8DCE3;
  --silver-dark:        #8A909E;

  /* Dark / Navy (background & text) */
  --dark-900:           #0A0E14;     /* Deepest dark */
  --dark-800:           #111827;     /* Near-black for headings */
  --dark-700:           #1C2433;     /* Card dark BG */
  --dark-600:           #253044;     /* Section dark bg */
  --dark-500:           #374B64;     /* Muted dark */

  /* Light / Neutral */
  --white:              #FFFFFF;
  --off-white:          #FAFAF8;
  --cream:              #FFF8EB;     /* Warm cream */
  --light-100:          #F7F4EE;
  --light-200:          #EDE9DF;
  --light-300:          #D6CDB8;

  /* Text */
  --text-primary:       #111827;
  --text-secondary:     #4B5563;
  --text-muted:         #6B7280;
  --text-light:         #9CA3AF;

  /* Hero overlay */
  --hero-overlay:       rgba(7, 14, 26, 0.72);

  /* Section backgrounds alternating */
  --section-bg-light:   #FFFFFF;
  --section-bg-cream:   #FDFBF5;
  --section-bg-dark:    #0f1520;

  /* Typography */
  --font-main:          'Manrope', system-ui, -apple-system, sans-serif;

  /* Spacing & Sizing */
  --container-max:      1410px;
  --container-pad:      clamp(16px, 4vw, 60px);
  --section-pad-y:      clamp(64px, 8vw, 110px);
  --section-pad-inner:  clamp(28px, 3.4vw, 52px);

  /* Radius */
  --radius-sm:          8px;
  --radius-md:          14px;
  --radius-lg:          20px;
  --radius-xl:          28px;
  --radius-pill:        999px;

  /* Shadows */
  --shadow-sm:          0 2px 8px rgba(7, 14, 26, 0.06);
  --shadow-md:          0 8px 24px rgba(7, 14, 26, 0.10);
  --shadow-lg:          0 16px 48px rgba(7, 14, 26, 0.14);
  --shadow-gold:        0 8px 24px rgba(201, 162, 39, 0.18);
  --shadow-gold-lg:     0 16px 40px rgba(201, 162, 39, 0.28);

  /* Transitions */
  --transition-fast:    0.18s ease;
  --transition-med:     0.28s ease;
  --transition-slow:    0.42s ease;

  /* Header */
  --header-height:      76px;
  --header-height-mob:  64px;
}


/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark-800);
}

p { max-width: 72ch; }

/* Scrollbar styling */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-100); }
::-webkit-scrollbar-thumb { background: var(--gold-primary); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }


/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  position: relative;
  width: 100%;
}

.section-inner {
  width: 100%;
}

/* Section divider — gold gradient line (like reference) */
.section-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(280px, 60vw);
  height: 2px;
  border-radius: var(--radius-pill);
  background: linear-gradient(
    90deg,
    rgba(201, 162, 39, 0) 0%,
    rgba(201, 162, 39, 0.95) 42%,
    rgba(201, 162, 39, 0.6) 72%,
    rgba(201, 162, 39, 0) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Section Typography */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.section-eyebrow::before {
  display: none !important;
}

.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--dark-800);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.section-head .section-eyebrow { justify-content: center; }
.section-head .section-subtitle { margin-inline: auto; }


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 13px 26px;
  min-height: 48px;
  transition: background-color var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast),
              box-shadow var(--transition-fast),
              transform var(--transition-fast);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn:focus-visible {
  outline: 3px solid var(--gold-primary);
  outline-offset: 3px;
}

.btn:active { transform: scale(0.98); }

/* Gold CTA Button */
.btn-gold {
  background: linear-gradient(135deg, #E8C547 0%, #C9A227 50%, #A07A1A 100%);
  color: var(--dark-900);
  border-color: rgba(121, 82, 15, 0.16);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover, .btn-gold:focus-visible {
  background: linear-gradient(135deg, #F0D060 0%, #D4AF3A 50%, #B08820 100%);
  box-shadow: var(--shadow-gold-lg);
  transform: translateY(-1px);
}

/* Ghost Dark (for hero) */
.btn-ghost-dark {
  background: linear-gradient(135deg, #0D1929 0%, #1A2E48 100%);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-md);
}
.btn-ghost-dark:hover, .btn-ghost-dark:focus-visible {
  background: linear-gradient(135deg, #152235 0%, #223A5A 100%);
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

/* Outlined Gold */
.btn-outline-gold {
  background: transparent;
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}
.btn-outline-gold:hover, .btn-outline-gold:focus-visible {
  background: var(--gold-primary);
  color: var(--dark-900);
  box-shadow: var(--shadow-gold);
}

/* Sizes */
.btn-sm {
  font-size: 0.82rem;
  padding: 9px 18px;
  min-height: 38px;
  border-radius: var(--radius-pill);
}

.btn-lg {
  font-size: 1rem;
  padding: 16px 34px;
  min-height: 56px;
}

.btn-full { width: 100%; }

/* Hero button overrides */
.btn-hero {
  min-height: 52px;
  padding: 14px 28px;
  font-size: 0.96rem;
  border-radius: var(--radius-pill);
}

/* Panel button */
.btn-panel {
  width: 100%;
  min-height: 50px;
  margin-top: 8px;
  border-radius: var(--radius-md);
}


/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color var(--transition-med),
              box-shadow var(--transition-med),
              backdrop-filter var(--transition-med);
}

.header-inner {
  background: rgba(7, 14, 26, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  transition: background-color var(--transition-med),
              border-color var(--transition-med);
}

/* Scrolled state */
.site-header.is-scrolled .header-inner {
  background: rgba(10, 14, 20, 0.96);
  border-bottom-color: rgba(201, 162, 39, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.24);
}

.header-container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo — single circle, no double border */
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

/* Wrapper controls logo size */
.logo-img-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: none;
  outline: none;
  transition: transform var(--transition-fast);
}

.header-logo:hover .logo-img {
  transform: scale(1.05); /* Keep hover effect on the image itself */
}

.logo-text {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Desktop Navigation */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: color var(--transition-fast),
              background-color var(--transition-fast);
  letter-spacing: 0.02em;
  position: relative;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--gold-primary);
  background: rgba(201, 162, 39, 0.1);
}

.nav-link.is-active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 999px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-cta {
  font-size: 0.84rem;
  padding: 9px 20px;
  min-height: 38px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
  width: 40px;
  height: 40px;
  padding: 8px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 162, 39, 0.25);
  background: rgba(201, 162, 39, 0.08);
  transition: background-color var(--transition-fast);
  cursor: pointer;
}

.hamburger:hover { background: rgba(201, 162, 39, 0.16); }
.hamburger:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform var(--transition-med), opacity var(--transition-med);
}

.hamburger.is-open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.mobile-menu.is-open .mobile-menu-overlay { opacity: 1; }

.mobile-nav {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: linear-gradient(160deg, #0A0E14 0%, #111827 50%, #0F1A28 100%);
  border-left: 1px solid rgba(201, 162, 39, 0.18);
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 16px;
  transform: translateX(100%);
  transition: transform var(--transition-med);
  overflow-y: auto;
}

.mobile-menu.is-open .mobile-nav { transform: translateX(0); }

.mobile-nav-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.mobile-logo-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: none;
  outline: none;
}

.mobile-logo-text {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  flex: 1;
}

.mobile-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  flex-shrink: 0;
  transition: background-color var(--transition-fast),
              border-color var(--transition-fast);
}

.mobile-close:hover { background: rgba(201, 162, 39, 0.15); border-color: var(--gold-primary); }

.mobile-nav-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
  color: var(--gold-primary);
  background: rgba(201, 162, 39, 0.08);
  border-color: rgba(201, 162, 39, 0.15);
}

.mobile-cta-group {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-cta {
  min-height: 52px;
  font-size: 0.96rem;
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--dark-900);
}

/* Video & Media */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

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

.hero-fallback-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 162, 39, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(176, 183, 195, 0.10) 0%, transparent 50%),
    linear-gradient(135deg, #0A0E14 0%, #0F1A28 50%, #0A0E14 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-overlay);
  background: linear-gradient(
    135deg,
    rgba(7, 14, 26, 0.88) 0%,
    rgba(7, 14, 26, 0.72) 50%,
    rgba(7, 14, 26, 0.5) 100%
  );
}

/* Hero Content */
.hero-container {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  max-width: var(--container-max);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--container-pad);
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 48px;
  align-items: center;
  width: 100%;
}

/* Hero Copy */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 18px;
}

.eyebrow-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-primary);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-title-accent {
  background: linear-gradient(90deg, #E8C547 0%, #C9A227 50%, #F5D060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Hero Stats Panel */
.hero-panel {
  display: flex;
  flex-direction: column;
}

.hero-panel-inner {
  background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero-panel-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: var(--radius-md);
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(90deg, #E8C547 0%, #C9A227 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.3;
}

/* Scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(201, 162, 39, 0.5);
  border-radius: 12px;
  position: relative;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 2px;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}


/* ============================================================
   TRUST TICKER (Continuous Scroll)
   ============================================================ */
.trust-ticker-wrap {
  background: var(--dark-700);
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  padding-block: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
}

.trust-ticker-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: ticker-scroll 35s linear infinite;
}

@media (hover: hover) {
  .trust-ticker-track:hover {
    animation-play-state: paused;
  }
}

.trust-ticker-inner {
  display: flex;
  align-items: center;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.ticker-item svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.ticker-sep {
  margin: 0 40px;
  color: rgba(201, 162, 39, 0.3);
  font-size: 0.6rem;
}

@keyframes ticker-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); } /* Assumes items are duplicated to take 200% width, translates half */
}


/* ============================================================
   VISION SECTION
   ============================================================ */
.vision-section {
  padding-block: var(--section-pad-y);
  background: var(--section-bg-cream);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* Vision Intro */
.vision-intro {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.vision-divider-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  border-radius: 999px;
  margin-block: 24px;
}

.vision-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.vision-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.vision-stat strong {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--gold-dark);
  line-height: 1;
}

.vision-stat span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Vision Content */
.vision-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.vision-statement {
  position: relative;
  padding: 32px 32px 32px 40px;
  background: var(--white);
  border-left: 4px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.vision-quote-mark {
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5rem;
  line-height: 1;
  font-weight: 900;
  color: var(--gold-pale);
  font-family: serif;
  pointer-events: none;
  z-index: 0;
}

.vision-statement p {
  position: relative;
  z-index: 1;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 600;
  line-height: 1.75;
  color: var(--dark-700);
  max-width: none;
  font-style: italic;
}

/* Vision Pillars */
.vision-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vision-pillar {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--light-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast);
}

.vision-pillar:hover {
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.14), rgba(201, 162, 39, 0.06));
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: var(--radius-md);
  color: var(--gold-primary);
  flex-shrink: 0;
}

.pillar-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pillar-body strong {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--dark-800);
}

.pillar-body p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.vision-cta { align-self: flex-start; }


/* ============================================================
   FOUNDER SECTION
   ============================================================ */
.founder-section {
  padding-block: var(--section-pad-y);
  background: var(--white);
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

/* Founder Media */
.founder-media {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.founder-img-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  margin-inline: auto;
}

.founder-img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(201, 162, 39, 0.25);
  background: linear-gradient(145deg, var(--dark-700), var(--dark-600));
}

.founder-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.founder-img-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 12px;
  color: rgba(201, 162, 39, 0.6);
  text-align: center;
  padding: 20px;
}

.founder-img-fallback p {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  max-width: none;
}

.founder-img-fallback small {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.founder-ring {
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--radius-xl) + 12px);
  border: 2px solid transparent;
  background: linear-gradient(var(--white), var(--white)) padding-box,
              linear-gradient(135deg, rgba(201, 162, 39, 0.7), rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.5)) border-box;
  pointer-events: none;
  z-index: -1;
}

.founder-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  align-self: center;
}

.badge-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border-radius: 50%;
  color: var(--dark-900);
  flex-shrink: 0;
}

.badge-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-body strong {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--dark-800);
}

.badge-body span {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gold-primary);
}

/* Founder Copy */
.founder-name-block {
  margin-bottom: 24px;
}

.founder-name {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: var(--dark-800);
  line-height: 1.1;
}

.founder-title-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 5px 14px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), rgba(201, 162, 39, 0.06));
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
}

.founder-bio {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.founder-bio p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 60ch;
}

.founder-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.founder-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.highlight-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 8px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.founder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


/* ============================================================
   PROJECTS / PROGRAMS SECTION
   ============================================================ */
.projects-section {
  padding-block: var(--section-pad-y);
  background: var(--section-bg-cream);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

/* Project Card */
.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #FFFFFF 0%, #FFFBF0 60%, #F8EDCC 100%);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: 0 8px 32px rgba(7, 14, 26, 0.07);
  transition: transform var(--transition-med),
              box-shadow var(--transition-med),
              border-color var(--transition-med);
  overflow: hidden;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(7, 14, 26, 0.13);
  border-color: rgba(201, 162, 39, 0.4);
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.project-card:hover::before { opacity: 1; }

/* Featured card */
.project-card--featured {
  background: linear-gradient(145deg, #0F1A28 0%, #1A2E48 60%, #142236 100%);
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: 0 12px 48px rgba(7, 14, 26, 0.22);
}

.project-card--featured .project-title { color: var(--white); }
.project-card--featured .project-short-desc { color: rgba(255,255,255,0.7); }
.project-card--featured .project-features li { color: rgba(255,255,255,0.75); }
.project-card--featured .project-features li::before { background: var(--gold-primary); }

/* Featured badge */
.project-card-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 4px 12px;
  background: var(--gold-primary);
  color: var(--dark-900);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}

.project-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.project-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: var(--radius-md);
  color: var(--gold-primary);
}

.project-card--featured .project-card-icon {
  background: rgba(201, 162, 39, 0.18);
}

.project-number {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(201, 162, 39, 0.18);
  font-variant-numeric: tabular-nums;
}

.project-card-body { flex: 1; }

.project-title {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  font-weight: 800;
  color: var(--dark-800);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}

.project-short-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: none;
}

.project-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.project-features li {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}

.project-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-primary);
}

.project-card-footer {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.project-card-footer .btn {
  flex: 1;
  min-width: 100px;
  font-size: 0.84rem;
  padding: 10px 16px;
  min-height: 42px;
  border-radius: var(--radius-md);
}

.btn-view-more { white-space: nowrap; }

.projects-footer {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}


/* ============================================================
   TRADING SIGNALS SECTION
   ============================================================ */
.signals-section {
  padding-block: var(--section-pad-y);
  background: var(--dark-800);
  color: var(--white);
}

.signals-section .section-eyebrow { color: var(--gold-primary); }
.signals-section .section-title { color: var(--white); }
.signals-section .section-subtitle { color: rgba(255,255,255,0.65); }

.signals-dashboard {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.signals-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(201, 162, 39, 0.08);
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
  flex-wrap: wrap;
  gap: 8px;
}

.signals-live-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-pulse {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  animation: live-ping 1.5s ease-in-out infinite;
}

@keyframes live-ping {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.signals-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

.signals-feed {
  padding: 20px;
  display: grid;
  gap: 12px;
  min-height: 200px;
}

.signals-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
}

/* Individual Signal Card */
.signal-card {
  display: grid;
  grid-template-columns: 100px auto repeat(3, 1fr) 90px 100px;
  align-items: center;
  gap: 10px 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 162, 39, 0.12);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast),
              border-color var(--transition-fast);
}

.signal-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201, 162, 39, 0.25);
}

.signal-pair {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
}

.signal-direction {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  justify-self: start;
}

.signal-direction.buy {
  background: rgba(34, 197, 94, 0.15);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.signal-direction.sell {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.signal-price-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.signal-price-label {
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
}

.signal-price-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.signal-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  justify-self: start;
}

.signal-status.active {
  background: rgba(34, 197, 94, 0.12);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.signal-status.closed {
  background: rgba(107, 114, 128, 0.15);
  color: #9CA3AF;
  border: 1px solid rgba(107, 114, 128, 0.2);
}
.signal-status.pending {
  background: rgba(234, 179, 8, 0.12);
  color: #EAB308;
  border: 1px solid rgba(234, 179, 8, 0.22);
}
.signal-status.tp-hit {
  background: rgba(34, 197, 94, 0.12);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.signal-status.sl-hit {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.18);
}

.signal-datetime {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-align: right;
}

/* Signal header row */
.signal-header {
  display: grid;
  grid-template-columns: 100px auto repeat(3, 1fr) 90px 100px;
  gap: 10px 14px;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.signal-header span {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
}

.signals-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.38);
  background: rgba(0,0,0,0.15);
}

.signals-disclaimer svg { flex-shrink: 0; margin-top: 2px; }

.signals-disclaimer p {
  font-size: 0.76rem;
  line-height: 1.5;
  max-width: none;
}

.signals-footer {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.signals-footer p {
  color: rgba(255,255,255,0.6);
  font-size: 0.96rem;
  max-width: none;
}


/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding-block: var(--section-pad-y);
  background: var(--section-bg-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 52ch;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--light-200);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast),
              transform var(--transition-fast);
}

.contact-detail-item:hover {
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: var(--shadow-gold);
  transform: translateX(4px);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.06));
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-md);
  color: var(--gold-primary);
  flex-shrink: 0;
}

.contact-detail-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-detail-body strong {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--dark-800);
}

.contact-detail-body span {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* Contact Card */
.contact-card {
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-md);
}

.contact-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark-800);
  margin-bottom: 8px;
}

.contact-card-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: none;
}

.contact-program-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-program-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid var(--light-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-fast);
  color: var(--text-primary);
  font-family: inherit;
}

.contact-program-btn:hover {
  border-color: rgba(201, 162, 39, 0.35);
  background: rgba(201, 162, 39, 0.04);
  box-shadow: var(--shadow-sm);
}

.contact-program-btn:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

.program-btn-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.1);
  border-radius: var(--radius-sm);
  color: var(--gold-primary);
  flex-shrink: 0;
}

.program-btn-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.program-btn-text strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--dark-800);
}

.program-btn-text small {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.contact-wa-btn {
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-900);
  color: var(--white);
}

.footer-inner { padding-block: clamp(48px, 7vw, 80px); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  margin-bottom: 48px;
}



/* Footer Brand */
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: none;
  outline: none;
}

.footer-logo-text {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 36ch;
}

.footer-wa-btn {
  font-size: 0.84rem;
  padding: 10px 20px;
  min-height: 42px;
  border-radius: var(--radius-md);
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  padding: 0;
  transition: color var(--transition-fast);
}

.footer-link:hover, .footer-link:focus-visible {
  color: var(--gold-primary);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact-item svg { color: var(--gold-primary); flex-shrink: 0; }

.footer-contact-item:hover { color: var(--white); }

/* Footer Bottom */
.footer-divider-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(201, 162, 39, 0) 0%,
    rgba(201, 162, 39, 0.5) 30%,
    rgba(201, 162, 39, 0.5) 70%,
    rgba(201, 162, 39, 0) 100%
  );
  margin-bottom: 24px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  max-width: none;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  max-width: none;
}


/* ============================================================
   PROJECT MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 40px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-med), visibility var(--transition-med);
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

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

.modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  max-height: 90svh;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: translateY(20px) scale(0.97);
  transition: transform var(--transition-med);
}

.modal-overlay.is-open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  height: 100%;
  max-height: 90svh;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--light-200);
  background: linear-gradient(145deg, var(--cream), var(--white));
  flex-shrink: 0;
}

.modal-header-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0 40px;
}

.modal-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 5px;
}

.modal-title {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 800;
  color: var(--dark-800);
  line-height: 1.2;
  max-width: 44ch;
  text-align: center;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 24px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--light-200);
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  background: #FEE2E2;
  border-color: #FECACA;
  color: #EF4444;
}

.modal-close:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px;
  overscroll-behavior: contain;
}

/* Modal Body Content Styles */


.modal-body .modal-section-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark-800);
  margin-top: 24px;
  margin-bottom: 10px;
}

.modal-body .modal-section-title:first-child { margin-top: 0; }

.modal-body p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: none;
  overflow-wrap: break-word;
  word-break: break-word;
}

.modal-body p:last-of-type { margin-bottom: 0; }

.modal-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.modal-body ul li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.modal-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-primary);
}

.modal-body .modal-highlight-box {
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.07), rgba(201, 162, 39, 0.03));
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-left: 4px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 16px 0;
}

.modal-body .modal-highlight-box p {
  font-weight: 600;
  color: var(--dark-700);
  margin: 0;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 28px;
  border-top: 1px solid var(--light-200);
  background: linear-gradient(145deg, var(--cream), var(--white));
  flex-shrink: 0;
  flex-wrap: wrap;
}

.modal-footer-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  max-width: none;
}

.btn-modal-cta {
  font-size: 0.9rem;
  padding: 12px 24px;
  min-height: 46px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}


/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 800;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  color: var(--white);
  transition: transform var(--transition-fast),
              box-shadow var(--transition-fast);
}

.wa-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.wa-float-btn:focus-visible {
  outline: 3px solid #25D366;
  outline-offset: 4px;
}

.wa-float-tooltip {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  background: var(--dark-800);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--transition-fast),
              transform var(--transition-fast);
}

.wa-float-btn:hover .wa-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}


/* ============================================================
   TEAM SECTION (Carousel)
   ============================================================ */
.team-section {
  background: var(--dark-900);
}

.team-section .section-eyebrow { color: var(--gold-primary); }
.team-section .section-title { color: var(--white); }
.team-section .section-subtitle { color: rgba(255,255,255,0.65); }

.team-carousel-wrap {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 50px;
}

.team-carousel-viewport {
  overflow: hidden;
  width: 100%;
  padding: 30px 0;
  margin: -30px 0;
}

.team-carousel-track {
  display: flex;
  gap: 25px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.team-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-xl);
  padding: 30px 24px;
  flex: 0 0 calc(33.333% - 17px);
  box-sizing: border-box;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  border-color: rgba(201, 162, 39, 0.4);
}

/* Prominent style for CEO card */
.team-card.team-card-ceo {
  border: 1px solid rgba(201, 162, 39, 0.65);
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow: 0 20px 45px rgba(201, 162, 39, 0.1), 0 0 20px rgba(201, 162, 39, 0.05);
}

.team-card.team-card-ceo::before {
  content: 'FOUNDER & CEO';
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--dark-900);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 10px rgba(201, 162, 39, 0.2);
  z-index: 2;
}

.team-card.team-card-ceo:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold-primary);
  box-shadow: 0 25px 55px rgba(201, 162, 39, 0.2), 0 0 25px rgba(201, 162, 39, 0.1);
}

.team-img-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid var(--dark-800);
}

.team-img-wrap.no-photo {
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
}
.team-img-wrap.no-photo svg {
  color: rgba(255,255,255,0.4);
}

.team-card-name {
  margin: 0 0 4px 0;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
}

.team-card-role {
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.team-card-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.team-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  color: var(--gold-primary);
  border: 1px solid rgba(201, 162, 39, 0.4);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  width: 100%;
}

.team-card-cta:hover {
  background: var(--gold-primary);
  color: var(--dark-900);
  border-color: var(--gold-primary);
}

.team-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

.team-carousel-btn:hover {
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  background: rgba(201, 162, 39, 0.1);
}

.team-prev-btn { left: 0; }
.team-next-btn { right: 0; }


/* ============================================================
   CONTACT FORM & ADDITIONAL STYLES
   ============================================================ */
.contact-solutions-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.contact-solution-links {
  margin-top: 30px;
}

.contact-program-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--light-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  transition: all var(--transition-fast);
  text-align: left;
  color: var(--dark-800);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.contact-program-btn:hover {
  background: var(--white);
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: var(--shadow-gold);
  transform: translateX(4px);
}

.contact-program-btn .program-btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-program-btn .program-btn-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-program-btn .program-btn-text strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-program-btn .program-btn-text small {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.contact-program-btn > svg {
  color: var(--light-300);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.contact-program-btn:hover > svg {
  transform: translateX(4px);
  color: var(--gold-primary);
}

/* Contact Form Wrap */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--light-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark-800);
  margin-bottom: 8px;
}

.contact-form-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-700);
}

.form-label span {
  color: var(--gold-primary);
}

.form-input {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--light-200);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--dark-800);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input::placeholder {
  color: var(--light-300);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='rgba(0,0,0,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  cursor: pointer;
}

.form-select option {
  background: var(--white);
  color: var(--dark-800);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  font-size: 0.8rem;
  color: #EF4444;
  display: none;
}

.form-input.is-invalid {
  border-color: #EF4444;
}

.form-input.is-invalid + .form-error {
  display: block;
}

.form-submit-btn {
  margin-top: 10px;
  gap: 10px;
  font-size: 1.05rem;
  height: 54px;
}

.form-wa-note {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: -10px;
}
/* Pagination */
.pagination-controls {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}
.pagination-btn {
  background: #1a1d24;
  color: #fff;
  border: 1px solid rgba(201, 162, 39, 0.2);
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-weight: bold;
}
.pagination-btn.active {
  background: #c9a227;
  color: #000;
  border-color: #c9a227;
}
.pagination-btn:hover:not(.active):not(:disabled) {
  border-color: #c9a227;
  color: #c9a227;
}
.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
