/* ==========================================================================
   PRIMOS GROUP — High-End Wealth & Offshore Structuring Stylesheet
   Modern Quiet Luxury / Obsidian & Champagne Gold
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #07080a;
  --bg-secondary: #0d0f14;
  --bg-tertiary: #131720;
  --bg-card: rgba(18, 22, 31, 0.75);
  --bg-glass: rgba(13, 16, 23, 0.82);
  --bg-glass-elevated: rgba(22, 27, 39, 0.88);
  
  /* Gold Accents (Brushed Champagne Gold) */
  --gold-50: #fbf8ee;
  --gold-100: #f5eed4;
  --gold-200: #ebdcab;
  --gold-300: #dfc57a;
  --gold-400: #d4af37;
  --gold-500: #c5a059;
  --gold-600: #aa8528;
  --gold-700: #88681e;
  --gold-gradient: linear-gradient(135deg, #f5eed4 0%, #d4af37 50%, #aa8528 100%);
  --gold-glow: rgba(212, 175, 55, 0.25);
  --gold-glow-subtle: rgba(212, 175, 55, 0.12);
  --gold-border: rgba(212, 175, 55, 0.22);
  --gold-border-highlight: rgba(212, 175, 55, 0.45);

  /* Neutrals & Text */
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #8492a6;
  --text-dim: #525f77;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);

  /* Status & Accents */
  --emerald-success: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.2);
  --accent-cyan: #38bdf8;
  
  /* Typography */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', Menlo, monospace;

  /* Shadows & Depth */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.18);
  --shadow-gold-lg: 0 16px 50px rgba(212, 175, 55, 0.28);

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, #151a25 0%, #08090d 55%, #050608 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
}

/* Background Atmosphere Grid & Noise */
.ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  transition: transform 8s ease-in-out;
  animation: orbFloat 22s infinite alternate ease-in-out;
}

.ambient-orb-1 {
  width: 600px;
  height: 600px;
  top: -150px;
  left: 20%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16) 0%, rgba(212, 175, 55, 0) 70%);
}

.ambient-orb-2 {
  width: 800px;
  height: 800px;
  top: 40%;
  right: -250px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  animation-duration: 28s;
  animation-direction: alternate-reverse;
}

.ambient-orb-3 {
  width: 700px;
  height: 700px;
  bottom: 5%;
  left: -200px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  animation-duration: 24s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.08); }
  100% { transform: translate(-30px, 60px) scale(0.95); }
}

.subtle-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 40%, transparent 100%);
}

/* Containers & Layout */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.container-narrow {
  max-width: 980px;
}

section {
  padding: 7rem 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  section {
    padding: 4.5rem 0;
  }
  .container {
    padding: 0 1.25rem;
  }
}

/* Typography Helpers */
.serif {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.015em;
}

.sans {
  font-family: var(--font-sans);
}

.mono {
  font-family: var(--font-mono);
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.silver-gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Eyebrow Pill Badge */
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1.15rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-300);
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.08);
  backdrop-filter: blur(8px);
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--emerald-success);
  border-radius: 50%;
  position: relative;
  display: inline-block;
  box-shadow: 0 0 10px var(--emerald-success);
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--emerald-success);
  animation: pulsePing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pulsePing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* Section Header Styles */
.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 4rem auto;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.7;
}

/* Buttons & Interactive Elements */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.85rem;
  font-family: var(--font-sans);
  font-size: 0.925rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #07080a;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
  color: #000;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: #fff;
}

.btn-gold-outline {
  background: rgba(212, 175, 55, 0.06);
  color: var(--gold-200);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(10px);
}

.btn-gold-outline:hover {
  background: rgba(212, 175, 55, 0.16);
  border-color: var(--gold-400);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-icon:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-border);
  color: var(--gold-300);
  transform: scale(1.05);
}

/* ==========================================================================
   1. Sticky Glass Navigation
   ========================================================================== */
.site-nav {
  position: sticky;
  top: 1.25rem;
  z-index: 100;
  padding: 0 1.5rem;
  margin-bottom: -5rem;
}

.nav-glass-bar {
  max-width: 1280px;
  margin: 0 auto;
  background: rgba(10, 12, 17, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  padding: 0.65rem 1.25rem 0.65rem 1.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(212, 175, 55, 0.08);
  transition: all var(--transition-smooth);
}

.site-nav.scrolled .nav-glass-bar {
  background: rgba(8, 9, 13, 0.92);
  border-color: var(--gold-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8), 0 0 24px rgba(212, 175, 55, 0.12);
}

/* Logo & Monogram */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: #fff;
}

.monogram-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(145deg, #1e2433 0%, #0d1017 100%);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.monogram-p {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-300);
  line-height: 1;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
  line-height: 1.1;
}

.brand-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--gold-400);
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.35rem 0;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-smooth);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sound-toggle-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sound-toggle-btn:hover {
  color: var(--gold-300);
  border-color: var(--gold-border);
}

.sound-toggle-btn.active {
  color: var(--gold-400);
  border-color: var(--gold-400);
  background: rgba(212, 175, 55, 0.1);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(5, 7, 10, 0.96);
  backdrop-filter: blur(24px);
  z-index: 200;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  transition: transform var(--transition-smooth);
}

.mobile-nav-drawer.open {
  transform: translateY(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: auto 0;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--gold-300);
}

/* ==========================================================================
   2. Hero Section
   ========================================================================== */
.hero-section {
  padding-top: 11rem;
  padding-bottom: 6rem;
  position: relative;
  text-align: center;
}

.hero-content {
  max-width: 960px;
  margin: 0 auto;
}

.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0 auto 2.5rem auto;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  flex-wrap: wrap;
  margin-bottom: 4.5rem;
}

/* Hero Stats Bar */
.hero-proof-bar {
  background: rgba(14, 18, 26, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.hero-proof-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, transparent 60%, rgba(212, 175, 55, 0.15) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.trust-badges-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.25rem;
  flex-wrap: wrap;
}

.trust-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.trust-badge-pill svg {
  color: var(--gold-400);
}

/* ==========================================================================
   3. Dynamic Media Showcase (Instagram Reel / Story Simulator)
   ========================================================================== */
.media-showcase-section {
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.reel-player-container {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3.5rem;
  align-items: center;
  background: rgba(13, 16, 23, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.reel-player-container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Smartphone / Story Device Mockup */
.story-phone-mockup {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  background: #000;
  border-radius: 38px;
  padding: 10px;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 30px rgba(212, 175, 55, 0.15);
  position: relative;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 580px;
  border-radius: 30px;
  overflow: hidden;
  background: #08090d;
}

.story-progress-bars {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  gap: 5px;
  z-index: 20;
}

.progress-segment {
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  flex: 1;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #ffffff;
  border-radius: 2px;
}

.progress-segment.completed .progress-fill {
  width: 100%;
}

.progress-segment.active .progress-fill {
  animation: progressTick 5.5s linear forwards;
}

@keyframes progressTick {
  from { width: 0%; }
  to { width: 100%; }
}

.story-header {
  position: absolute;
  top: 28px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  padding: 4px 10px 4px 6px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.story-author-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold-400);
}

.story-author-info {
  display: flex;
  flex-direction: column;
}

.story-author-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.story-author-badge {
  font-size: 0.58rem;
  color: var(--gold-300);
}

.story-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.story-ctrl-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Slides Inside Phone Screen */
.story-slides-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.story-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(1.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.story-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.story-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Touch tap zones */
.tap-zone-left, .tap-zone-right {
  position: absolute;
  top: 60px;
  bottom: 80px;
  width: 40%;
  z-index: 15;
  cursor: pointer;
}

.tap-zone-left { left: 0; }
.tap-zone-right { right: 0; }

.story-footer-action {
  position: absolute;
  bottom: 16px;
  left: 14px;
  right: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
}

.story-cta-bubble {
  flex: 1;
  background: rgba(18, 22, 31, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  padding: 0.65rem 1rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.story-cta-bubble:hover {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
}

/* Right Column Content in Showcase */
.showcase-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.showcase-tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.showcase-heading {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  color: #fff;
}

.showcase-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Slide thumbnail pills */
.story-thumbs-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.story-thumb-chip {
  padding: 0.55rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.story-thumb-chip:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.story-thumb-chip.active {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-400);
  color: var(--gold-200);
  font-weight: 600;
}

/* Triad Feature Cards */
.arbitrage-triad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.triad-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all var(--transition-smooth);
}

.triad-card:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--gold-border);
  transform: translateY(-2px);
}

.triad-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold-400);
  margin-bottom: 0.35rem;
}

.triad-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.35rem;
}

.triad-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   4. Interactive Structure Blueprint Comparison
   ========================================================================== */
.structure-comparison-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 15, 22, 0.5) 50%, transparent 100%);
}

.comparison-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.comparison-toggle {
  display: inline-flex;
  background: rgba(20, 24, 34, 0.8);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  padding: 5px;
  position: relative;
}

.toggle-btn {
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.toggle-btn.active {
  background: var(--gold-gradient);
  color: #07080a;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.comparison-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.blueprint-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: all var(--transition-smooth);
}

.blueprint-card.highlighted {
  border-color: var(--gold-border-highlight);
  background: linear-gradient(160deg, rgba(22, 28, 41, 0.9) 0%, rgba(13, 16, 24, 0.9) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.1);
}

.blueprint-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.blueprint-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  font-weight: 600;
}

.badge-warning {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-success {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.blueprint-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.blueprint-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.tax-leakage-stat {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-serif);
  line-height: 1;
}

.tax-leakage-stat.high { color: #f87171; }
.tax-leakage-stat.low { color: var(--gold-400); }

.blueprint-flow-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
}

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.flow-step-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.flow-step-icon.cross {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.flow-step-icon.check {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

/* ==========================================================================
   5. Core Services (Bento Grid)
   ========================================================================== */
.services-section {
  padding: 7rem 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.75rem;
}

.bento-col-7 { grid-column: span 7; }
.bento-col-5 { grid-column: span 5; }
.bento-col-4 { grid-column: span 4; }
.bento-col-8 { grid-column: span 8; }
.bento-col-6 { grid-column: span 6; }

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.08);
}

.bento-card-header {
  margin-bottom: 2rem;
}

.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.03) 100%);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  margin-bottom: 1.5rem;
}

.service-pillar-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  color: #fff;
  margin-bottom: 0.85rem;
}

.service-desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.service-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.feature-tag {
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   6. Strategic Jurisdictions Matrix
   ========================================================================== */
.jurisdictions-section {
  padding: 7rem 0;
}

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

.jurisdiction-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.jurisdiction-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 24px rgba(212, 175, 55, 0.12);
}

.jurisdiction-img-wrap {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.jurisdiction-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.jurisdiction-card:hover .jurisdiction-img {
  transform: scale(1.06);
}

.jurisdiction-tax-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(9, 11, 16, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-border);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-300);
}

.jurisdiction-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.jurisdiction-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.jurisdiction-meta {
  font-size: 0.82rem;
  color: var(--gold-400);
  font-family: var(--font-mono);
  margin-bottom: 1rem;
}

.jurisdiction-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.jurisdiction-specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
}

.spec-val {
  color: #fff;
  font-weight: 500;
}

/* ==========================================================================
   7. Verified Case Studies (Featuring Dogu Durukan & Proof Graphic)
   ========================================================================== */
.case-studies-section {
  padding: 7rem 0;
}

.featured-case-card {
  background: linear-gradient(135deg, rgba(20, 25, 36, 0.95) 0%, rgba(10, 13, 19, 0.95) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 460px 1fr;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(212, 175, 55, 0.12);
  margin-bottom: 3.5rem;
}

.featured-proof-visual {
  position: relative;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-proof-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.featured-case-card:hover .featured-proof-visual img {
  transform: scale(1.03);
}

.featured-proof-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.proof-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.featured-case-content {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.client-role {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.case-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1.25rem;
}

.case-quote {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
  border-left: 2px solid var(--gold-400);
  padding-left: 1.25rem;
}

.case-metric-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.metric-pill-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.15rem;
}

.metric-pill-val {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.metric-pill-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Secondary Case Studies Grid */
.secondary-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.case-card-compact {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all var(--transition-smooth);
}

.case-card-compact:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
}

/* ==========================================================================
   8. Interactive Tax Savings Calculator
   ========================================================================== */
.calculator-section {
  padding: 7rem 0;
}

.calc-glass-box {
  background: rgba(14, 18, 26, 0.88);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75), 0 0 40px rgba(212, 175, 55, 0.1);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  position: relative;
  overflow: hidden;
}

.calc-glass-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
}

.calc-inputs-col {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.input-block-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.85rem;
}

.calc-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
}

.calc-value-display {
  font-family: var(--font-mono);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold-300);
}

/* Custom Slider Styling */
.range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 7px;
  border-radius: 4px;
  background: #1c2230;
  outline: none;
  transition: background 0.2s;
  cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-gradient);
  cursor: pointer;
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.6);
  border: 2px solid #000;
  transition: transform var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.slider-tick-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* Country Pill Selector */
.country-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.country-pill {
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.country-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.country-pill.active {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-400);
  color: var(--gold-200);
  font-weight: 600;
}

/* Calculator Output Column */
.calc-results-col {
  background: linear-gradient(145deg, #11151f 0%, #0a0d13 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.results-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.savings-highlight {
  margin: 1.5rem 0 2rem 0;
}

.savings-amount {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.4rem;
}

.savings-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.savings-breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 2rem;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
}

.breakdown-lbl {
  color: var(--text-muted);
}

.breakdown-val {
  font-family: var(--font-mono);
  font-weight: 600;
  color: #fff;
}

/* ==========================================================================
   9. Leadership & Advisory (Founder Portrait Revan Ladouari)
   ========================================================================== */
.founder-section {
  padding: 7rem 0;
}

.founder-card-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 480px 1fr;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.1);
}

.founder-portrait-wrap {
  position: relative;
  overflow: hidden;
  background: #000;
  height: 100%;
  min-height: 520px;
}

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

.founder-portrait-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.75rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

.founder-quote-banner {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.founder-card-content {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-quote-primary {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.35;
  color: #fff;
  margin-bottom: 1.75rem;
  position: relative;
}

.founder-bio-text {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.founder-credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.cred-icon {
  color: var(--gold-400);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ==========================================================================
   10. High-Conversion Intake Booking & Modal
   ========================================================================== */
.booking-section {
  padding: 7rem 0;
}

.intake-card-wrapper {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(14, 18, 26, 0.9);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 175, 55, 0.12);
  position: relative;
}

.intake-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.95rem 1.2rem;
  background: rgba(8, 10, 15, 0.85);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
  background: rgba(11, 14, 21, 0.95);
}

.profit-selector-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.radio-pill {
  position: relative;
}

.radio-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-pill label {
  display: block;
  text-align: center;
  padding: 0.85rem 0.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.radio-pill input:checked + label {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-400);
  color: var(--gold-200);
  font-weight: 600;
}

.nda-agreement-box {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.nda-agreement-box input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gold-400);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Booking Confirmation Success State */
.booking-success-modal {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.booking-success-modal.show {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

.success-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--emerald-success);
  color: var(--emerald-success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   11. FAQ Accordion
   ========================================================================== */
.faq-section {
  padding: 7rem 0;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--gold-border);
  background: rgba(18, 23, 33, 0.9);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 1.75rem;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon-arrow {
  color: var(--gold-400);
  transition: transform var(--transition-smooth);
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
}

/* ==========================================================================
   12. Footer & Legal Disclaimer
   ========================================================================== */
.site-footer {
  background: #050608;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 3rem;
  position: relative;
  z-index: 2;
}

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

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 340px;
}

.footer-social-links {
  display: flex;
  gap: 0.85rem;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.footer-social-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-border);
  color: var(--gold-300);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link-item a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.footer-link-item a:hover {
  color: var(--gold-300);
}

.footer-disclaimer-box {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ==========================================================================
   13. Floating Luxury Quick-Bar
   ========================================================================== */
.floating-quick-bar {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(10, 12, 17, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid var(--gold-border);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.15);
}

.quick-bar-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.quick-bar-btn.primary {
  background: var(--gold-gradient);
  color: #07080a;
}

.quick-bar-btn:not(.primary):hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

/* Modal Backdrop */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 4, 7, 0.85);
  backdrop-filter: blur(16px);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.open {
  display: flex;
  animation: fadeIn 0.25s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-proof-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
  .reel-player-container {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .story-phone-mockup {
    max-width: 320px;
  }
  .phone-screen {
    height: 520px;
  }
  .comparison-card-grid {
    grid-template-columns: 1fr;
  }
  .bento-col-7, .bento-col-5, .bento-col-4, .bento-col-8, .bento-col-6 {
    grid-column: span 12;
  }
  .jurisdictions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-case-card {
    grid-template-columns: 1fr;
  }
  .featured-proof-visual {
    height: 380px;
  }
  .featured-case-content {
    padding: 2rem;
  }
  .founder-card-box {
    grid-template-columns: 1fr;
  }
  .founder-portrait-wrap {
    min-height: 400px;
  }
  .founder-card-content {
    padding: 2.5rem;
  }
  .calc-glass-box {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-section {
    padding-top: 8rem;
  }
  .hero-proof-bar {
    grid-template-columns: 1fr;
  }
  .stat-item::after {
    display: none !important;
  }
  .secondary-cases-grid {
    grid-template-columns: 1fr;
  }
  .jurisdictions-grid {
    grid-template-columns: 1fr;
  }
  .arbitrage-triad {
    grid-template-columns: 1fr;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .profit-selector-group {
    grid-template-columns: repeat(2, 1fr);
  }
  .intake-card-wrapper {
    padding: 1.75rem;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .floating-quick-bar {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    justify-content: center;
  }
}
