/* ----- Custom Properties ----- */
:root {
  /* Brand Colors */
  --violet: #834DFB;
  --violet-rgb: 131, 77, 251;
  --violet-light: #A47AFF;
  --violet-dark: #6B30E0;
  --yellow: #F0E100;
  --yellow-rgb: 240, 225, 0;
  --lime: #BFFF00;
  --lime-rgb: 191, 255, 0;

  /* Neutrals */
  --black: #0A0A0A;
  --black-rgb: 10, 10, 10;
  --haiti: #18102B;
  --haiti-rgb: 24, 16, 43;
  --haiti-light: #241838;
  --surface: #1A1128;
  --chalk: #F5F3FF;
  --chalk-rgb: 245, 243, 255;
  --muted: #9B8FBF;
  --muted-light: #C4BBD9;

  /* Typography */
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Exo 2', sans-serif;

  /* Sizing */
  --nav-h: 80px;
  --section-pad: clamp(40px, 5vw, 70px);
  --container: 1220px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --speed: 0.35s;
  --speed-fast: 0.2s;
  --speed-slow: 0.6s;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--chalk);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

::selection {
  background: rgba(var(--violet-rgb), 0.4);
  color: var(--chalk);
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  background: none;
  color: inherit;
}

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

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ----- Shared Section ----- */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--violet);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-block;
  box-shadow: 0 0 10px rgba(var(--yellow-rgb), 0.5);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--chalk);
  margin-bottom: 24px;
  max-width: 700px;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  max-width: 600px;
  line-height: 1.8;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 16px 36px;
  border-radius: 60px;
  transition: all var(--speed) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 4px 30px rgba(var(--violet-rgb), 0.25);
  padding-right: 56px;
}

.btn-primary:hover {
  background: var(--violet-light);
  box-shadow: 0 8px 40px rgba(var(--violet-rgb), 0.4);
  transform: translateY(-2px);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(var(--yellow-rgb), 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

.btn-secondary {
  background: transparent;
  color: var(--chalk);
  border: 1px solid rgba(var(--chalk-rgb), 0.15);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  border-color: var(--violet);
  color: var(--violet-light);
  background: rgba(var(--violet-rgb), 0.08);
  transform: translateY(-2px);
}

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

.btn-outline-violet:hover {
  background: var(--violet);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 12px 28px;
  font-size: 0.9rem;
}

.btn-primary.btn-sm {
  padding-right: 44px;
}

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

/* ----- Scroll Reveal Animations ----- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--speed-slow) var(--ease-out), transform var(--speed-slow) var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--speed-slow) var(--ease-out), transform var(--speed-slow) var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--speed-slow) var(--ease-out), transform var(--speed-slow) var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity var(--speed-slow) var(--ease-out), transform var(--speed-slow) var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* stagger children */
.stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger > .reveal:nth-child(6) { transition-delay: 0.5s; }


/* ============================================================
   1. NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 1000;
  transition: all var(--speed) var(--ease);
  display: flex;
  align-items: center;
}

.nav.scrolled {
  background: rgba(var(--black-rgb), 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(var(--violet-rgb), 0.08);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.nav-logo img {
  height: 42px;
  width: auto;
}

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

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-light);
  transition: color var(--speed-fast) var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--violet);
  transition: width var(--speed) var(--ease);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: 20px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--chalk);
  transition: all var(--speed) var(--ease);
  border-radius: 2px;
}

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

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

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


/* ============================================================
   2. HERO SECTION
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.4;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(var(--violet-rgb), 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(var(--haiti-rgb), 0.6) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.hero-content {
  max-width: 640px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--violet-rgb), 0.1);
  border: 1px solid rgba(var(--violet-rgb), 0.2);
  border-radius: 60px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--violet-light);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}

.hero-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px rgba(var(--lime-rgb), 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--violet), var(--violet-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .yellow-accent {
  color: var(--yellow);
  -webkit-text-fill-color: var(--yellow);
}

.hero-description {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--muted-light);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(var(--violet-rgb), 0.12);
}

.hero-stat-val {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--chalk);
  line-height: 1;
}

.hero-stat-val span {
  color: var(--yellow);
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 6px;
}

/* Hero Image */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 420px;
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, var(--black) 0%, transparent 100%);
  pointer-events: none;
}

.hero-image-glow {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(var(--violet-rgb), 0.15) 0%, transparent 65%);
  z-index: -1;
  pointer-events: none;
  animation: glow-breathe 6s ease-in-out infinite;
}

@keyframes glow-breathe {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-float-card {
  position: absolute;
  background: rgba(var(--haiti-rgb), 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(var(--violet-rgb), 0.15);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.82rem;
  color: var(--chalk);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: float 4s ease-in-out infinite;
}

.hero-float-card.card-1 {
  bottom: 20%;
  left: -30px;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  top: 15%;
  right: -20px;
  animation-delay: 1.5s;
}

.hero-float-card .card-icon {
  margin-bottom: 6px;
}

.hero-float-card .card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--violet-light);
  stroke-width: 2;
}

.hero-float-card .card-val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--yellow);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce-scroll 2.5s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
  stroke: var(--violet);
}

@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}


/* ============================================================
   3. AUTHORITY MARQUEE
   ============================================================ */

.authority-strip {
  padding: 48px 0;
  background: linear-gradient(135deg, rgba(var(--violet-rgb), 0.06) 0%, rgba(var(--haiti-rgb), 0.5) 100%);
  border-top: 1px solid rgba(var(--violet-rgb), 0.08);
  border-bottom: 1px solid rgba(var(--violet-rgb), 0.08);
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.marquee-item .sep {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(var(--violet-rgb), 0.4);
}

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


/* ============================================================
   4. PROBLEM → SOLUTION ("THE GAP")
   ============================================================ */

.gap-section {
  background: var(--black);
}

.gap-grid {
  display: grid;
  gap: 16px;
  margin-top: 48px;
}

.gap-card {
  background: rgba(var(--haiti-rgb), 0.4);
  border: 1px solid rgba(var(--violet-rgb), 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--speed) var(--ease);
}

.gap-card:hover {
  border-color: rgba(var(--violet-rgb), 0.2);
  background: rgba(var(--haiti-rgb), 0.6);
}

.gap-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  gap: 20px;
}

.gap-card-num {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  width: 32px;
}

.gap-card-problem {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--chalk);
  line-height: 1.5;
}

.gap-card-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(var(--violet-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--speed) var(--ease);
  flex-shrink: 0;
}

.gap-card-toggle svg {
  width: 14px;
  height: 14px;
  stroke: var(--violet);
  transition: transform var(--speed) var(--ease);
}

.gap-card.open .gap-card-toggle {
  background: var(--violet);
  border-color: var(--violet);
}

.gap-card.open .gap-card-toggle svg {
  stroke: #fff;
  transform: rotate(45deg);
}

.gap-card-solution {
  height: 0;
  overflow: hidden;
  transition: height var(--speed) var(--ease);
}

.gap-card-solution-inner {
  padding: 0 32px 28px 64px;
  color: var(--muted-light);
  font-size: 0.95rem;
  line-height: 1.8;
  border-top: 1px solid rgba(var(--violet-rgb), 0.08);
  padding-top: 20px;
  margin-left: 32px;
  margin-right: 32px;
  padding-left: 0;
  padding-right: 0;
}

.gap-card-solution-inner strong {
  color: var(--violet-light);
}


/* ============================================================
   5. CONTRARIAN TAKES ("WHAT I BELIEVE")
   ============================================================ */

.philosophy-section {
  background: linear-gradient(180deg, var(--black) 0%, rgba(var(--haiti-rgb), 0.3) 50%, var(--black) 100%);
  overflow: hidden;
}

.philosophy-carousel {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 24px;
  scrollbar-width: none;
  cursor: grab;
}

.philosophy-carousel::-webkit-scrollbar {
  display: none;
}

.philosophy-carousel:active {
  cursor: grabbing;
}

.philosophy-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: rgba(var(--haiti-rgb), 0.6);
  border: 1px solid rgba(var(--violet-rgb), 0.1);
  border-left: 3px solid var(--violet);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all var(--speed) var(--ease);
  position: relative;
}

.philosophy-card:hover {
  border-color: rgba(var(--violet-rgb), 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.philosophy-card-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.25;
}

.philosophy-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--chalk);
  line-height: 1.3;
}

.philosophy-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.carousel-controls {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(var(--violet-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--speed) var(--ease);
  background: rgba(var(--haiti-rgb), 0.4);
}

.carousel-btn:hover {
  background: var(--violet);
  border-color: var(--violet);
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--chalk);
}


/* ============================================================
   6. WHY ME (VS. COMPARISON)
   ============================================================ */

.compare-section {
  background: var(--black);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.compare-card {
  background: rgba(var(--haiti-rgb), 0.4);
  border: 1px solid rgba(var(--violet-rgb), 0.08);
  border-radius: var(--radius);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all var(--speed) var(--ease);
}

.compare-card:hover {
  border-color: rgba(var(--violet-rgb), 0.2);
}

.compare-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--violet) 0%, transparent 100%);
}

.compare-card-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  background: rgba(var(--violet-rgb), 0.08);
  padding: 6px 14px;
  border-radius: 60px;
  margin-bottom: 24px;
}

.compare-card h3 {
  font-size: 1.5rem;
  color: var(--chalk);
  margin-bottom: 16px;
}

.compare-card p {
  color: var(--muted-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

.compare-card .result {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(var(--violet-rgb), 0.1);
  font-weight: 600;
  color: var(--violet-light);
  font-size: 0.95rem;
}


/* ============================================================
   7. PROCESS
   ============================================================ */

.process-section {
  background: linear-gradient(180deg, var(--black) 0%, rgba(var(--haiti-rgb), 0.2) 100%);
}

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

.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, rgba(var(--violet-rgb), 0.3), rgba(var(--violet-rgb), 0.05));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid rgba(var(--violet-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--speed) var(--ease);
  position: relative;
}

.process-step-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(var(--violet-rgb), 0.1);
  z-index: 0;
}

.process-step-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--chalk);
  stroke-width: 1.5;
  z-index: 1;
  position: relative;
}

.process-step-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--violet-rgb), 0.15), transparent 70%);
  z-index: -1;
}

.process-step:hover .process-step-icon {
  background: var(--black);
  border-color: var(--violet);
  transform: scale(1.08);
}

.process-step:hover .process-step-icon::before {
  background: rgba(var(--violet-rgb), 0.2);
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.process-step h4 {
  font-size: 1.15rem;
  color: var(--chalk);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}


/* ============================================================
   8. PRICING
   ============================================================ */

.pricing-section {
  background: var(--black);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}

.pricing-card {
  background: rgba(var(--haiti-rgb), 0.4);
  border: 1px solid rgba(var(--violet-rgb), 0.08);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: all var(--speed) var(--ease);
}

.pricing-card:hover {
  border-color: rgba(var(--violet-rgb), 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.pricing-card.featured {
  border-color: var(--violet);
  background: linear-gradient(180deg, rgba(var(--violet-rgb), 0.12) 0%, rgba(var(--haiti-rgb), 0.6) 100%);
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(var(--violet-rgb), 0.15);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--violet);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 60px;
  box-shadow: 0 4px 20px rgba(var(--violet-rgb), 0.3);
}

.pricing-badge.vip {
  background: linear-gradient(135deg, var(--violet), #B16CE8);
}

.pricing-tier {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--violet-light);
  margin-bottom: 8px;
}

.pricing-name {
  font-size: 1.8rem;
  color: var(--chalk);
  margin-bottom: 4px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--chalk);
  margin: 16px 0 4px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}

.pricing-commitment {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.pricing-for {
  font-size: 0.88rem;
  color: var(--muted-light);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(var(--violet-rgb), 0.1);
  line-height: 1.6;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted-light);
  line-height: 1.5;
}

.pricing-features li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: var(--violet);
  margin-top: 2px;
}

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

/* One-off pricing */
.oneoff-section {
  margin-top: 80px;
}

.oneoff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.oneoff-card {
  background: rgba(var(--haiti-rgb), 0.3);
  border: 1px solid rgba(var(--violet-rgb), 0.06);
  border-radius: var(--radius-sm);
  padding: 28px;
  transition: all var(--speed) var(--ease);
}

.oneoff-card:hover {
  border-color: rgba(var(--violet-rgb), 0.15);
  background: rgba(var(--haiti-rgb), 0.5);
}

.oneoff-card h4 {
  font-size: 1.1rem;
  color: var(--chalk);
  margin-bottom: 4px;
}

.oneoff-card .oneoff-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 10px;
}

.oneoff-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-cta-row {
  text-align: center;
  margin-top: 56px;
}

.pricing-cta-row p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}


/* ============================================================
   9. TESTIMONIALS
   ============================================================ */

.testimonials-section {
  background: linear-gradient(180deg, var(--black) 0%, rgba(var(--haiti-rgb), 0.25) 100%);
}

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

.testimonial-card {
  background: rgba(var(--haiti-rgb), 0.45);
  border: 1px solid rgba(var(--violet-rgb), 0.08);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all var(--speed) var(--ease);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: rgba(var(--violet-rgb), 0.2);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--yellow);
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--chalk);
  line-height: 1.8;
  margin-bottom: 28px;
  flex: 1;
  font-style: italic;
}

.testimonial-quote::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--violet);
  line-height: 0.7;
  vertical-align: bottom;
  margin-right: 4px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(var(--violet-rgb), 0.1);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--chalk);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}


/* ============================================================
   10. ABOUT / BRAND IDENTITY
   ============================================================ */

.about-section {
  background: var(--black);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(var(--black-rgb), 0.6) 100%);
  pointer-events: none;
}

.about-image-border {
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(var(--violet-rgb), 0.15);
  pointer-events: none;
}

.mobile-label {
  display: none;
}

.desktop-label {
  display: flex;
}

.about-content .elevator-pitch {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--muted-light);
  line-height: 1.9;
  margin-bottom: 40px;
}

.archetypes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.archetype {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(var(--haiti-rgb), 0.3);
  border: 1px solid rgba(var(--violet-rgb), 0.06);
  border-radius: var(--radius-sm);
  transition: all var(--speed) var(--ease);
}

.archetype:hover {
  border-color: rgba(var(--violet-rgb), 0.15);
  background: rgba(var(--haiti-rgb), 0.5);
}

.archetype-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-xs);
  background: rgba(var(--violet-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.archetype-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--violet-light);
  stroke-width: 1.5;
}

.archetype-tag {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: 2px;
}

.archetype h4 {
  font-size: 1.05rem;
  color: var(--chalk);
  margin-bottom: 4px;
}

.archetype p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}


/* ============================================================
   11. CTA / CONTACT
   ============================================================ */

.cta-section {
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(var(--violet-rgb), 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.cta-title .highlight {
  background: linear-gradient(135deg, var(--violet), var(--violet-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 1.15rem;
  color: var(--muted-light);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-email {
  margin-top: 32px;
  font-size: 0.88rem;
  color: var(--muted);
}

.cta-email a {
  color: var(--violet-light);
  transition: color var(--speed-fast);
}

.cta-email a:hover {
  color: var(--yellow);
}


/* ============================================================
   12. FOOTER
   ============================================================ */

.footer {
  margin-top: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(var(--violet-rgb), 0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo img {
  height: 32px;
  opacity: 0.6;
  transition: opacity var(--speed-fast);
}

.footer-logo:hover img {
  opacity: 1;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-credit {
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-credit span {
  color: #E65100;
  font-weight: 600;
}

.footer-credit a {
  text-decoration: none;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(var(--violet-rgb), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--speed) var(--ease);
}

.footer-socials a:hover {
  background: rgba(var(--violet-rgb), 0.15);
  border-color: var(--violet);
  transform: translateY(-2px);
}

.footer-socials a svg {
  width: 16px;
  height: 16px;
  fill: var(--muted-light);
  transition: fill var(--speed-fast);
}

.footer-socials a:hover svg {
  fill: var(--chalk);
}


/* Scroll to Top */
.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--violet);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--speed) var(--ease);
  box-shadow: 0 4px 20px rgba(var(--violet-rgb), 0.3);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--violet-light);
  transform: translateY(-4px);
}

.scroll-to-top svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image-wrapper {
    width: 320px;
    height: 380px;
    margin: 0 auto;
  }

  .hero-float-card.card-1 {
    left: 10%;
  }

  .hero-float-card.card-2 {
    right: 10%;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    gap: 40px;
  }

  .pricing-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-grid::before {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .mobile-label {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 24px;
    animation: none;
  }

  .desktop-label {
    display: none !important;
  }

  .about-image-wrapper {
    max-width: 360px;
    margin: 0 auto;
  }

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

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-h: 68px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: rgba(var(--haiti-rgb), 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right var(--speed) var(--ease);
    z-index: 999;
    border-left: 1px solid rgba(var(--violet-rgb), 0.1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-cta {
    margin-left: 0;
  }

  .nav-hamburger {
    display: flex;
  }

    .scroll-to-top {
      bottom: 20px;
      right: 20px;
    }

  .hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-float-card {
    display: none;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
      padding-bottom: 80px;
  }

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

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-left {
    align-items: center;
  }

  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.92rem;
  }
}

/* Mobile small */
@media (max-width: 480px) {
  .hero-image-wrapper {
    width: 260px;
    height: 320px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .gap-card-header {
    padding: 20px 20px;
  }

  .gap-card-solution-inner {
    margin-left: 20px;
    margin-right: 20px;
  }
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--speed) var(--ease);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 768px) {
  .btn-primary { padding-right: 32px !important; }
}
.btn.btn-primary { padding-right: 54px; }
