/* ==========================================================================
   FOLYO TECH WEALTH — Design System
   Exact match to Foliyo Homepage (Fonts, Colors, Tokens, Components)
   Tailored for Tech Professionals & Founders
   ========================================================================== */

:root {
  /* Core Foliyo Brand Palette */
  --bg: #F7F5EE;
  --bg-warm: #EFEBDE;
  --bg-light: #FFFEFB;
  --card: var(--bg-light);
  --ink: #0F2D21;
  --ink-soft: #244135;
  --ink-mute: #5C6E64;
  --rust: #B8541A;
  --rust-deep: #8E3F12;
  --rust-tint: #FFF2E6;
  --gold: #C99632;
  --sage: #3D6B52;
  --sage-light: #EBF3EE;
  --moss: #1E4A35;
  --line: rgba(15, 45, 33, 0.08);
  --line-strong: rgba(15, 45, 33, 0.16);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 45, 33, 0.03);
  --shadow-md: 0 10px 30px -8px rgba(15, 45, 33, 0.06);
  --shadow-lg: 0 20px 48px -12px rgba(15, 45, 33, 0.12);

  /* Typography */
  --font-serif: 'Instrument Serif', serif;
  --font-sans: 'Geist', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(184, 84, 26, 0.06), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(15, 45, 33, 0.04), transparent);
}

/* Subtle Film Grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Scrollbars */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--ink-mute); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--rust); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

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

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
nav {
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(247, 245, 238, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: all var(--transition-fast);
}

.nav-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
}

.logo-icon {
  color: var(--rust);
  display: flex;
  align-items: center;
  font-size: 20px;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.logo-text {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--rust);
}

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

.nav-links a {
  color: var(--ink-mute);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-links a:hover {
  color: var(--rust);
  background: rgba(184, 84, 26, 0.05);
}

.nav-cta, .nav-links .nav-cta {
  background: var(--rust);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}

.nav-cta:hover, .nav-links .nav-cta:hover {
  background: var(--rust-deep);
  color: #fff;
  transform: translateY(-1px);
}

.nav-mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(184, 84, 26, 0.28);
  border-radius: var(--radius-full);
  background: var(--rust-tint);
  color: var(--rust);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.nav-mobile-cta:hover {
  background: var(--rust);
  color: #fff;
  border-color: var(--rust);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* TOOLS DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { background: none; border: none; font-family: inherit; font-size: 13.5px; font-weight: 500; color: var(--ink-mute); padding: 8px 12px; border-radius: var(--radius-sm); cursor: pointer; display: inline-flex; align-items: center; gap: 5px; transition: all var(--transition-fast); }
.nav-dropdown-trigger:hover { color: var(--rust); background: rgba(184, 84, 26, 0.05); }
.nav-dropdown-chevron { width: 13px; height: 13px; transition: transform var(--transition-fast); }
.nav-dropdown:hover .nav-dropdown-chevron { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); padding: 10px 6px 6px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); min-width: 260px; opacity: 0; pointer-events: none; transition: opacity 0.18s ease, transform 0.18s ease; transform: translateX(-50%) translateY(6px); z-index: 300; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu::before { content: ''; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); border: 7px solid transparent; border-bottom-color: var(--line); pointer-events: none; }
.nav-dropdown-item { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: var(--radius-md); text-decoration: none; color: var(--ink); transition: background var(--transition-fast); text-align: left; }
.nav-dropdown-item:hover { background: var(--bg-warm); }
.nav-dropdown-item-icon { font-size: 20px; flex-shrink: 0; }
.nav-dropdown-item-label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.nav-dropdown-item-sub { font-size: 11.5px; color: var(--ink-mute); margin-top: 1px; }

/* MOBILE DRAWER */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(247, 245, 238, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 199;
  flex-direction: column;
  padding: 24px;
  gap: 12px;
  overflow-y: auto;
  border-top: 1px solid var(--line);
}
.mobile-nav-drawer.active { display: flex; }
.mobile-nav-link { font-size: 16px; font-weight: 600; color: var(--ink); text-decoration: none; padding: 12px 14px; border-radius: var(--radius-md); transition: background var(--transition-fast); }
.mobile-nav-link:hover { background: var(--bg-warm); color: var(--rust); }
.mobile-nav-dropdown-title { font-size: 12px; font-family: var(--font-mono); text-transform: uppercase; color: var(--ink-mute); letter-spacing: 0.1em; padding: 8px 14px 4px; }

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-mobile-actions { display: flex; }
  .nav-hamburger { display: flex; }
}

/* ==========================================================================
   HERO V2 WITH RIVER VIDEO & FLOATING LEAVES (HOMEPAGE PARITY)
   ========================================================================== */
.hero-v2 {
  position: relative;
  min-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 90px;
  overflow: hidden;
  background-color: var(--bg);
  color: var(--ink);
}
.hero-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 110% 70% at 50% -8%, rgba(184,84,26,0.05), transparent 55%);
}
.hero-v2 .hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-v2 .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.92) contrast(1.2) saturate(1.15);
  mix-blend-mode: multiply;
}
.hero-v2 .hero-video.video-active {
  opacity: 0.58;
}
.hero-v2 .hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 110% 70% at 50% -8%, rgba(247,245,238,0.15), rgba(247,245,238,0.68) 100%), linear-gradient(180deg, rgba(247,245,238,0.1) 0%, rgba(247,245,238,0.78) 100%);
}
.hero-v2 .scene {
  position: absolute;
  bottom: 0;
  height: 58vh;
  width: 48vw;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.95;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.hero-v2 .scene-left {
  left: 0;
  background-image: url('/home-v2/foliyo-park-left.webp');
  background-position: bottom left;
}
.hero-v2 .scene-right {
  right: 0;
  background-image: url('/home-v2/foliyo-park-right.webp');
  background-position: bottom right;
}
.hero-v2 .leaf {
  position: absolute;
  width: 56px;
  height: 56px;
  background-image: url('/home-v2/foliyo-leaves.webp');
  background-size: 300px 200px;
  background-repeat: no-repeat;
  z-index: 2;
  opacity: 0.55;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.hero-v2 .leaf-1 { top: 62%; background-position: 0 0; animation: windBlow 42s infinite linear; }
.hero-v2 .leaf-2 { top: 74%; background-position: -100px 0; width: 38px; height: 38px; animation: windBlow 52s infinite linear 5s; }
.hero-v2 .leaf-3 { top: 68%; background-position: -200px 0; animation: windBlow 36s infinite linear 2s; }
.hero-v2 .leaf-4 { top: 82%; background-position: 0 -100px; width: 30px; height: 30px; animation: windBlow 60s infinite linear 9s; }
@keyframes windBlow {
  0% { transform: translateX(-12vw) translateY(0) rotate(0); opacity: 0; }
  12% { opacity: 0.55; }
  88% { opacity: 0.55; }
  100% { transform: translateX(120vw) translateY(90px) rotate(680deg); opacity: 0; }
}
.hero-v2 .hero-inner {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
}
.hero-v2 h1 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(34px, 4.3vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-shadow: 0 1px 2px rgba(255,255,255,0.8);
  max-width: 820px;
  margin: 0 auto 20px;
}
.hero-v2 h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
}
.hero-v2 .hero-lead {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 680px;
  margin: 0 auto 36px;
  text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}
.hero-v2 .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 840px;
  margin: 40px auto 0;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.hero-v2 .stat-item {
  text-align: center;
  padding: 0 !important;
  border: none !important;
}
.hero-v2 .stat-value {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  text-shadow: none;
  margin-bottom: 6px;
}
.hero-v2 .stat-slash {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--rust);
  font-weight: 400;
  margin: 0 2px;
}
.hero-v2 .stat-label {
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.35;
  max-width: 220px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-v2 .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   BUTTONS & COMMON UI
   ========================================================================== */
.btn-primary {
  background: var(--rust);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--rust-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 84, 26, 0.25);
}

.btn-secondary {
  background: var(--bg-light);
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--rust);
  color: var(--rust);
  background: var(--rust-tint);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  border-bottom: 1px solid var(--line);
  transition: all var(--transition-fast);
}

.btn-ghost:hover {
  color: var(--rust);
  border-color: var(--rust);
}

/* ==========================================================================
   SECTIONS COMMON
   ========================================================================== */
section.padded {
  padding: 96px 0;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
  text-align: center;
}

.section-title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  text-align: center;
  color: var(--ink);
}

.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
}

.section-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 52px;
  text-align: center;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--rust);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--rust-tint);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

/* ==========================================================================
   SOCIAL PROOF LOGOS (SECFI-STYLE WORDMARKS & INFINITE MARQUEE)
   ========================================================================== */
.proof-strip {
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0 40px;
  text-align: center;
  overflow: hidden;
}

.proof-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
}

.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 52px;
  width: max-content;
  will-change: transform;
  animation: scrollMarquee 58s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

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

.logo-item {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  color: var(--ink);
  opacity: 0.65;
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
  cursor: default;
  user-select: none;
  white-space: nowrap;
}

.logo-item:hover {
  opacity: 1;
  transform: scale(1.06);
}

/* ==========================================================================
   CORE SERVICES / VALUE PILLARS (DIPTYCH)
   ========================================================================== */
.services-section {
  background: var(--bg);
}

.diptych-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 56px;
  align-items: flex-start;
}

.diptych-sticky {
  position: sticky;
  top: 100px;
}

.diptych-sticky .section-eyebrow {
  text-align: left;
}

.diptych-sticky .section-title {
  text-align: left;
}

.diptych-sticky .section-lead {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.diptych-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 84, 26, 0.25);
  box-shadow: var(--shadow-md);
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.service-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--rust);
  letter-spacing: 0.12em;
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--bg-warm);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.service-card h3 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.service-card h3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
}

.service-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  font-size: 11px;
  font-weight: 600;
  background: var(--bg-warm);
  color: var(--ink-soft);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

/* Concentration Risk Widget & Meter */
.concentration-widget {
  background: #FDFBF7;
  border: 1px solid rgba(184, 84, 26, 0.22);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin: 16px 0 20px;
}

.concentration-meter-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}

.meter-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.meter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}

.meter-header .meter-label-danger {
  color: #B91C1C;
  display: flex;
  align-items: center;
  gap: 5px;
}

.meter-header .meter-label-safe {
  color: #047857;
  display: flex;
  align-items: center;
  gap: 5px;
}

.meter-bar-track {
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.meter-bar-fill-danger {
  height: 100%;
  width: 75%;
  background: linear-gradient(90deg, #F59E0B, #DC2626);
  border-radius: 4px;
}

.meter-bar-fill-safe {
  height: 100%;
  width: 15%;
  background: linear-gradient(90deg, #10B981, #059669);
  border-radius: 4px;
}

.concentration-callout {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-left: 3px solid #B91C1C;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink);
}

.concentration-callout-title {
  font-weight: 700;
  font-size: 12px;
  color: #B91C1C;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.concentration-callout ul {
  margin: 0;
  padding-left: 16px;
}

.concentration-callout li {
  margin-bottom: 4px;
  color: var(--ink-soft);
}

.concentration-callout li:last-child {
  margin-bottom: 0;
}

.concentration-callout strong {
  color: var(--ink);
}

/* RSU Diversification — single hero card (meter + 3 steps) */
.rsu-hero {
  border-color: rgba(184, 84, 26, 0.35);
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF8F5 100%);
}

.rsu-hero-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
}

.rsu-hero .concentration-meter-wrap {
  gap: 16px;
  margin-bottom: 0;
}

.rsu-hero .meter-bar-track {
  height: 10px;
}

.rsu-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.rsu-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.rsu-step strong {
  color: var(--ink);
  font-weight: 600;
}

.rsu-step-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--rust);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

/* RSU Diversification — interactive calculator */
.rsu-calc-q {
  display: block;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 16px;
}

.rsu-slider-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.rsu-slider-row input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--rust), #E8D9C8);
  outline: none;
  cursor: pointer;
}

.rsu-slider-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--rust);
  border: 3px solid #FFFFFF;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.rsu-slider-row input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--rust);
  border: 3px solid #FFFFFF;
  cursor: pointer;
}

.rsu-slider-val {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--rust);
  min-width: 46px;
  text-align: right;
}

.rsu-alloc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.rsu-alloc-title {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
}

.rsu-alloc-title-plan {
  color: #047857;
}

.rsu-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.rsu-row-label {
  font-size: 11.5px;
  color: var(--ink-soft);
  width: 92px;
  flex-shrink: 0;
}

.rsu-row-bar {
  flex: 1;
  height: 7px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.rsu-row-fill {
  height: 100%;
  background: linear-gradient(90deg, #10B981, #059669);
  border-radius: 4px;
  transition: width 0.35s ease;
}

.rsu-row-fill-emp {
  background: linear-gradient(90deg, #F59E0B, #DC2626);
}

.rsu-row-pct {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink);
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}

.rsu-risk-note {
  margin-top: 20px;
  background: #FDFBF7;
  border: 1px solid rgba(184, 84, 26, 0.22);
  border-left: 3px solid #B91C1C;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.rsu-risk-note strong {
  color: #B91C1C;
}

.rsu-calc-note {
  font-size: 11px;
  color: var(--ink-mute);
  line-height: 1.5;
  margin-top: 16px;
}

@media (max-width: 460px) {
  .rsu-alloc-grid { gap: 14px; }
  .rsu-row-label { width: 68px; font-size: 11px; }
  .rsu-row-pct { width: 28px; }
}

@media (max-width: 900px) {
  .diptych-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .diptych-sticky {
    position: static;
  }
}

/* ==========================================================================
   BRAND WORDMARKS & COLORS (MARQUEE)
   ========================================================================== */
.brand-wordmark {
  font-family: var(--font-sans);
  color: var(--ink);
  opacity: 0.78;
  transition: all var(--transition-fast);
  white-space: nowrap;
  user-select: none;
  cursor: default;
  display: inline-flex;
  align-items: center;
}

.brand-wordmark:hover {
  opacity: 1;
  transform: scale(1.06);
}

.brand-flipkart { color: #2874F0; font-size: 20px; font-weight: 800; font-style: italic; letter-spacing: -0.03em; }
.brand-swiggy { color: #FC8019; font-size: 21px; font-weight: 800; letter-spacing: -0.02em; }
.brand-zomato { color: #E23744; font-size: 22px; font-weight: 900; font-style: italic; letter-spacing: -0.04em; }
.brand-razorpay { color: #0C2340; font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.brand-cred { color: #18181B; font-size: 19px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.brand-zepto { color: #FF477E; font-size: 22px; font-weight: 900; letter-spacing: -0.04em; text-transform: lowercase; }
.brand-phonepe { color: #6739B7; font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.brand-zerodha { color: #387ED1; font-size: 19px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.brand-groww { color: #00D09C; font-size: 20px; font-weight: 700; letter-spacing: -0.03em; }
.brand-postman { color: #FF6C37; font-size: 19px; font-weight: 800; letter-spacing: 0.02em; text-transform: uppercase; }
.brand-meesho { color: #F43397; font-size: 21px; font-weight: 900; letter-spacing: -0.04em; text-transform: lowercase; }
.brand-browserstack { color: #0096D6; font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.brand-inmobi { color: #E61C24; font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.brand-ola { color: #84B026; font-size: 21px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.brand-freshworks { color: #F45A46; font-size: 19px; font-weight: 700; letter-spacing: -0.03em; text-transform: lowercase; }
.brand-urbancompany { color: #1C1C1C; font-size: 19px; font-weight: 800; letter-spacing: -0.02em; }
.brand-paytm { color: #002E6E; font-size: 21px; font-weight: 800; letter-spacing: -0.02em; }

/* ==========================================================================
   THE FOLYO FIDUCIARY PROCESS & ADVISORY CONSOLE
   ========================================================================== */
.process-section {
  background: var(--bg-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 100px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 64px;
  align-items: center;
}

.process-left {
  display: flex;
  flex-direction: column;
}

.process-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 14px;
}

.process-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
}

.process-title em {
  font-style: italic;
  color: var(--rust);
}

.process-accordion {
  display: flex;
  flex-direction: column;
}

.process-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.process-item:first-child {
  border-top: 1px solid var(--line);
}

.process-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.process-item-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.process-item-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-mute);
  transition: color var(--transition-fast);
}

.process-item.active .process-item-num {
  color: var(--rust);
}

.process-item-title {
  font-family: var(--font-sans);
  font-size: 17.5px;
  font-weight: 700;
  color: var(--ink);
  transition: color var(--transition-fast);
}

.process-item.active .process-item-title {
  color: var(--rust);
}

.process-toggle-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 16px;
  font-family: var(--font-mono);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.process-item.active .process-toggle-btn {
  background: var(--rust);
  color: #fff;
  border-color: var(--rust);
}

.process-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  opacity: 0;
}

.process-item.active .process-item-body {
  max-height: 180px;
  opacity: 1;
  padding-top: 12px;
  padding-left: 28px;
}

.process-item-body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* RIGHT COLUMN: FOLYO ADVISORY CONSOLE (DELIVERABLE STUDIO) */
.advisory-console {
  background: #0D1A14;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 48px -12px rgba(11, 26, 19, 0.4);
  padding: 32px;
  color: #FAF8F5;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  overflow: hidden;
}

.advisory-console::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 84, 26, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.console-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
}

.console-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: #A3E635;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #A3E635;
  box-shadow: 0 0 8px #A3E635;
  animation: pulse-dot 1.5s infinite;
}

.console-step-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: #FDBA74;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.console-body {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.deliverable-card {
  display: none;
  flex-direction: column;
  gap: 16px;
  animation: fadeIn 0.3s ease;
}

.deliverable-card.active {
  display: flex;
}

.deliverable-title {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 400;
  color: #FAF8F5;
  line-height: 1.2;
}

.deliverable-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.deliverable-metric-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 12px;
}

.deliverable-metric-label {
  font-size: 10.5px;
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.deliverable-metric-val {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.deliverable-metric-val.alert { color: #F87171; }
.deliverable-metric-val.success { color: #4ADE80; }
.deliverable-metric-val.gold { color: #FDE047; }

.deliverable-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border-left: 2px solid var(--rust);
}

.console-advisor-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.console-advisor-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.console-advisor-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.console-advisor-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
}

.console-advisor-role {
  font-size: 11px;
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.6);
}

.console-cta-link {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: #FDBA74;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(184, 84, 26, 0.2);
  border: 1px solid rgba(184, 84, 26, 0.4);
  transition: all var(--transition-fast);
}

.console-cta-link:hover {
  background: var(--rust);
  color: #fff;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .deliverable-metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   HOW IT WORKS / TIMELINE STEPS
   ========================================================================== */
.timeline-section {
  background: var(--bg);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

.timeline-grid::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
  z-index: 1;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.timeline-num {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--ink-mute);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.timeline-step:hover .timeline-num {
  border-color: var(--rust);
  color: var(--rust);
  transform: scale(1.06);
}

.timeline-step h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.timeline-step h3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
}

.timeline-step p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .timeline-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .timeline-grid::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .timeline-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SOLUTIONS FOR TECH STAGES (LIFE STAGES)
   ========================================================================== */
.stages-section {
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stages-pills-wrap {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.stage-tab-btn {
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.stage-tab-btn.active, .stage-tab-btn:hover {
  background: var(--ink);
  color: var(--bg-light);
  border-color: var(--ink);
}

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

.stage-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.stage-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 84, 26, 0.25);
  box-shadow: var(--shadow-md);
}

.stage-card-icon {
  font-size: 26px;
  margin-bottom: 16px;
}

.stage-card h4 {
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.stage-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.stage-tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--rust);
  background: var(--rust-tint);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

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

@media (max-width: 600px) {
  .stages-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   COMPARISON SECTION (FEE-ONLY FIDUCIARY)
   ========================================================================== */
.comparison-section {
  background: var(--bg);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 1060px;
  margin: 0 auto;
}

.comp-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.comp-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.comp-card.fiduciary {
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-lg);
}

.comp-card.fiduciary::before {
  content: 'SEBI LEGAL FIDUCIARY MANDATE';
  position: absolute;
  top: 0;
  right: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  border-bottom-left-radius: var(--radius-md);
  font-weight: 600;
}

.comp-card h3 {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--ink);
}

.comp-card.fiduciary h3 {
  color: var(--rust);
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comp-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.comp-icon {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
  font-family: var(--font-mono);
}

.comp-card.distributor .comp-icon {
  background: #FFEBEE;
  color: #D32F2F;
}

.comp-card.fiduciary .comp-icon {
  background: #E8F5E9;
  color: var(--ink);
}

.comp-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}

.comp-content p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

@media (max-width: 800px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ADVISOR PROFILES & FOUNDERS (HOMEPAGE PEOPLE)
   ========================================================================== */
.profiles-section {
  background: var(--bg-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.profile-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.profile-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 84, 26, 0.2);
  box-shadow: var(--shadow-md);
}

.profile-avatar-box {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(184, 84, 26, 0.2);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--rust-tint);
}

.profile-avatar-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.profile-cred {
  font-size: 12px;
  color: var(--ink-mute);
  margin-bottom: 12px;
  font-family: var(--font-mono);
}

.profile-quote {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.45;
  margin-bottom: 16px;
  flex: 1;
}

.profile-meta-list {
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px;
  font-size: 11.5px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.profile-meta-row {
  display: flex;
  justify-content: space-between;
}

.profile-meta-val {
  font-weight: 600;
  color: var(--ink);
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.profile-tag {
  font-size: 10.5px;
  font-weight: 600;
  background: rgba(15, 45, 33, 0.05);
  color: var(--ink-soft);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.profile-btn {
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 11px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.profile-btn:hover {
  background: var(--rust);
  transform: translateY(-1px);
}

/* Founders Row */
.founders-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.founder-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder-avatar {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 2px solid rgba(184, 84, 26, 0.25);
  margin-bottom: 12px;
  background: var(--rust-tint);
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}

.founder-li svg {
  width: 14px;
  height: 14px;
  color: var(--rust);
}

.founders-alumni {
  text-align: center;
  margin-top: 24px;
}

.alumni-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.alumni-strip {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.alumni-badge {
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
}

@media (max-width: 960px) {
  .profiles-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   TESTIMONIALS (REAL HOMEPAGE CLIENT STORIES)
   ========================================================================== */
.testimonials-section {
  background: var(--bg);
}

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

.testi-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-base);
}

.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 84, 26, 0.2);
  box-shadow: var(--shadow-md);
}

.testi-quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 24px;
}

.testi-quote em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--rust);
}

.testi-profile {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

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

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(184, 84, 26, 0.2);
  flex-shrink: 0;
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}

.testi-linkedin svg {
  width: 13px;
  height: 13px;
  color: var(--rust);
}

.testi-role {
  font-size: 12px;
  color: var(--ink-mute);
}

.testi-metric-val {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--rust);
  line-height: 1;
  text-align: right;
  margin-bottom: 2px;
}

.testi-metric-label {
  font-size: 10px;
  color: var(--ink-mute);
  text-align: right;
}

@media (max-width: 960px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FAQS (HOMEPAGE DETAILS/ACCORDION PATTERN)
   ========================================================================== */
.faq-section {
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-container details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-container details[open] {
  border-color: rgba(184, 84, 26, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-container summary {
  padding: 20px 24px;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-container summary::-webkit-details-marker {
  display: none;
}

.faq-container summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--rust);
  font-weight: 400;
  transition: transform var(--transition-fast);
}

.faq-container details[open] summary::after {
  content: '−';
}

.details-body {
  padding: 0 24px 22px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ==========================================================================
   BOTTOM CTA SECTION
   ========================================================================== */
.cta-banner-section {
  padding: 80px 0 100px;
}

.cta-banner-card {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(184, 84, 26, 0.25), transparent 70%);
  pointer-events: none;
}

.cta-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #FFFFFF;
}

.cta-banner-title em {
  font-style: italic;
  color: #FFA366;
}

.cta-banner-sub {
  font-size: 17px;
  color: #D8E0DC;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER (EXACT HOMEPAGE MATCH)
   ========================================================================== */
footer {
  background: var(--ink);
  color: var(--bg);
  padding: 64px 0 36px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin-top: 12px;
  max-width: 320px;
  line-height: 1.6;
  color: var(--ink-mute);
  font-size: 13px;
}

.footer-col h5 {
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 16px;
}

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

.footer-links a {
  color: #A0B2A6;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  font-size: 11.5px;
  line-height: 1.65;
  color: #7D9285;
}

@media (max-width: 840px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}
