/* ================================================
   FINQUEST CAPITAL GROUP — styles.css
   ================================================
   HOW TO EDIT:
   - Colors     → Change values in :root {} at the top
   - Fonts      → Search "font-family" or update the Google Fonts link in index.html
   - Spacing    → Each section uses padding: 6rem 0 — adjust as needed
   - Breakpoints→ Mobile styles at the bottom (max-width: 768px / 480px)
   ================================================ */

/* ------------------------------------------------
   CSS VARIABLES — Your brand tokens
------------------------------------------------ */
:root {
  /* Brand colors */
  --gold-light:   #172C54;   /* Hover state for gold buttons              */
  --gold:         #2e72b69a;   /* Primary accent — buttons, labels, icons  */
  --gold-light:   #FAFAFA;   /* Hover state for gold buttons              */
  --gold-dim:     ##2e72b69a;   /* Darker gold for borders on hover          */

  /* Background layers (light → slightly tinted) */
  --bg-base:      #FAFAFA;   /* Main page background                      */
  --bg-alt:       #F2F4F7;   /* Alternating section background            */
  --bg-card:      #0e467e9a;   /* Card / panel backgrounds                  */
  --bg-deep:      #DDE3ED;   /* Deepest background layer                  */

  /* Text */
  --text:         #172C54;   /* Primary text — navy                       */
  --text-muted:   #081f48;   /* Secondary / body text                     */

  /* UI */
  --border:       rgba(23, 44, 84, 0.12);
  --shadow:       0 2px 24px rgba(23, 44, 84, 0.08);
  --radius:       4px;
  --max-w:        1200px;
}

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

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

body {
  background: var(--bg-base);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* ------------------------------------------------
   TYPOGRAPHY HELPERS
------------------------------------------------ */
.display {
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-weight: 300;
  line-height: 1.1;
}

em,
.gold {
  color: var(--gold);
  font-style: normal;
}

/* ------------------------------------------------
   LAYOUT HELPERS
------------------------------------------------ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ------------------------------------------------
   BUTTONS
------------------------------------------------ */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gold-dim);
  color: var(--text);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(23, 44, 84, 0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ------------------------------------------------
   NAVIGATION
------------------------------------------------ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  background: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.nav-cta {
  margin-left: 2rem;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: all 0.3s;
}

/* ------------------------------------------------
   MOBILE MENU
------------------------------------------------ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 250, 250, 0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}

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

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  background: none;
  border: none;
  color: var(--text);
}

/* ------------------------------------------------
   HERO
------------------------------------------------ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(23, 44, 84, 0.04) 0%, transparent 60%),
    linear-gradient(160deg, #FAFAFA 0%, #F0F3F8 50%, #FAFAFA 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 44, 84, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 44, 84, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 80%);
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow span {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;  font-size: clamp(2rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.7rem;
  color: var(--text);
}

.hero-subtitle {
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1.8rem;
  text-transform: uppercase;
}

.hero-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2.8rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat-value {
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-value sup {
  font-size: 1rem;
  vertical-align: super;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ------------------------------------------------
   ABOUT
------------------------------------------------ */
#about {
  background: var(--bg-alt);
}

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

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid var(--border);
  padding: 0.8rem 1.4rem;
  margin-bottom: 2rem;
  border-radius: var(--radius);
  background: var(--bg-base);
}

.about-badge-icon {
  font-size: 1.2rem;
  color: var(--gold);
}

.about-badge-text {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--text);
}

.about-facts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-fact {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.about-fact-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-fact-title {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
  color: var(--text);
}

.about-fact-body {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ------------------------------------------------
   PILLARS / SERVICES
------------------------------------------------ */
#pillars {
  background: var(--bg-base);
}

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

.pillar-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.pillar-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(23, 44, 84, 0.08);
  line-height: 1;
  margin-bottom: 1rem;
}

.pillar-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.pillar-title {
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text);
}

.pillar-body {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ------------------------------------------------
   HOW IT WORKS / PROCESS
------------------------------------------------ */
#how {
  background: var(--bg-alt);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.step-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-base);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow);
}

.step-content {
  padding-top: 0.8rem;
}

.step-title {
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.step-body {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ------------------------------------------------
   ECOSYSTEM
------------------------------------------------ */
#ecosystem {
  background: var(--bg-base);
}

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

.eco-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.eco-card:hover {
  border-color: var(--gold-dim);
  box-shadow: var(--shadow);
}

.eco-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.eco-title {
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.eco-body {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.eco-link {
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}

.eco-link:hover {
  gap: 0.8rem;
}

/* ------------------------------------------------
   TOKEN
------------------------------------------------ */
#token {
  background: var(--bg-alt);
}

.token-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.token-spec {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.4rem;
  box-shadow: var(--shadow);
}

.token-spec-title {
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.token-spec h3 {
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.token-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.87rem;
  color: var(--text-muted);
}

.token-feature:last-child {
  border-bottom: none;
}

.token-feature::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
  margin-top: 5px;
}

.vasp-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.4rem 1rem;
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

/* ------------------------------------------------
   JURISDICTIONS
------------------------------------------------ */
#jurisdictions {
  background: var(--bg-base);
}

.jurisdictions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}

.juris-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.juris-card:hover {
  border-color: var(--gold-dim);
  box-shadow: var(--shadow);
}

.juris-flag {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.juris-country {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.juris-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ------------------------------------------------
   PARTNERS
------------------------------------------------ */
#partners {
  background: var(--bg-alt);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.partner-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow);
}

.partner-card:hover {
  border-color: var(--gold-dim);
}

.partner-label {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.partner-name {
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.partner-body {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ------------------------------------------------
   TEAM
------------------------------------------------ */
#team {
  background: var(--bg-base);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.team-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  border-color: var(--gold-dim);
  box-shadow: var(--shadow);
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.team-role {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.team-bio {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ------------------------------------------------
   CONTACT / CTA
------------------------------------------------ */
#contact {
  background: var(--bg-alt);
  text-align: center;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}

.contact-content {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.contact-title {
  font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.contact-body {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contact-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ------------------------------------------------
   FOOTER
------------------------------------------------ */
footer {
  background: var(--text);     /* Deep navy footer */
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-brand-body {
  font-size: 0.82rem;
  color: rgba(250, 250, 250, 0.55);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.75rem;
  color: rgba(250, 250, 250, 0.4);
}

.footer-col-title {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: rgba(250, 250, 250, 0.9);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(250, 250, 250, 0.5);
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 250, 250, 0.1);
  font-size: 0.75rem;
  color: rgba(250, 250, 250, 0.35);
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ------------------------------------------------
   RESPONSIVE — Tablet (≤ 1024px)
------------------------------------------------ */
@media (max-width: 1024px) {
  .team-grid            { grid-template-columns: repeat(2, 1fr); }
  .partners-grid        { grid-template-columns: repeat(2, 1fr); }
  .jurisdictions-grid   { grid-template-columns: repeat(3, 1fr); }
  .footer-top           { grid-template-columns: 1fr 1fr; }
}

/* ------------------------------------------------
   RESPONSIVE — Mobile (≤ 768px)
------------------------------------------------ */
@media (max-width: 768px) {
  .nav-links,
  .nav-cta              { display: none; }
  .nav-toggle           { display: flex; }

  .about-grid,
  .token-grid           { grid-template-columns: 1fr; gap: 2.5rem; }

  .pillars-grid,
  .ecosystem-grid       { grid-template-columns: 1fr; }
  .jurisdictions-grid   { grid-template-columns: repeat(2, 1fr); }
  .team-grid            { grid-template-columns: 1fr; }
  .partners-grid        { grid-template-columns: 1fr; }
  .footer-top           { grid-template-columns: 1fr; }
  .hero-stats           { gap: 1.5rem; }
  .section              { padding: 4rem 0; }
}

/* ------------------------------------------------
   RESPONSIVE — Small mobile (≤ 480px)
------------------------------------------------ */
@media (max-width: 480px) {
  .hero-title           { font-size: 2.6rem; }
  .hero-cta             { flex-direction: column; }
  .jurisdictions-grid   { grid-template-columns: 1fr 1fr; }
}

/* ── BABY BLUE GRADIENT ATMOSPHERE ── */
body {
  background: linear-gradient(160deg, #FAFAFA 0%, #EEF4FC 35%, #F0F6FF 65%, #FAFAFA 100%) fixed;
}

.hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(46,114,182,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(46,114,182,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(46,114,182,0.05) 0%, transparent 70%);
}

.hero-bg::after {
  background-image:
    linear-gradient(rgba(46,114,182,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,114,182,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* ── DROPDOWN MENU ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(250,250,250,0.98);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  min-width: 220px;
  padding: 0.5rem 0;
  box-shadow: 0 8px 32px rgba(23,44,84,0.10);
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.nav-dropdown .dropdown-menu li a {
  display: block;
  padding: 0.75rem 1.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown .dropdown-menu li a:hover {
  color: var(--gold);
  background: rgba(46,114,182,0.04);
}

/* ── ACCORDION STEPS ── */
.step-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: color 0.2s;
}

.step-toggle:hover {
  color: var(--gold);
}

.step-arrow {
  font-size: 0.75rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  margin-left: 1rem;
  flex-shrink: 0;
}

.step-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.3s ease;
  opacity: 0;
  margin-top: 0;
}

.step-body.open {
  max-height: 200px;
  opacity: 1;
  margin-top: 0.8rem;
}

.step-arrow.open {
  transform: rotate(180deg);
}
