/* ============================================================
   GrabProspect | Premium Dark Monochrome Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600;1,700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --bg-primary: #040405;
  --bg-secondary: #08090a;
  --bg-tertiary: #0f1012;
  --bg-card: #0c0d0f;

  --surface-glass: rgba(255, 255, 255, 0.035);
  --surface-glass-hover: rgba(255, 255, 255, 0.065);
  --surface-glass-strong: rgba(255, 255, 255, 0.09);

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-default: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text-primary: #ffffff;
  --text-secondary: #9da3ae;
  --text-tertiary: #6b7280;
  --text-muted: #4b5563;

  --accent: #c8a642;
  --accent-soft: rgba(200, 166, 66, 0.14);
  --accent-hover: #dbb94e;
  --accent-glow: rgba(200, 166, 66, 0.28);
  --accent-gold-gradient: linear-gradient(135deg, #eed284 0%, #c8a642 50%, #997b27 100%);

  --success: #34d399;
  --success-soft: rgba(52, 211, 153, 0.12);
  --danger: #f87171;
  --danger-soft: rgba(248, 113, 113, 0.12);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Instrument Serif', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-max: 1440px;
  --container-wide: 1600px;
  --container-narrow: 1140px;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px var(--accent-glow);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* --- Utility Classes --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem);
  width: 100%;
}

.container--wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem);
  width: 100%;
}

.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem);
  width: 100%;
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section--alt {
  background: var(--bg-secondary);
}

.text-center {
  text-align: center;
}

.text-accent {
  color: var(--accent);
}

.text-secondary {
  color: var(--text-secondary);
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.heading-xl {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.heading-lg {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

.heading-md {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.heading-sm {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
}

.subheadline {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 720px;
}

.body-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* --- Gradient Text --- */
.gradient-text {
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 50%, var(--text-primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: normal;
  text-align: center;
  max-width: 100%;
}

.btn--primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 0 0 var(--accent-glow);
}

.btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.btn--ghost {
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
}

.btn--ghost:hover {
  color: var(--text-primary);
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-arrow {
  transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* --- Glass Card --- */
.glass-card {
  background: var(--surface-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-base);
}

.glass-card:hover {
  background: var(--surface-glass-hover);
  border-color: var(--border-default);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.glass-card--static:hover {
  transform: none;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-base);
}

.nav.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem);
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__logo-image {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text-primary);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  margin-left: 1rem;
}

/* Mobile Nav Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.3;
  filter: blur(80px);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 166, 66, 0.1) 0%, transparent 70%);
  opacity: 0.4;
  filter: blur(60px);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__content {
  max-width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--accent-soft);
  border: 1px solid rgba(200, 166, 66, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
  margin-bottom: 1rem;
}

.hero__subtitle {
  margin-bottom: 1.5rem;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero__cta-note {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

/* Hero Dashboard Mockup */
.hero__dashboard {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 500px;
}

.dashboard-card {
  background: var(--surface-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

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

.dashboard__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}

.dashboard__status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--success);
}

.dashboard__status-dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.metric-card {
  background: var(--surface-glass-strong);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}

.metric-card__value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.metric-card__label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dashboard__messages {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.message-bubble {
  background: var(--surface-glass-strong);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
  position: relative;
  animation: fadeInUp 0.6s ease-out both;
}

.message-bubble:nth-child(2) {
  animation-delay: 0.3s;
}

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

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

.section-header .label {
  margin-bottom: 1rem;
  display: block;
}

.section-header .heading-lg {
  margin-bottom: 1rem;
}

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

/* --- Problem Section --- */
.problem__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.problem-card {
  padding: 1.75rem;
}

.problem-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  background: var(--danger-soft);
  color: var(--danger);
}

.problem-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.problem-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.problem__conclusion {
  margin-top: 2.5rem;
  padding: 2rem;
  border-left: 3px solid var(--accent);
  background: var(--surface-glass);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* --- Outcomes Section --- */
.outcomes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.outcome-card {
  padding: 2rem;
}

.outcome-card__number {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-weight: 800;
  font-size: 1rem;
  font-family: var(--font-heading);
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(200, 166, 66, 0.2);
}

.outcome-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.outcome-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Who It's For Section --- */
.who__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  width: 100%;
}

@media (min-width: 992px) {
  .who__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.who-column {
  padding: 2.5rem;
}

.who-column__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.who-column__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.who-column__icon--yes {
  background: var(--success-soft);
  color: var(--success);
}

.who-column__icon--no {
  background: var(--danger-soft);
  color: var(--danger);
}

.who-column__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.who-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.who-item__marker {
  flex-shrink: 0;
  margin-top: 0.2rem;
  font-size: 0.85rem;
}

.who-item__marker--yes {
  color: var(--success);
}

.who-item__marker--no {
  color: var(--danger);
}

/* --- Services / Ecosystem Section --- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.service-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  grid-column: span 12;
}

@media (min-width: 992px) {
  .service-card:nth-child(1) {
    grid-column: span 7;
  }
  .service-card:nth-child(2) {
    grid-column: span 5;
  }
  .service-card:nth-child(3) {
    grid-column: span 4;
  }
  .service-card:nth-child(4) {
    grid-column: span 4;
  }
  .service-card:nth-child(5) {
    grid-column: span 4;
  }
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(200, 166, 66, 0.2);
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* --- Process Steps --- */
.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--border-subtle), var(--accent));
  opacity: 0.3;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.process-step__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-weight: 800;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  background: var(--accent-soft);
  color: var(--accent);
  border: 2px solid rgba(200, 166, 66, 0.25);
  position: relative;
  z-index: 1;
}

.process-step__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.process-step__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.process-step__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Mantras / Differentiators --- */
.mantras__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
  width: 100%;
}

@media (min-width: 640px) {
  .mantras__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .mantras__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mantra-item {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.mantra-item__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(200, 166, 66, 0.2);
}

.mantra-item__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.mantra-item__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.diff-card {
  padding: 1.75rem;
}

.diff-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.diff-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Testimonials --- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  position: relative;
}

.testimonial-card__quote {
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.3;
  font-family: serif;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
}

.testimonial-card__name {
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* --- Pricing Section --- */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  width: 100%;
}

.pricing-card {
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  border-color: var(--accent);
  background: rgba(200, 166, 66, 0.04);
}

.pricing-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
}

.pricing-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pricing-card__desc {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-bottom: 1.25rem;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.pricing-card__period {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-bottom: 2rem;
}

.pricing-card__divider {
  height: 1px;
  background: var(--border-subtle);
  margin-bottom: 1.5rem;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-feature__check {
  flex-shrink: 0;
  color: var(--success);
  margin-top: 0.15rem;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* --- Founder Section --- */
.founder__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}

.founder__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--surface-glass-strong));
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
}

.founder__name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.founder__role {
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.founder__text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* --- FAQ Section --- */
.faq__list {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
}

@media (min-width: 900px) {
  .faq__list {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
  }
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item.active {
  border-color: var(--border-default);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--surface-glass);
  text-align: left;
  transition: background var(--transition-fast);
}

.faq-item__question:hover {
  background: var(--surface-glass-hover);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  transition: transform var(--transition-base), color var(--transition-fast);
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 60%);
  opacity: 0.15;
  filter: blur(60px);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
}

.cta-section .heading-lg {
  margin-bottom: 1rem;
}

.cta-section .subheadline {
  margin: 0 auto 2rem;
}

.cta-section__note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-tertiary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Footer --- */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

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

.footer__brand {
  max-width: 350px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__logo-image {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.footer__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer__col-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer__link:hover {
  color: var(--accent);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* --- Page Hero (non-home pages) --- */
.page-hero {
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 65%);
  opacity: 0.15;
  filter: blur(60px);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero .heading-xl {
  margin-bottom: 1rem;
}

.page-hero .subheadline {
  margin: 0 auto;
}

/* --- Service Detail Cards (Services Page) --- */
.phase-section {
  padding: 3rem 0;
}

.phase__header {
  margin-bottom: 2rem;
}

.phase__price-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--accent-soft);
  border: 1px solid rgba(200, 166, 66, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}

.deliverables-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
}

.deliverable-item__check {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 0.15rem;
}

/* Tier comparison on services page */
.tiers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.tier-card {
  padding: 2.5rem;
}

.tier-card__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.tier-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.tier-card__price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.tier-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-tertiary);
}

.tier-card__subtitle {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-top: 0.25rem;
}

.tier-card__section {
  margin-bottom: 1.5rem;
}

.tier-card__section-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* Anti-spam section */
.anti-spam {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.anti-spam__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.anti-spam__icon {
  color: var(--danger);
  flex-shrink: 0;
}

/* Synergy section */
.synergy__points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
  width: 100%;
}

@media (min-width: 768px) {
  .synergy__points {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.synergy-point {
  padding: 2rem;
  text-align: center;
}

.synergy-point__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.synergy-point__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* --- Contact Page --- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  width: 100%;
}

@media (min-width: 992px) {
  .contact__grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(3rem, 5vw, 5rem);
    align-items: stretch;
  }
}

.contact-info {
  padding: 2.5rem;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-form {
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--surface-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

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

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

/* --- 404 Page --- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-page__code {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 900;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -1rem;
}

.error-page__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.error-page__text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Divider --- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-default), transparent);
  margin: 0 auto;
  max-width: 600px;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__dashboard {
    max-width: 600px;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .tiers__grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #080808;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
    z-index: 9999;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__link {
    font-size: 1.35rem;
    font-weight: 600;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 1rem;
  }

  .nav__toggle {
    display: flex;
    position: relative;
    z-index: 10000;
  }

  .hero {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .problem__grid,
  .outcomes__grid,
  .mantras__list,
  .differentiators__grid {
    grid-template-columns: 1fr;
  }

  .who__grid {
    grid-template-columns: 1fr;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process__steps::before {
    display: none;
  }

  .dashboard__metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .founder__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder__avatar {
    margin: 0 auto;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .synergy__points {
    grid-template-columns: 1fr;
  }

  .anti-spam {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 1fr;
  }
}

/* --- Subtle Grid Background --- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

/* Ensure content sits above grid */
body > * {
  position: relative;
  z-index: 1;
}

/* --- Scrollbar Styling --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-default);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--border-strong);
}

/* --- Selection --- */
::selection {
  background: var(--accent);
  color: #000;
}

/* --- Page Load Animation --- */
.page-loading {
  opacity: 0;
}

.page-loaded {
  opacity: 1;
  transition: opacity 0.6s ease-out;
}

/* --- Floating Orbs (Hero ambient) --- */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero__orb--1 {
  width: 400px;
  height: 400px;
  top: -10%;
  right: -5%;
  background: rgba(200, 166, 66, 0.12);
  animation: float-orb 8s ease-in-out infinite;
}

.hero__orb--2 {
  width: 300px;
  height: 300px;
  bottom: -15%;
  left: -8%;
  background: rgba(200, 166, 66, 0.08);
  animation: float-orb 12s ease-in-out infinite reverse;
}

.hero__orb--3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 50%;
  background: rgba(255, 255, 255, 0.03);
  animation: float-orb 10s ease-in-out infinite 2s;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  50% { transform: translate(-15px, 15px) scale(0.95); }
  75% { transform: translate(20px, 10px) scale(1.02); }
}

/* --- Back to Top Button --- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface-glass-strong);
  border: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--accent-soft);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-circle path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-dasharray: 308;
  stroke-dashoffset: 308;
  transition: stroke-dashoffset 0.1s linear, stroke var(--transition-base);
}

.back-to-top-icon {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

/* --- Luxury Floating Strategy Call Hover Pill --- */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: auto;
  z-index: 920;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.4rem;
  background: rgba(14, 16, 22, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 166, 66, 0.35);
  border-radius: var(--radius-full);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(200, 166, 66, 0.15);
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: all var(--transition-base);
  pointer-events: none;
  text-decoration: none;
  cursor: pointer;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-cta:hover {
  background: linear-gradient(135deg, rgba(200, 166, 66, 0.25) 0%, rgba(20, 24, 33, 0.98) 100%);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7), 0 0 30px var(--accent-glow);
}

.floating-cta__dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

.floating-cta__text {
  color: #f3f4f6;
  transition: color var(--transition-fast);
}

.floating-cta:hover .floating-cta__text {
  color: var(--accent);
}

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}

@media (max-width: 768px) {
  .floating-cta {
    left: 1.25rem;
    right: auto;
    bottom: 1.25rem;
    padding: 0.65rem 1.1rem;
    font-size: 0.82rem;
  }
  
  .back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
  }
}

/* --- Social Proof / Stats Strip --- */
.stats-strip {
  padding: 3rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
  width: 100%;
}

.stats-strip__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
}

@media (min-width: 640px) {
  .stats-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-strip__inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.stat-item {
  text-align: center;
}

.stat-item__value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}

.stat-item__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* --- Enhanced Pricing Card Glow (Featured) --- */
.pricing-card--featured {
  box-shadow:
    0 0 0 1px var(--accent),
    0 0 30px rgba(200, 166, 66, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.3);
}

.pricing-card--featured:hover {
  box-shadow:
    0 0 0 1px var(--accent-hover),
    0 0 50px rgba(200, 166, 66, 0.15),
    0 12px 40px rgba(0, 0, 0, 0.4);
}

/* --- Typing cursor on dashboard messages --- */
.message-bubble::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink-cursor 1s step-end infinite;
}

.message-bubble:last-child::after {
  display: none;
}

@keyframes blink-cursor {
  50% { opacity: 0; }
}

/* --- Staggered dashboard metric cards --- */
.metric-card {
  animation: metric-pop 0.5s ease-out both;
}

.metric-card:nth-child(1) { animation-delay: 0.2s; }
.metric-card:nth-child(2) { animation-delay: 0.4s; }
.metric-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes metric-pop {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* --- Noise Texture Overlay (premium depth) --- */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* --- Service card icon glow on hover --- */
.service-card:hover .service-card__number {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 20px var(--accent-glow);
  transition: all var(--transition-base);
}

.service-card__number {
  transition: all var(--transition-base);
}

/* --- Outcome card number glow on hover --- */
.outcome-card:hover .outcome-card__number {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 16px var(--accent-glow);
  transition: all var(--transition-base);
}

.outcome-card__number {
  transition: all var(--transition-base);
}

/* --- Process step number glow on hover --- */
.process-step:hover .process-step__number {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
  transition: all var(--transition-base);
}

.process-step__number {
  transition: all var(--transition-base);
}

/* --- Improved mobile dashboard (keep 3-col) --- */
@media (max-width: 768px) {
  .dashboard__metrics {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.5rem;
  }

  .metric-card {
    padding: 0.75rem 0.5rem;
  }

  .metric-card__value {
    font-size: 1.2rem;
  }

  .metric-card__label {
    font-size: 0.6rem;
  }

  .stats-strip__inner {
    gap: 2rem;
  }

  .back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
  }
}

/* --- Smooth link underline hover for footer --- */
.footer__link {
  position: relative;
}

.footer__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition-base);
}

.footer__link:hover::after {
  width: 100%;
}

/* --- Showcase (Z-Pattern) --- */
.showcase {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 2rem 0;
}

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

@media (min-width: 992px) {
  .showcase__row {
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(3rem, 5vw, 6rem);
  }
  
  .showcase__row--reverse .showcase__content {
    order: 2;
  }
  .showcase__row--reverse .showcase__visual {
    order: 1;
  }
}

.showcase__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.showcase__content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.showcase__visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.showcase__visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: var(--accent);
  filter: blur(80px);
  opacity: 0.2;
  border-radius: 50%;
}

.showcase__icon {
  width: 80px;
  height: 80px;
  color: var(--accent);
  position: relative;
  z-index: 2;
}

/* ============================================================
   Bespoke UI Upgrades: Spotlight, Typography, Hero Artifacts,
   Friction vs. Flow, Pipeline Calculator, & Interactive Teardowns
   ============================================================ */

/* --- Editorial Typography Helpers --- */
.font-accent {
  font-family: var(--font-accent);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
}

.heading-xl .font-accent,
.heading-lg .font-accent {
  font-size: 1.1em;
  color: var(--accent);
  text-shadow: 0 0 25px rgba(200, 166, 66, 0.35);
}

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

/* --- Dynamic Spotlight Cards --- */
.spotlight-card {
  position: relative;
  background: rgba(12, 13, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: radial-gradient(
    450px circle at var(--mouse-x, -999px) var(--mouse-y, -999px),
    rgba(200, 166, 66, 0.5),
    transparent 50%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
}

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

.spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.8), 0 0 35px -8px var(--accent-glow);
  border-color: rgba(200, 166, 66, 0.25);
}

/* --- Shimmer Buttons --- */
.btn--primary {
  position: relative;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.btn--primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 35%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 65%
  );
  transform: rotate(25deg) translateX(-150%);
  animation: buttonShimmer 4.5s infinite cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

@keyframes buttonShimmer {
  0%, 25% { transform: rotate(25deg) translateX(-150%); }
  60%, 100% { transform: rotate(25deg) translateX(150%); }
}

/* --- Executive Dossier Card in Hero --- */
.hero-dossier {
  background: rgba(13, 16, 23, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 166, 66, 0.22);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(200, 166, 66, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-dossier__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-dossier__tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-dossier__pill {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  background: rgba(200, 166, 66, 0.1);
  border: 1px solid rgba(200, 166, 66, 0.25);
  border-radius: var(--radius-full);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-dossier__founder {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-dossier__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #997722);
  color: #000;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(200, 166, 66, 0.4);
  flex-shrink: 0;
}

.hero-dossier__name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-dossier__role {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.15rem;
}

.hero-dossier__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.hero-dossier__metric-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.6rem;
  text-align: center;
  transition: all 0.3s ease;
}

.hero-dossier__metric-item:hover {
  background: rgba(200, 166, 66, 0.05);
  border-color: rgba(200, 166, 66, 0.25);
}

.hero-dossier__metric-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-heading);
}

.hero-dossier__metric-lbl {
  font-size: 0.68rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}

.hero-dossier__pipeline-flow {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-dossier__flow-step {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.84rem;
  color: #d1d5db;
  line-height: 1.45;
}

.hero-dossier__step-num {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(200, 166, 66, 0.15);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-dossier__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

/* --- Friction vs. Flow Comparison Board --- */
.comparison-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 992px) {
  .comparison-board {
    grid-template-columns: 1fr 1fr;
  }
}

.friction-card {
  background: linear-gradient(180deg, rgba(248, 113, 113, 0.04) 0%, rgba(12, 13, 15, 0.9) 100%);
  border: 1px solid rgba(248, 113, 113, 0.2);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.flow-card {
  background: linear-gradient(180deg, rgba(200, 166, 66, 0.08) 0%, rgba(12, 13, 15, 0.9) 100%);
  border: 1px solid rgba(200, 166, 66, 0.35);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.8), 0 0 30px -5px var(--accent-glow);
}

.comparison-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-title {
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.comparison-icon--bad {
  width: 22px;
  height: 22px;
  background: var(--danger-soft);
  color: var(--danger);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-icon--good {
  width: 22px;
  height: 22px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(200, 166, 66, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Interactive Pipeline & ROI Calculator --- */
.calc-container {
  background: linear-gradient(180deg, rgba(14, 16, 20, 0.95) 0%, rgba(8, 9, 11, 0.98) 100%);
  border: 1px solid rgba(200, 166, 66, 0.28);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.8), 0 0 40px -10px var(--accent-glow);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}

@media (min-width: 992px) {
  .calc-container {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.calc-slider-box {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.calc-val-pill {
  padding: 0.3rem 0.85rem;
  background: var(--accent-soft);
  border: 1px solid rgba(200, 166, 66, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-heading);
}

/* Custom Range Input */
.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  transition: background 0.2s;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-gold-gradient);
  cursor: pointer;
  box-shadow: 0 0 15px var(--accent-glow);
  border: 2px solid #000;
  transition: transform 0.15s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.18);
}

.calc-results-box {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.calc-results-box::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: var(--accent);
  filter: blur(70px);
  opacity: 0.18;
  border-radius: 50%;
  pointer-events: none;
}

.calc-main-result {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.calc-main-result__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}

.calc-main-result__val {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  font-family: var(--font-heading);
  background: var(--accent-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.calc-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.calc-sub-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.calc-sub-item__val {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-heading);
}

.calc-sub-item__lbl {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* --- Infinite Marquee Strip --- */
.marquee-strip {
  width: 100%;
  overflow: hidden;
  padding: 1.5rem 0;
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-primary) 0%, transparent 100%);
}

.marquee-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-primary) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.marquee-item span {
  color: var(--accent);
}

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

/* --- Interactive Before/After Profile Teardown --- */
.teardown-container {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.teardown-toggle-bar {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 0.35rem;
  align-self: center;
  gap: 0.35rem;
}

.teardown-tab-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all var(--transition-base);
  cursor: pointer;
}

.teardown-tab-btn.active {
  background: var(--accent-gold-gradient);
  color: #000;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.teardown-card {
  background: rgba(14, 16, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  transition: all var(--transition-slow);
}

.teardown-card--after {
  border-color: rgba(200, 166, 66, 0.4);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.8), 0 0 35px -8px var(--accent-glow);
}

/* --- Verified Testimonials --- */
.testimonials-grid-modern {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 3rem;
}

@media (min-width: 992px) {
  .testimonials-grid-modern {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rec-card {
  background: rgba(13, 14, 17, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.rec-card__quote {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #d1d5db;
  position: relative;
}

.rec-card__author-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rec-card__avatar-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(200, 166, 66, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--accent);
  flex-shrink: 0;
}

.rec-card__author-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.rec-card__author-role {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.rec-card__deal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.4rem;
  padding: 0.25rem 0.6rem;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--success);
}

@media (max-width: 640px) {
  .hero-dossier__metrics {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .calc-sub-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Widescreen Canvas & Table Deliverable Enhancements
   ============================================================ */

/* --- Comprehensive Pricing Comparison Matrix --- */
.pricing-matrix-section {
  margin-top: 5rem;
  width: 100%;
}

.pricing-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(14, 16, 20, 0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  margin-top: 2rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 860px;
}

.pricing-table th,
.pricing-table td {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-table th {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.pricing-table th:first-child {
  width: 34%;
}

.pricing-table th:nth-child(2),
.pricing-table th:nth-child(3),
.pricing-table th:nth-child(4) {
  width: 22%;
  text-align: center;
}

.pricing-table td:nth-child(2),
.pricing-table td:nth-child(3),
.pricing-table td:nth-child(4) {
  text-align: center;
}

.pricing-table tbody tr:hover {
  background: rgba(200, 166, 66, 0.03);
}

.pricing-table__category {
  background: rgba(200, 166, 66, 0.08) !important;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.pricing-table__feature-title {
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
}

.pricing-table__feature-desc {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-top: 0.2rem;
}

/* --- About Page Widescreen Enhancements --- */
.about-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  width: 100%;
}

@media (min-width: 992px) {
  .about-split-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: stretch;
  }
}

.founder-card-wide {
  padding: clamp(2rem, 4vw, 3.5rem);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .founder-card-wide {
    grid-template-columns: 200px 1fr;
    gap: 3.5rem;
  }
}

/* --- Widescreen CTA Enhancement --- */
.cta-section__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

