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

:root {
  --navy:       #0a0f1e;
  --navy-mid:   #0f1830;
  --navy-light: #162040;
  --gold:       #e0b84e;
  --gold-light: #f5d06e;
  --gold-pale:  #faecc0;
  --white:      #ffffff;
  --off-white:  #e8edf5;
  --muted:      #8a9ab8;
  --border:     rgba(255,255,255,0.08);
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 32px rgba(0,0,0,0.4);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --font:       'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY HELPERS ──────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-pale) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-sub { margin: 0 auto; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--off-white);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; padding: 14px; font-size: 1rem; }

/* ── NAVBAR ──────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(10,15,30,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
  padding: 10px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #162040 0%, var(--navy) 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 20%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px; height: 400px;
  background: rgba(201,168,76,0.08);
  top: -100px; left: 50%;
  transform: translateX(-50%);
}

.hero-glow-2 {
  width: 400px; height: 300px;
  background: rgba(22,32,64,0.6);
  bottom: 0; right: -100px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

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

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Ticker */
.hero-ticker {
  width: 100%;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 0;
  position: relative;
}

.hero-ticker::before,
.hero-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
}

.hero-ticker::before { left: 0; background: linear-gradient(to right, var(--navy), transparent); }
.hero-ticker::after  { right: 0; background: linear-gradient(to left, var(--navy), transparent); }

.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 500;
}

.ticker-sym { color: var(--white); font-weight: 600; }
.ticker-price { color: var(--muted); }
.ticker-chg.up   { color: #22c55e; }
.ticker-chg.down { color: #ef4444; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: bounce-dot 2s ease-in-out infinite;
}

@keyframes bounce-dot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(12px); opacity: 0.3; }
}

/* ── TRUST STRIP ─────────────────────────────────────────────── */
.trust-strip {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

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

.trust-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-logo {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: 0.04em;
}

.divider { color: var(--border); font-size: 1rem; }

/* ── STATS ───────────────────────────────────────────────────── */
.stats {
  padding: 80px 0;
  background: var(--navy-mid);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-card {
  background: var(--navy-mid);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: background var(--transition);
}

.stat-card:hover { background: var(--navy-light); }

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-unit {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 4px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: auto;
}

/* ── SERVICES ────────────────────────────────────────────────── */
.services {
  padding: 100px 0;
  background: var(--navy);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
}

.service-card.featured {
  background: linear-gradient(145deg, var(--navy-light) 0%, rgba(201,168,76,0.05) 100%);
  border-color: rgba(201,168,76,0.25);
}

.service-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card > p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 20px;
  flex: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition);
  margin-top: auto;
}

.service-link:hover { color: var(--gold-light); }

/* ── ABOUT ───────────────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--navy-mid);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-chart {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  overflow: hidden;
}

.perf-chart { width: 100%; }

.about-cards-small {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.mini-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-val {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.mini-val.gold { color: var(--gold); }

.mini-lbl {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-copy { display: flex; flex-direction: column; gap: 16px; }

.about-copy p {
  font-size: 0.95rem;
  color: var(--muted);
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 8px 0;
}

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

.pillar-icon {
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 6px;
  flex-shrink: 0;
}

.pillar strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.pillar p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* ── PROCESS ─────────────────────────────────────────────────── */
.process {
  padding: 100px 0;
  background: var(--navy);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color var(--transition);
}

.step:hover { border-color: rgba(201,168,76,0.3); }

.step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.step-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step-body p {
  font-size: 0.88rem;
  color: var(--muted);
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  padding: 0 16px;
  margin-top: 48px;
  flex-shrink: 0;
  opacity: 0.5;
}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials {
  padding: 100px 0;
  background: var(--navy-mid);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition);
}

.testi-card:hover { border-color: rgba(201,168,76,0.2); }

.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }

.testi-card > p {
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

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

.contact-info p {
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }

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

.contact-icon {
  font-size: 1.2rem;
  color: var(--gold);
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
  font-size: 0.9rem;
  color: var(--off-white);
}

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

/* Form */
.contact-form {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  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 d='M1 1l5 5 5-5' stroke='%238a9ab8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

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

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

/* Form success */
.form-success {
  text-align: center;
  padding: 40px 0;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.form-success.show { display: flex; }

.success-icon {
  width: 64px; height: 64px;
  background: rgba(34,197,94,0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  color: #22c55e;
}

.form-success h3 {
  font-size: 1.3rem;
  color: var(--white);
}

.form-success p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: #060b16;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
  color: var(--gold);
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-col a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(10,15,30,0.98);
    backdrop-filter: blur(16px);
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.1rem; color: var(--white); }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 100px 0 60px; }
  .hero-content { text-align: center; }
  .hero-title { text-align: center; }
  .hero-title { font-size: 2rem; }
  .hero-sub { font-size: 1rem; margin-left: auto; margin-right: auto; }
  .hero-actions { flex-direction: column; gap: 12px; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-badge { font-size: 0.72rem; padding: 5px 12px; }

  /* Trust strip */
  .trust-strip .container { flex-direction: column; gap: 12px; }
  .trust-logos { gap: 10px; }
  .divider { display: none; }
  .trust-logo { font-size: 0.72rem; }

  /* Stats */
  .stats { padding: 56px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { padding: 28px 20px; }
  .stat-number { font-size: 2.2rem; }

  /* Services */
  .services { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 24px; }

  /* About */
  .about { padding: 72px 0; }
  .about-cards-small { grid-template-columns: repeat(3, 1fr); }
  .about-chart { padding: 16px; }

  /* Process */
  .process { padding: 72px 0; }
  .process-steps { flex-direction: column; gap: 16px; }
  .step-arrow { display: none; }
  .step { padding: 28px 24px; }

  /* Resources */
  .resources { padding: 72px 0; }
  .resources-grid { grid-template-columns: 1fr; }
  .resource-card { padding: 28px 24px; }

  /* FAQ */
  .faq { padding: 72px 0; }
  .faq-question { font-size: 0.95rem; padding: 18px 20px; }
  .faq-answer { padding: 0 20px; font-size: 0.9rem; }
  .faq-item.open .faq-answer { padding-bottom: 18px; }

  /* Contact */
  .contact { padding: 72px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  /* Interactive panel */
  .panel-content { padding: 24px 20px; }
  .tab-btn { font-size: 0.82rem; padding: 14px 10px; }
  .scheduler-widget { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .footer-bottom p { font-size: 0.7rem; }

  /* Section spacing */
  .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Hero */
  .hero { padding: 88px 0 48px; }
  .hero-title { font-size: 1.75rem; line-height: 1.18; }
  .hero-sub { font-size: 0.92rem; max-width: 100%; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .stat-card { padding: 24px 16px; }
  .stat-number { font-size: 1.9rem; }

  /* Section titles */
  .section-title { font-size: 1.5rem; }
  .section-sub { font-size: 0.9rem; }

  /* About mini cards */
  .about-cards-small { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .mini-card { padding: 12px 10px; }
  .mini-val { font-size: 1.1rem; }

  /* Services */
  .service-card { padding: 24px 18px; }

  /* Panel */
  .panel-content { padding: 20px 16px; }
  .custom-radio-card { padding: 14px 16px; }
  .radio-card-title { font-size: 0.88rem; }

  /* Booking form */
  .booking-form { padding-top: 16px; }

  /* Modal */
  .modal-card { padding: 28px 20px; }

  /* Footer */
  .footer-social a { width: 32px; height: 32px; }
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Select option colors for dark backgrounds */
select option {
  background: var(--navy-mid);
  color: var(--white);
}

/* ── TEAM SECTION ────────────────────────────────────────────── */
.team {
  padding: 100px 0;
  background: var(--navy);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
}

.team-avatar-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.2));
  border: 2px solid var(--gold);
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
}

.team-initials {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.team-card h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 6px;
}

.team-role {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.team-credentials {
  font-size: 0.78rem;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 100px;
  display: inline-block;
}

/* ── FAQ SECTION ─────────────────────────────────────────────── */
.faq {
  padding: 100px 0;
  background: var(--navy);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover,
.faq-item.open {
  border-color: rgba(201,168,76,0.25);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 600;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  padding: 0 28px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  padding-bottom: 24px;
}

/* ── RESOURCES SECTION ───────────────────────────────────────── */
.resources {
  padding: 100px 0;
  background: var(--navy-mid);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.resource-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform var(--transition), border-color var(--transition);
}

.resource-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.25);
}

.resource-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
  margin-bottom: 20px;
}

.resource-badge.dataset {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
}

.resource-badge.guide {
  background: rgba(59,130,246,0.15);
  color: #60a5fa;
}

.resource-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.resource-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
  flex: 1;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
  border-radius: 6px;
}

/* ── INTERACTIVE PANEL & TABS ────────────────────────────────── */
.interactive-panel {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.panel-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid var(--border);
}

.tab-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 18px;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}

.tab-btn:hover {
  color: var(--white);
}

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

.panel-content {
  display: none;
  padding: 40px;
}

.panel-content.show {
  display: block;
}

/* ── ASSESSMENT WIZARD ───────────────────────────────────────── */
.wizard-header {
  margin-bottom: 32px;
}

.wizard-header h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}

.progress-bar-wrapper {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  margin-bottom: 8px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 25%;
  background: var(--gold);
  transition: width 0.3s ease;
}

.step-counter {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wizard-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wizard-step {
  display: none;
}

.wizard-step.show {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.custom-radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.custom-radio-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  transition: border-color var(--transition), background var(--transition);
}

.custom-radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.custom-radio-card:hover {
  background: rgba(255,255,255,0.05);
}

.custom-radio-card:has(input[type="radio"]:checked) {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.radio-card-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}

.custom-radio-card:has(input[type="radio"]:checked) .radio-card-title {
  color: var(--gold-light);
}

.radio-card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

.slider-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slider-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
}

.slider-label-row strong {
  color: var(--gold-light);
  font-size: 1rem;
}

.slider-group input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  outline: none;
}

.slider-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  transition: transform 0.1s;
}

.slider-group input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
}

.checkbox-label input {
  accent-color: var(--gold);
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.wizard-result {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.result-success-icon {
  width: 56px; height: 56px;
  background: rgba(34,197,94,0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #22c55e;
  margin-bottom: 20px;
}

.wizard-result h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}

.result-intro {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.result-model-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  width: 100%;
  margin-bottom: 24px;
  text-align: left;
}

.model-allocation-bars {
  height: 24px;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  margin-bottom: 20px;
}

.allocation-bar {
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  transition: width 0.3s;
}

#barStatArb { background: var(--gold); }
#barTrend { background: var(--gold-light); }
#barCarry { background: var(--gold-pale); }

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

.result-metrics li {
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding-bottom: 6px;
}

.result-metrics li strong {
  color: var(--white);
}

.result-metrics li span {
  color: var(--gold-light);
  font-weight: 600;
}

.result-next-steps {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ── CONSULTATION SCHEDULER WIDGET ───────────────────────────── */
.scheduler-header {
  margin-bottom: 24px;
}

.scheduler-header h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}

.scheduler-header p {
  font-size: 0.88rem;
  color: var(--muted);
}

.scheduler-widget {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.calendar-wrapper {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.calendar-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.calendar-nav-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--white);
  width: 28px; height: 28px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--transition);
}

.calendar-nav-btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.05);
}

.calendar-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.calendar-header-row h4 {
  font-size: 0.95rem;
  color: var(--white);
}

.calendar-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 8px;
}

.calendar-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day-btn {
  background: none;
  border: none;
  color: var(--white);
  height: 32px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.82rem;
  display: grid;
  place-items: center;
  transition: background var(--transition), color var(--transition);
}

.calendar-day-btn:hover:not(.disabled) {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
}

.calendar-day-btn.disabled {
  color: rgba(255,255,255,0.15);
  cursor: not-allowed;
}

.calendar-day-btn.today {
  border: 1px solid var(--gold);
}

.calendar-day-btn.selected {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}

.time-slots-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.time-slots-wrapper h4 {
  font-size: 0.9rem;
  color: var(--white);
}

.time-slots-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.slot-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--off-white);
  padding: 10px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}

.slot-btn:hover:not(.disabled) {
  border-color: rgba(201,168,76,0.3);
  background: rgba(255,255,255,0.06);
}

.slot-btn.selected {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.slot-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.selected-time-display {
  font-size: 0.82rem;
  color: var(--gold-light);
  font-style: italic;
  margin-top: 4px;
}

.booking-form {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

.booking-success h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}

.booking-success p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.booking-summary-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  width: 100%;
  margin-bottom: 24px;
  text-align: left;
}

.booking-summary-box p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--off-white);
}

.booking-summary-box p:last-child {
  margin-bottom: 0;
}

.booking-summary-box strong {
  color: var(--gold-light);
}

/* ── NEWSLETTER BOX ──────────────────────────────────────────── */
.newsletter-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 40px;
}

.newsletter-box h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.newsletter-box p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--white);
  font-size: 0.85rem;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-form .btn {
  padding: 10px 16px;
  font-size: 0.85rem;
  border-radius: 6px;
}

.newsletter-success {
  display: none;
  font-size: 0.82rem;
  color: #22c55e;
  margin-top: 10px;
  align-items: center;
  gap: 6px;
}

/* ── LEAD CAPTURE MODAL ─────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,7,15,0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 24px;
}

.modal-overlay.show {
  display: grid;
}

.modal-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 40px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--white);
}

.modal-header {
  margin-bottom: 24px;
  text-align: center;
}

.modal-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.modal-header h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}

.modal-header p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
}

.modal-success h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}

.modal-success p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

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