/* ============================================================
   LORD OF METALS - Global Stylesheet
   The Sovereign Standard in Precious Metal Digitization
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Primary Brand */
  --black: #000000;
  --deep-navy: #0A0E14;
  --navy: #0F1923;
  --navy-mid: #141A22;
  --navy-light: #1A2030;
  --navy-border: #1E2530;

  /* Gold Spectrum */
  --gold: #D4AF37;
  --gold-light: #E8CC6A;
  --gold-dark: #A88B2A;
  --gold-glow: rgba(212, 175, 55, 0.15);

  /* Platinum Spectrum */
  --platinum: #E5E4E2;
  --platinum-light: #F0EFED;
  --platinum-dark: #B0ADA9;
  --platinum-glow: rgba(229, 228, 226, 0.10);

  /* Accent */
  --accent: #1A6B4F;
  --accent-hover: #145A42;
  --royal: #6C5CE7;

  /* Status */
  --positive: #0D7C3F;
  --negative: #E94560;
  --warning: #FFC107;

  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: #D1D5DB;
  --text-muted: #9CA3AF;
  --text-dim: #6B7280;

  /* Spacing & Layout */
  --header-height: 72px;
  --section-padding: 100px;
  --section-padding-sm: 64px;
  --max-width: 1200px;

  /* Borders & Radius */
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 20px rgba(212,175,55,0.2);
  --shadow-platinum: 0 4px 20px rgba(229,228,226,0.1);
  --shadow-header: 0 2px 8px rgba(0,0,0,0.3);

  /* Transitions */
  --transition: 0.25s ease;
  --transition-slow: 0.5s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color-scheme: dark;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--deep-navy);
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold-light); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section--dark {
  background: var(--black);
}

.section--navy {
  background: var(--navy);
}

.section--gradient {
  background: linear-gradient(180deg, var(--deep-navy) 0%, var(--navy) 100%);
}

.section--gold-accent {
  border-top: 1px solid var(--gold-glow);
  border-bottom: 1px solid var(--gold-glow);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
  padding: 6px 16px;
  background: var(--gold-glow);
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,0.2);
}

.section-label--platinum {
  color: var(--platinum);
  background: var(--platinum-glow);
  border-color: rgba(229,228,226,0.15);
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

.text-gold { color: var(--gold); }
.text-platinum { color: var(--platinum); }
.text-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--platinum) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mono {
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
}

/* --- Grids --- */
.grid--2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid--3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid--4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid--5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,175,55,0.35);
}

.btn--platinum {
  background: linear-gradient(135deg, var(--platinum) 0%, var(--platinum-dark) 100%);
  color: var(--black);
  box-shadow: var(--shadow-platinum);
}
.btn--platinum:hover {
  background: linear-gradient(135deg, var(--platinum-light) 0%, var(--platinum) 100%);
  color: var(--black);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold-glow);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn--outline-platinum {
  background: transparent;
  border: 1px solid var(--platinum-dark);
  color: var(--platinum);
}
.btn--outline-platinum:hover {
  background: var(--platinum-glow);
  color: var(--platinum-light);
  transform: translateY(-2px);
}

.btn--large {
  padding: 18px 36px;
  font-size: 1.0625rem;
}

.btn--arrow::after {
  content: '\2192';
  transition: transform var(--transition);
}
.btn--arrow:hover::after {
  transform: translateX(4px);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.08);
  transition: all var(--transition);
}

.header--scrolled {
  background: rgba(10, 14, 20, 0.95);
  box-shadow: var(--shadow-header);
  border-bottom-color: rgba(212,175,55,0.15);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo__icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--platinum) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--black);
  letter-spacing: -0.02em;
}

.logo__text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.logo__badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-glow);
  padding: 3px 8px;
  border-radius: 10px;
  letter-spacing: 0.05em;
  border: 1px solid rgba(212,175,55,0.2);
}

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

.nav a,
.nav a:link,
.nav a:visited {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all var(--transition);
  text-decoration: none;
}
.nav a:hover,
.nav a.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--deep-navy);
  z-index: 999;
  padding: 32px 24px;
}

.mobile-nav.open {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a,
.mobile-nav a:link,
.mobile-nav a:visited {
  color: var(--text-secondary);
  font-size: 1.125rem;
  font-weight: 500;
  padding: 16px;
  border-radius: var(--border-radius);
  transition: all var(--transition);
  text-decoration: none;
  border-bottom: 1px solid var(--navy-border);
}
.mobile-nav a:hover { background: var(--navy-light); color: var(--text-primary); }

/* --- Hero --- */
.hero {
  padding: calc(var(--header-height) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(229,228,226,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__bismillah {
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.hero__title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 800px;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.hero__verse {
  font-style: italic;
  color: var(--text-dim);
  font-size: 0.9375rem;
  border-left: 2px solid var(--gold-dark);
  padding-left: 16px;
  max-width: 480px;
  line-height: 1.6;
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--navy);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 24px 0;
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.trust-bar__icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
}

.trust-bar__icon--gold {
  background: var(--gold-glow);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.2);
}

.trust-bar__icon--plat {
  background: var(--platinum-glow);
  color: var(--platinum);
  border: 1px solid rgba(229,228,226,0.15);
}

.trust-bar__icon--tech {
  background: rgba(108,92,231,0.1);
  color: var(--royal);
  border: 1px solid rgba(108,92,231,0.2);
}

/* --- Cards --- */
.card {
  background: var(--navy);
  border: 1px solid var(--navy-border);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.card:hover {
  border-color: rgba(212,175,55,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card__icon--gold {
  background: var(--gold-glow);
  border: 1px solid rgba(212,175,55,0.2);
}

.card__icon--platinum {
  background: var(--platinum-glow);
  border: 1px solid rgba(229,228,226,0.15);
}

.card__icon--green {
  background: rgba(26,107,79,0.15);
  border: 1px solid rgba(26,107,79,0.25);
}

.card__icon--royal {
  background: rgba(108,92,231,0.1);
  border: 1px solid rgba(108,92,231,0.2);
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card__text {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.card--featured {
  border-color: rgba(212,175,55,0.3);
  background: linear-gradient(180deg, var(--navy) 0%, rgba(212,175,55,0.03) 100%);
}

/* --- Metal Card (special) --- */
.metal-card {
  background: var(--navy);
  border: 1px solid var(--navy-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.metal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.metal-card__header {
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.metal-card__symbol {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}

.metal-card__body {
  padding: 20px 24px 24px;
}

.metal-card__name {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.metal-card__number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.metal-card__desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.metal-card__bar {
  height: 4px;
  width: 100%;
}

/* Metal-specific colors */
.metal--gold .metal-card__symbol { background: var(--gold-glow); color: var(--gold); border: 1px solid rgba(212,175,55,0.2); }
.metal--gold .metal-card__bar { background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light)); }
.metal--gold:hover { border-color: rgba(212,175,55,0.3); }

.metal--platinum .metal-card__symbol { background: var(--platinum-glow); color: var(--platinum); border: 1px solid rgba(229,228,226,0.15); }
.metal--platinum .metal-card__bar { background: linear-gradient(90deg, var(--platinum-dark), var(--platinum), var(--platinum-light)); }
.metal--platinum:hover { border-color: rgba(229,228,226,0.2); }

.metal--palladium .metal-card__symbol { background: rgba(108,92,231,0.1); color: #A78BFA; border: 1px solid rgba(108,92,231,0.2); }
.metal--palladium .metal-card__bar { background: linear-gradient(90deg, #7C3AED, #A78BFA, #C4B5FD); }
.metal--palladium:hover { border-color: rgba(167,139,250,0.3); }

.metal--silver .metal-card__symbol { background: rgba(156,163,175,0.1); color: #9CA3AF; border: 1px solid rgba(156,163,175,0.2); }
.metal--silver .metal-card__bar { background: linear-gradient(90deg, #6B7280, #9CA3AF, #D1D5DB); }
.metal--silver:hover { border-color: rgba(156,163,175,0.3); }

.metal--copper .metal-card__symbol { background: rgba(234,88,12,0.1); color: #F97316; border: 1px solid rgba(234,88,12,0.2); }
.metal--copper .metal-card__bar { background: linear-gradient(90deg, #C2410C, #F97316, #FB923C); }
.metal--copper:hover { border-color: rgba(249,115,22,0.3); }

/* --- Stats --- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  background: var(--navy);
  border: 1px solid var(--navy-border);
  border-radius: var(--border-radius-lg);
  padding: 28px 24px;
  text-align: center;
}

.stat__number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat__number--gold { color: var(--gold); }
.stat__number--platinum { color: var(--platinum); }

.stat__label {
  font-size: 0.8125rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* --- App Showcase --- */
.app-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.app-showcase--reverse {
  direction: rtl;
}
.app-showcase--reverse > * {
  direction: ltr;
}

.app-showcase__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.app-showcase__icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.app-showcase__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-showcase__name {
  font-size: 2rem;
  font-weight: 800;
}

.app-showcase__desc {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.app-showcase__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-showcase__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.app-showcase__features li::before {
  content: '\2713';
  font-weight: 700;
  font-size: 0.75rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.app-showcase--gold .app-showcase__features li::before {
  color: var(--gold);
  background: var(--gold-glow);
}

.app-showcase--platinum .app-showcase__features li::before {
  color: var(--platinum);
  background: var(--platinum-glow);
}

.app-showcase__screens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  perspective: 1000px;
}

.app-showcase__screen {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--navy-border);
  transition: all 0.4s ease;
}

.app-showcase__screen:nth-child(2) {
  transform: scale(1.05);
  z-index: 1;
}

.app-showcase__screen:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.app-showcase__screen:nth-child(2):hover {
  transform: translateY(-8px) scale(1.07);
}

.app-showcase__screen img {
  width: 100%;
  height: auto;
}

/* --- Debit Cards Display --- */
.debit-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.debit-card {
  max-width: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
  position: relative;
}

.debit-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.debit-card img {
  width: 100%;
  height: auto;
}

.debit-card__label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 6px;
  backdrop-filter: blur(10px);
}

.debit-card__label--gold {
  background: rgba(212,175,55,0.2);
  color: var(--gold-light);
  border: 1px solid rgba(212,175,55,0.3);
}

.debit-card__label--platinum {
  background: rgba(229,228,226,0.2);
  color: var(--platinum-light);
  border: 1px solid rgba(229,228,226,0.2);
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* --- Pillars / Value Props --- */
.pillar {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--navy-border);
}

.pillar:last-child { border-bottom: none; }

.pillar__number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  width: 48px;
}

.pillar__content h4 {
  margin-bottom: 8px;
}

.pillar__content p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--platinum) 100%);
}

.timeline__step {
  position: relative;
  padding-left: 72px;
  padding-bottom: 48px;
}

.timeline__step:last-child { padding-bottom: 0; }

.timeline__marker {
  position: absolute;
  left: 12px;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--deep-navy);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline__marker::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

.timeline__step h4 {
  margin-bottom: 8px;
}

.timeline__step p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* --- Callout --- */
.callout {
  background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, rgba(229,228,226,0.03) 100%);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--border-radius-lg);
  padding: 40px;
}

.callout--center { text-align: center; }

.callout__title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.callout__text {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 640px;
  margin: 0 auto 24px;
}

/* --- Contact Form --- */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9375rem;
  font-family: inherit;
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239CA3AF' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
  cursor: pointer;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-dim);
}

/* --- Custom Select Dropdown --- */
.custom-select {
  position: relative;
  width: 100%;
  user-select: none;
}

.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9375rem;
  font-family: inherit;
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.custom-select__trigger:hover {
  border-color: rgba(255,255,255,0.12);
}

.custom-select.open .custom-select__trigger {
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.04);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.custom-select__value {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select__value--placeholder {
  color: var(--text-dim);
}

.custom-select__arrow {
  flex-shrink: 0;
  color: var(--text-dim);
  transition: transform 0.25s ease;
  margin-left: 12px;
}

.custom-select.open .custom-select__arrow {
  transform: rotate(180deg);
  color: var(--text-secondary);
}

.custom-select__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  border-top: 1px solid rgba(212,175,55,0.2);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--navy-border) transparent;
}

.custom-select__dropdown::-webkit-scrollbar {
  width: 6px;
}

.custom-select__dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.custom-select__dropdown::-webkit-scrollbar-thumb {
  background: var(--navy-border);
  border-radius: 3px;
}

.custom-select.open .custom-select__dropdown {
  display: block;
  animation: selectSlideDown 0.2s ease;
}

@keyframes selectSlideDown {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.custom-select__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  border-left: 2px solid transparent;
}

.custom-select__option:hover {
  background: rgba(255,255,255,0.04);
  color: var(--text-primary);
}

.custom-select__option--selected {
  border-left-color: var(--gold);
  color: var(--text-primary);
  background: rgba(255,255,255,0.02);
}

.custom-select__option--selected::after {
  content: '\2713';
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
}

.custom-select__option--dim {
  color: var(--text-dim);
  font-style: italic;
}

.custom-select__option--dim:hover {
  color: var(--text-muted);
  background: rgba(255,255,255,0.02);
}

.custom-select__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.custom-select__divider {
  height: 1px;
  background: var(--navy-border);
  margin: 4px 12px;
}

.custom-select__option:first-child {
  border-radius: 0;
}

.custom-select__option:last-child {
  border-radius: 0 0 calc(var(--border-radius) - 1px) calc(var(--border-radius) - 1px);
}

/* Error state for custom select */
.form-group.has-error .custom-select__trigger {
  border-color: var(--negative);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

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

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--negative);
}

.form-error {
  font-size: 0.8125rem;
  color: var(--negative);
  margin-top: 4px;
  display: none;
}

.form-group.has-error .form-error { display: block; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-check input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--gold);
}

.form-check label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.show { display: block; }
.form-success h3 { color: var(--gold); margin-bottom: 12px; }

/* --- Contact Info --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--gold-glow);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.contact-info__value {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* --- Footer --- */
.footer {
  background: var(--black);
  border-top: 1px solid var(--navy-border);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand p {
  color: var(--text-dim);
  font-size: 0.875rem;
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.6;
}

.footer__heading {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: var(--text-dim);
  font-size: 0.875rem;
  transition: color var(--transition);
  text-decoration: none;
}

.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid var(--navy-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.8125rem;
  color: var(--text-dim);
  text-decoration: none;
}
.footer__legal a:hover { color: var(--gold); }

/* --- Page Header --- */
.page-header {
  padding: calc(var(--header-height) + 48px) 0 48px;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-border);
  text-align: center;
}

.page-header h1 {
  margin-bottom: 12px;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto;
}

/* --- Tabs --- */
.tabs {
  display: flex;
  gap: 4px;
  background: var(--navy);
  border-radius: var(--border-radius);
  padding: 4px;
  border: 1px solid var(--navy-border);
  overflow-x: auto;
}

.tab-btn {
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dim);
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.tab-btn.active {
  background: var(--gold-glow);
  color: var(--gold);
}

.tab-btn:hover:not(.active) {
  color: var(--text-secondary);
  background: rgba(255,255,255,0.03);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* --- Accordion --- */
.accordion__item {
  border-bottom: 1px solid var(--navy-border);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.accordion__trigger:hover { color: var(--text-primary); }

.accordion__trigger::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.accordion__item--open .accordion__trigger::after {
  content: '\2212';
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion__content-inner {
  padding: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* --- Divider --- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--platinum-dark), transparent);
  margin: 0;
  border: none;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--5 { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { gap: 40px; }
  .app-showcase { gap: 40px; }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  .nav { display: none; }
  .hamburger { display: flex; }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 48px) 0 48px;
  }

  .hero__bismillah { font-size: 1.25rem; }
  .hero__title { font-size: 2.5rem; }
  .hero__subtitle { font-size: 1.0625rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }

  .grid--2,
  .grid--3,
  .grid--4,
  .grid--5 { grid-template-columns: 1fr; }

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

  .two-col { grid-template-columns: 1fr; }

  .app-showcase { grid-template-columns: 1fr; }
  .app-showcase--reverse { direction: ltr; }

  .app-showcase__screens {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .debit-cards { gap: 16px; }
  .debit-card { max-width: 320px; }

  .trust-bar .container { gap: 24px; }
  .trust-bar__item { font-size: 0.6875rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }

  .tabs { overflow-x: auto; }
  .tab-btn { font-size: 0.8125rem; padding: 8px 14px; }

  .callout { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }

  .stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat { padding: 20px 16px; }
  .stat__number { font-size: 1.75rem; }

  .app-showcase__screens { grid-template-columns: repeat(3, 1fr); gap: 6px; }

  .section-header { margin-bottom: 40px; }
}
