/* ============================================
   JONATHAN KLAUSNER – PRIVATE WEALTH ADVISORY
   Premium Luxury Stylesheet
   ============================================ */

/* ---------- TOKENS ---------- */
:root {
  --black:       #050505;
  --charcoal:    #0f0f0f;
  --dark:        #141414;
  --navy:        #0f172a;
  --mid:         #1a1a1a;
  --border:      #262626;
  --gold:        #F7931A; /* Bitcoin Orange */
  --gold-light:  #f9a84d;
  --gold-muted:  #a66311;
  --emerald:     #10B981;
  --ivory:       #ffffff;
  --cream:       #f8fafc;
  --warm-white:  #f1f5f9;
  --text-primary:   #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted:     #94a3b8;
  --serif:   'Inter', system-ui, sans-serif; /* Forcing sans everywhere */
  --sans:    'Inter', system-ui, sans-serif;
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--text-primary);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--gold-muted); }

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- UTILITIES ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ---------- SECTION COMMON ---------- */
.section {
  padding: 80px 0;
  position: relative;
}
.dark-section {
  background: var(--charcoal);
}
.section-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.section-label.light { color: var(--gold-light); }
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.section-title.light { color: var(--warm-white); }
.section-header {
  margin-bottom: 4rem;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- BUTTONS ---------- */
@keyframes shimmer {
  0% { transform: translateX(-150%) skewX(-20deg); }
  15%, 100% { transform: translateX(250%) skewX(-20deg); }
}
.shimmer-btn {
  position: relative;
  overflow: hidden;
}
.shimmer-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(247, 147, 26, 0.5) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-150%) skewX(-20deg);
  animation: shimmer 4s infinite;
  pointer-events: none;
}
.btn-primary {
  display: inline-block;
  padding: 0.95rem 2.4rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--black);
}
.btn-primary.large {
  padding: 1.1rem 3rem;
  font-size: 0.75rem;
}
.btn-ghost {
  display: inline-block;
  padding: 0.95rem 2rem;
  color: var(--text-secondary);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn-ghost:hover {
  color: var(--gold-light);
  border-color: var(--gold-muted);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.6rem 0;
  transition: background 0.5s var(--ease), padding 0.4s var(--ease), border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.1rem 0;
  border-color: var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.logo-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links .nav-cta {
  color: var(--gold);
  border: 1px solid var(--gold-muted);
  padding: 0.55rem 1.3rem;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}
.nav-links .nav-cta-glow {
  box-shadow: 0 0 12px rgba(247, 147, 26, 0.5);
  animation: pulse-glow 2s infinite alternate;
}
@keyframes pulse-glow {
  0% { box-shadow: 0 0 8px rgba(247, 147, 26, 0.3); }
  100% { box-shadow: 0 0 18px rgba(247, 147, 26, 0.8); }
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-bottom: 3rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(184,151,90,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 30%, rgba(184,151,90,0.04) 0%, transparent 60%),
    linear-gradient(160deg, #0d0d0d 0%, #111010 40%, #0f0e0c 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(184,151,90,0.025) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(184,151,90,0.02) 80px);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0) 60%, rgba(10,10,10,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 7rem 2rem 2rem;
}

/* HERO SPLIT */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* HERO CARD */
.hero-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-card-eyebrow {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.hero-card-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.hero-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}
.hero-card-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.hcl-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--gold);
  margin-top: 2px;
}
.hcl-icon svg { width: 100%; height: 100%; }
.hero-card-list strong {
  display: block;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 0.2rem;
}
.hero-card-list span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.hero-card-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-muted);
  padding: 0.75rem 1.2rem;
  transition: background 0.3s, color 0.3s;
  margin-bottom: 0.8rem;
}
.hero-card-cta:hover { background: var(--gold); color: var(--black); }
.hero-card-cta svg { width: 16px; height: 16px; }
.hero-card-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* HERO MAIN */
.hero-main {
  padding-left: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-portrait {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-muted);
  margin-bottom: 1.5rem;
  filter: grayscale(100%) contrast(1.1);
}
.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.07;
  color: var(--ivory);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.hero-feature {
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: border-color 0.3s, color 0.3s;
}
.hero-feature:hover { border-color: var(--gold-muted); color: var(--gold-light); }
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   OVERVIEW GRID
   ============================================ */
.overview { background: var(--black); }
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.overview-card {
  background: var(--black);
  padding: 2.2rem 1.8rem;
  transition: background 0.3s;
}
.overview-card:hover { background: rgba(184,151,90,0.03); }
.overview-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.7rem;
}
.overview-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.benefit-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 2.2rem 1.8rem;
  transition: border-color 0.4s, background 0.4s;
}
.benefit-card:hover {
  border-color: var(--gold-muted);
  background: rgba(184,151,90,0.04);
}
.benefit-icon {
  width: 30px;
  height: 30px;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.benefit-icon svg { width: 100%; height: 100%; }
.benefit-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 0.7rem;
}
.benefit-card p {
  font-size: 0.85rem;
  color: rgba(250,247,242,0.5);
  line-height: 1.75;
}

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--black); }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.about-stat-block {
  background: var(--dark);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.about-stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.about-portrait {
  display: none;
}
.about-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.about-text .btn-primary { margin-top: 0.8rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--charcoal); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 2rem 1.8rem;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: var(--gold-muted); }
.t-quote {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.t-name {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--black); }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
}
.faq-list { display: block; }
.faq-item {
  border-bottom: 1px solid var(--border);
  transform: translateZ(0);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.3rem 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ivory);
  text-align: left;
  gap: 1rem;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--gold-light); }
.faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold-muted);
  transition: transform 0.35s var(--ease), color 0.3s;
}
.faq-arrow svg { width: 100%; height: 100%; }
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); color: var(--gold); }
.faq-a {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  position: relative;
  width: 100%;
  transition: max-height 0.4s var(--ease), opacity 0.4s var(--ease);
}
.faq-item.open .faq-a { 
  max-height: 500px;
  opacity: 1;
}
.faq-a p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
  padding-bottom: 1.3rem;
}
.faq-link {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
  padding-bottom: 1.3rem;
  transition: opacity 0.2s;
}
.faq-link:hover { opacity: 0.7; }

/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy { background: var(--black); }
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.philosophy-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.philosophy-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.pillar {
  padding: 2rem;
  border: 1px solid var(--border);
  transition: border-color 0.4s, background 0.4s;
}
.pillar:hover {
  border-color: var(--gold-muted);
  background: rgba(184,151,90,0.03);
}
.pillar-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.pillar-icon svg { width: 100%; height: 100%; }
.pillar h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
}
.pillar p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--charcoal);
  padding: 2.5rem 2rem;
  transition: background 0.4s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease);
}
.service-card:hover { background: var(--mid); }
.service-card:hover::after { transform: scaleX(1); }
.service-number {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gold-muted);
  margin-bottom: 1.2rem;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================
   EXPERIENCE
   ============================================ */
.experience { background: var(--black); }
.experience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.experience-statement p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.credentials-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.credential-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.credential-number {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.credential-label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.professional-portrait {
  width: 100%;
  height: auto;
  border-radius: 6px;
  filter: grayscale(100%) contrast(1.1);
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
}
.experience-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-muted), transparent);
}
.timeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--black);
  margin-top: 4px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-content h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.3rem;
}
.timeline-role {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.timeline-period {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}
.timeline-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================
   CLIENT SECTION
   ============================================ */
.client-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.client-text p {
  color: rgba(250,247,242,0.65);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.3rem;
}
.client-profiles {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.client-profile {
  padding: 1.8rem 2rem;
  border: 1px solid rgba(184,151,90,0.15);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.4s, background 0.4s;
}
.client-profile:hover {
  border-color: rgba(184,151,90,0.35);
  background: rgba(184,151,90,0.04);
}
.client-profile h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 0.5rem;
}
.client-profile p {
  font-size: 0.85rem;
  color: rgba(250,247,242,0.5);
  line-height: 1.75;
}

/* ============================================
   PROCESS
   ============================================ */
.process { background: var(--black); }
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.process-step:first-child { border-top: 1px solid var(--border); }
.process-step:hover { background: rgba(184,151,90,0.02); }
.step-number {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-muted);
  line-height: 1;
  padding-top: 0.2rem;
  transition: color 0.3s;
}
.process-step:hover .step-number { color: var(--gold); }
.step-content h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.7rem;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 600px;
}

/* ============================================
   LEGACY
   ============================================ */
.legacy-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.legacy-inner .section-label { justify-content: center; display: flex; }
.legacy-inner .section-title { margin-bottom: 2.5rem; }
.legacy-text {
  font-size: 1.05rem;
  color: rgba(250,247,242,0.6);
  line-height: 1.9;
  margin-bottom: 1.3rem;
}
.legacy-text:last-child {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-top: 1.5rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { background: var(--black); }
.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner .section-title { margin-bottom: 1.5rem; }
.cta-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 3rem;
}
.cta-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(247, 147, 26, 0.08);
  border: 1px solid var(--gold-muted);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ivory);
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 0 20px rgba(247, 147, 26, 0.15);
}
.cta-email-btn:hover {
  background: rgba(247, 147, 26, 0.15);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 30px rgba(247, 147, 26, 0.3);
}
.cta-email-icon {
  color: var(--gold);
  font-size: 1.5rem;
}
.finra-note {
  margin-top: 2rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.finra-note a { color: var(--gold-muted); }
.finra-note a:hover { color: var(--gold); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer-nav {
  display: flex;
  gap: 2rem;
}
.footer-nav a {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-legal {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 760px;
}
.footer-legal a { color: var(--gold-muted); }
.footer-legal a:hover { color: var(--gold); }
.footer-credit {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-container {
  background: var(--charcoal);
  border: 1px solid var(--border);
  padding: 3rem;
  max-width: 450px;
  width: 90%;
  border-radius: 8px;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease);
  position: relative;
  text-align: center;
}
.modal-overlay.active .modal-container {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s;
}
.modal-close:hover { color: var(--ivory); }
.modal-title {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}
.modal-sub {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.modal-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal-method {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--ivory);
  font-weight: 400;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.modal-method:hover {
  border-color: var(--gold-muted);
  background: rgba(184, 151, 90, 0.05);
}
.modal-method svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold-light);
}
.modal-method-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}
.modal-method-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.02em;
}
.modal-method-detail {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.03em;
  opacity: 0.9;
}

/* ============================================
   STATS GRID (Experience Section)
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  overflow: hidden;
}
.stat-box {
  background: var(--charcoal);
  padding: 4rem 2rem;
  text-align: left;
  transition: background 0.3s ease;
}
.stat-box:hover {
  background: var(--mid);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; gap: 3rem; }
  .hero-main { padding-left: 0 !important; }
  .overview-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .experience-layout { grid-template-columns: 1fr; gap: 3rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .footer-nav { flex-wrap: wrap; gap: 1.2rem; }
}
@media (max-width: 640px) {
  .nav.menu-open {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
  }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.85rem; letter-spacing: 0.2em; }
  .nav-toggle { display: flex; position: relative; z-index: 101; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-features-grid { grid-template-columns: 1fr 1fr; }
  .overview-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-visual-inner { grid-template-columns: 1fr 1fr; }
  .section { padding: 70px 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-box { padding: 2.5rem 1.5rem; }
  .cta-email-btn {
    font-size: clamp(0.7rem, 4.2vw, 0.95rem);
    padding: 1rem;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
  }
  .cta-email-btn span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .credentials-row { flex-direction: column; gap: 1.5rem; }
}

/* ============================================
   LANGUAGE SELECTOR DROPDOWN
   ============================================ */
.lang-selector {
  position: relative;
  display: inline-block;
  font-family: var(--sans);
  z-index: 210;
}

.lang-native-select {
  display: none;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.05rem;
  background: #ededeb; /* Creamy light background from mockup */
  border: 1px solid #dcdcd9; /* Subtle warm grey/cream border */
  border-radius: 9999px; /* Perfect oval pill shape */
  color: #1c2d24; /* Dark charcoal-green text */
  font-size: 0.76rem; /* Crisp readable size */
  font-weight: 700; /* Bold uppercase two-letter code */
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.lang-trigger:hover {
  background: #e2e2e0;
  border-color: #cacaca;
  transform: translateY(-0.5px);
}

.lang-trigger:active {
  transform: translateY(0);
}

.lang-globe {
  width: 17px;
  height: 17px;
  stroke: #1c2d24;
  flex-shrink: 0;
  display: block;
}

.lang-chevron {
  width: 8px;
  height: 8px;
  fill: #737b76; /* Matching solid triangle fill */
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 1px;
}

.lang-selector.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 160px;
  background: #ffffff; /* White background for list */
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px; /* Smooth rounded dropdown */
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  list-style: none;
  padding: 0.4rem;
  margin: 0;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 200;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.lang-selector.open .lang-dropdown {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.lang-option {
  padding: 0.55rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #374151; /* Dark grey text for options */
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
}

.lang-option:hover {
  background: #f3f4f6;
  color: #111827;
}

.lang-option.active {
  background: #ededeb; /* Highlight state matching active button */
  color: #1c2d24; /* Dark green/charcoal text from mockup */
  font-weight: 600;
}

/* Adjustments for responsive navbar on mobile */
@media (max-width: 640px) {
  .lang-selector {
    position: relative !important;
    margin: 0.75rem 0 !important;
    width: auto !important;
    display: inline-block !important;
  }
  .lang-trigger {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.45rem !important;
    width: auto !important;
    height: auto !important;
    padding: 0.45rem 1.05rem !important;
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.03em !important;
    text-transform: uppercase !important;
    border-radius: 9999px !important;
    background: #ededeb !important;
    border: 1px solid #dcdcd9 !important;
    color: #1c2d24 !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
  }
  .lang-native-select {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    z-index: 10 !important;
    cursor: pointer !important;
    -webkit-appearance: none !important;
    appearance: none !important;
  }
  .lang-dropdown {
    display: none !important;
  }
  .lang-selector.open .lang-dropdown {
    display: none !important;
  }
  .lang-option {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    padding: 0.55rem 0.8rem;
  }
  .lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
  }
  .lang-option.active {
    background: rgba(255, 255, 255, 0.15);
    color: var(--gold);
    font-weight: 600;
  }
}

/* ============================================
   GOOGLE TRANSLATE CUSTOM OVERRIDES
   ============================================ */
/* Hide the Google translate banner frame */
iframe.goog-te-banner-frame,
.goog-te-banner-frame,
.goog-te-banner,
#goog-gt-tt,
.goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Force body scroll and offset restoration */
body {
  top: 0 !important;
  position: relative !important;
}

/* Remove default Google highlight styling */
.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  border: none !important;
}

/* Hide translate tooltip element */
.skiptranslate {
  display: none !important;
  visibility: hidden !important;
}

#google_translate_element {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

