:root {
  --primary: #9B72CF;
  --primary-soft: #B794E0;
  --primary-pale: rgba(155, 114, 207, 0.12);
  --secondary: #E8A0BF;
  --secondary-soft: #F0BDD4;
  --accent: #F5C6A0;
  --accent-warm: #F0B088;
  --highlight: #FDF0D5;
  --highlight-warm: #FBE8C2;
  --bg: #FDF6F0;
  --bg-glass: rgba(255, 255, 255, 0.55);
  --bg-glass-strong: rgba(255, 255, 255, 0.72);
  --text: #2D1B42;
  --text-mid: #4A3660;
  --text-soft: #6E5F82;
  --text-muted: #7A6B90;
  --primary-text: #7B52AF;
  --border: rgba(155, 114, 207, 0.15);
  --border-hover: rgba(155, 114, 207, 0.3);
  --shadow-soft: 0 4px 32px rgba(155, 114, 207, 0.08);
  --shadow-card: 0 8px 40px rgba(155, 114, 207, 0.1);
  --shadow-elevated: 0 16px 64px rgba(155, 114, 207, 0.12);
  --grad-purple: #7B52AF;
  --grad-rose: #964F78;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══ ANIMATED CLOUD BACKGROUND ═══ */
.cloud-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.cloud-layer {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: cloudDrift 20s ease-in-out infinite;
}

.cloud-1 { width: 60vw; height: 60vw; top: -20vw; right: -15vw; background: radial-gradient(ellipse, var(--accent) 0%, transparent 70%); animation-duration: 25s; }
.cloud-2 { width: 50vw; height: 50vw; top: 10vh; left: -10vw; background: radial-gradient(ellipse, var(--secondary) 0%, transparent 70%); animation-duration: 30s; animation-delay: -5s; }
.cloud-3 { width: 45vw; height: 45vw; bottom: -10vw; left: 20vw; background: radial-gradient(ellipse, var(--highlight) 0%, transparent 70%); animation-duration: 22s; animation-delay: -10s; }
.cloud-4 { width: 40vw; height: 40vw; top: 40vh; right: 10vw; background: radial-gradient(ellipse, var(--primary-soft) 0%, transparent 70%); animation-duration: 28s; animation-delay: -15s; opacity: 0.35; }
.cloud-5 { width: 35vw; height: 35vw; bottom: 10vh; right: -5vw; background: radial-gradient(ellipse, var(--secondary-soft) 0%, transparent 70%); animation-duration: 32s; animation-delay: -8s; opacity: 0.4; }

@keyframes cloudDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(3vw, -2vh) scale(1.05); }
  50% { transform: translate(-2vw, 3vh) scale(0.95); }
  75% { transform: translate(1vw, -1vh) scale(1.02); }
}

/* ═══ FLOATING GEOMETRIC SHAPES ═══ */
.geo-shapes { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

.geo-shape {
  position: absolute;
  border: 1px solid rgba(155, 114, 207, 0.08);
  background: rgba(255, 255, 255, 0.04);
  animation: geoFloat linear infinite;
}

.geo-1 { width: 60px; height: 60px; top: 15%; left: 8%; animation-duration: 35s; border-radius: 12px; transform: rotate(15deg); border-color: rgba(232, 160, 191, 0.1); }
.geo-2 { width: 40px; height: 40px; top: 45%; right: 12%; animation-duration: 28s; animation-delay: -8s; border-radius: 50%; }
.geo-3 { width: 80px; height: 80px; top: 70%; left: 15%; animation-duration: 40s; animation-delay: -15s; border-radius: 16px; transform: rotate(45deg); border-color: rgba(245, 198, 160, 0.1); }
.geo-4 { width: 30px; height: 30px; top: 25%; right: 25%; animation-duration: 32s; animation-delay: -3s; border-radius: 50%; }
.geo-5 { width: 50px; height: 50px; top: 85%; right: 8%; animation-duration: 38s; animation-delay: -20s; border-radius: 14px; transform: rotate(30deg); border-color: rgba(155, 114, 207, 0.06); }
.geo-6 { width: 24px; height: 24px; top: 55%; left: 5%; animation-duration: 25s; animation-delay: -12s; border-radius: 50%; border-color: rgba(253, 240, 213, 0.15); }

@keyframes geoFloat {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  25% { opacity: 0.6; }
  50% { transform: translateY(-80px) rotate(180deg); opacity: 0.3; }
  75% { opacity: 0.5; }
  100% { transform: translateY(0) rotate(360deg); opacity: 0.3; }
}

/* Grain */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.025;
  background-image: 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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

/* ═══ NAV ═══ */
nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%); z-index: 1000;
  width: min(92%, 1100px); padding: 0 32px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.6); border-radius: 16px;
  box-shadow: var(--shadow-soft); transition: all 0.3s;
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--grad-purple), var(--grad-rose));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 13px;
  color: white; letter-spacing: 0.5px; box-shadow: 0 2px 12px rgba(155, 114, 207, 0.3);
}
.nav-logo-text { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 500; color: var(--text); letter-spacing: -0.3px; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: var(--text-mid); text-decoration: none; font-size: 13.5px; font-weight: 400; transition: color 0.25s; }
.nav-links a:hover { color: var(--primary-text); }
.nav-cta {
  padding: 9px 22px; background: linear-gradient(135deg, var(--grad-purple), var(--grad-rose));
  color: white !important; border-radius: 10px; font-weight: 500 !important;
  transition: all 0.3s !important; box-shadow: 0 2px 16px rgba(155, 114, 207, 0.25);
}
.nav-cta:hover { transform: translateY(-1px) !important; box-shadow: 0 4px 24px rgba(155, 114, 207, 0.35) !important; }

.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-mobile-toggle span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px 0; border-radius: 2px; }

/* ═══ HERO ═══ */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px clamp(24px, 5vw, 80px) 80px; position: relative; }
.hero-content { max-width: 780px; position: relative; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 18px;
  background: var(--bg-glass); border: 1px solid rgba(155, 114, 207, 0.2); border-radius: 100px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 300;
  color: var(--primary-text); letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 28px; backdrop-filter: blur(10px);
  opacity: 0; animation: softUp 0.8s ease forwards 0.2s;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); box-shadow: 0 0 10px var(--primary-soft);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }

.hero-title {
  font-family: 'Fraunces', serif; font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 400; line-height: 1.06; letter-spacing: -2px; color: var(--text);
  margin-bottom: 24px; opacity: 0; animation: softUp 0.8s ease forwards 0.35s;
}
.hero-title em {
  font-style: italic; font-weight: 300;
  background: linear-gradient(135deg, var(--grad-purple), var(--grad-rose));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 18px); line-height: 1.75; color: var(--text-mid);
  max-width: 540px; margin-bottom: 44px; font-weight: 300;
  opacity: 0; animation: softUp 0.8s ease forwards 0.5s;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: softUp 0.8s ease forwards 0.65s; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px;
  background: linear-gradient(135deg, var(--grad-purple), var(--grad-rose));
  color: white; border: none; border-radius: 12px; font-size: 15px; font-weight: 500;
  font-family: 'Outfit', sans-serif; cursor: pointer; transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(155, 114, 207, 0.25); text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(155, 114, 207, 0.35); }
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px; padding: 15px 30px;
  background: var(--bg-glass); color: var(--text); border: 1px solid var(--border-hover);
  border-radius: 12px; font-size: 15px; font-weight: 400; font-family: 'Outfit', sans-serif;
  cursor: pointer; transition: all 0.3s; text-decoration: none; backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: var(--primary); background: rgba(155, 114, 207, 0.08); transform: translateY(-2px); }

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

/* ═══ HERO MORPHING BLOB ═══ */
.hero-blob-wrap {
  position: absolute; right: clamp(20px, 8vw, 120px); top: 50%; transform: translateY(-50%);
  width: clamp(220px, 30vw, 400px); height: clamp(220px, 30vw, 400px);
  opacity: 0; animation: softUp 1s ease forwards 0.8s;
}
.hero-blob { width: 100%; height: 100%; }
.hero-blob svg { width: 100%; height: 100%; filter: drop-shadow(0 20px 60px rgba(155, 114, 207, 0.15)); }
.blob-shape { animation: morph 12s ease-in-out infinite; }

@keyframes morph {
  0%, 100% { d: path("M220,100 C280,20 380,60 380,160 C380,260 320,340 220,340 C120,340 60,280 60,180 C60,80 140,40 220,100 Z"); }
  25% { d: path("M240,80 C320,40 400,100 380,200 C360,300 280,360 200,340 C120,320 40,240 60,160 C80,80 160,60 240,80 Z"); }
  50% { d: path("M200,120 C300,60 400,120 360,220 C320,320 240,380 160,340 C80,300 20,220 60,140 C100,60 140,80 200,120 Z"); }
  75% { d: path("M260,90 C340,50 400,140 370,230 C340,320 260,370 180,350 C100,330 40,260 70,170 C100,80 180,50 260,90 Z"); }
}

/* ═══ STATS ═══ */
.stats-bar { padding: 0 clamp(24px, 5vw, 80px); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1100px; margin: 0 auto;
  background: var(--bg-glass-strong); backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-card);
}
.stat-item { padding: 36px 24px; text-align: center; border-right: 1px solid var(--border); transition: background 0.3s; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(155, 114, 207, 0.04); }
.stat-number { font-family: 'Fraunces', serif; font-size: clamp(30px, 3.5vw, 44px); font-weight: 500; color: var(--grad-purple); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 12.5px; color: var(--text-soft); font-weight: 300; letter-spacing: 0.3px; }

/* ═══ SECTION COMMON ═══ */
section { padding: 120px clamp(24px, 5vw, 80px); position: relative; }
.section-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 300; letter-spacing: 2.5px; text-transform: uppercase; color: var(--primary-text); margin-bottom: 14px; }
.section-title { font-family: 'Fraunces', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 400; letter-spacing: -1.5px; line-height: 1.12; color: var(--text); margin-bottom: 18px; }
.section-title em { font-style: italic; font-weight: 300; background: linear-gradient(135deg, var(--grad-purple), var(--grad-rose)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-desc { font-size: 16.5px; line-height: 1.75; color: var(--text-mid); max-width: 540px; font-weight: 300; }
.section-divider { position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--secondary-soft), var(--primary-soft), transparent); }

/* ═══ SVG ICON STYLING ═══ */
.icon-svg { width: 22px; height: 22px; stroke: var(--grad-purple); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.icon-svg-sm { width: 20px; height: 20px; stroke: var(--grad-purple); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ═══ PROBLEM ═══ */
.problem-layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.problem-visual {
  height: 420px; border-radius: 20px; background: var(--bg-glass); backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5); box-shadow: var(--shadow-card); overflow: hidden; position: relative;
}
.gap-svg-container { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.gap-svg-container svg { width: 90%; height: 80%; }

.gap-curve-ai, .gap-curve-biz { stroke-dasharray: 4 4; animation: dashFlow 2s linear infinite; }
.gap-curve-biz { animation-direction: reverse; }
@keyframes dashFlow { to { stroke-dashoffset: -40; } }
.gap-bridge-line { stroke-dasharray: 6 3; animation: bridgeGlow 3s ease-in-out infinite; }
@keyframes bridgeGlow { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

.problem-points { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.problem-point { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; border-radius: 14px; transition: all 0.3s; }
.problem-point:hover { background: var(--bg-glass); }
.problem-point-marker {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(123, 82, 175, 0.1), rgba(150, 79, 120, 0.1));
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 400; color: var(--primary-text);
}
.problem-point-text { font-size: 14.5px; color: var(--text-mid); line-height: 1.6; font-weight: 300; }
.problem-point-text strong { color: var(--text); font-weight: 500; }

/* ═══ SERVICES / PRICING ═══ */
.services-header { max-width: 1100px; margin: 0 auto 56px; }
.pricing-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }

.pricing-card {
  background: var(--bg-glass); backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 20px;
  padding: 40px 32px 36px; position: relative; transition: all 0.4s;
  cursor: default; box-shadow: var(--shadow-soft); overflow: hidden;
  display: flex; flex-direction: column;
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: 20px 20px 0 0; opacity: 0; transition: opacity 0.4s;
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }

/* Tier-specific accent colours */
.pricing-card.tier-1::before { background: var(--accent); }
.pricing-card.tier-2::before { background: linear-gradient(90deg, var(--primary), var(--secondary)); }
.pricing-card.tier-3::before { background: linear-gradient(90deg, var(--grad-purple), var(--grad-rose)); }

/* Featured card */
.pricing-card.featured {
  background: var(--bg-glass-strong);
  border-color: rgba(155, 114, 207, 0.25);
  box-shadow: var(--shadow-card);
}
.pricing-card.featured::before { opacity: 1; }

.pricing-badge {
  position: absolute; top: 16px; right: 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 9px; font-weight: 400;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  background: linear-gradient(135deg, var(--grad-purple), var(--grad-rose));
  color: white;
}

.pricing-tier-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 300;
  letter-spacing: 2px; text-transform: uppercase; color: var(--primary-text);
  margin-bottom: 10px;
}

.pricing-icon-wrap {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(123, 82, 175, 0.1), rgba(150, 79, 120, 0.08));
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

.pricing-name {
  font-family: 'Fraunces', serif; font-size: 26px; font-weight: 500;
  color: var(--text); margin-bottom: 6px; letter-spacing: -0.5px;
}

.pricing-price {
  font-family: 'Fraunces', serif; font-size: 36px; font-weight: 400;
  color: var(--text); margin-bottom: 4px; letter-spacing: -1px; line-height: 1.1;
}
.pricing-price span {
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 300;
  color: var(--text-soft); letter-spacing: 0;
}

.pricing-promise {
  font-family: 'Fraunces-Italic', serif; font-style: italic; font-size: 14px;
  color: var(--text-mid); line-height: 1.55; margin-bottom: 20px;
  padding-bottom: 20px; border-bottom: 1px solid var(--border);
}

.pricing-features { list-style: none; margin-bottom: 24px; flex: 1; }
.pricing-features li {
  font-size: 13.5px; color: var(--text-mid); font-weight: 300;
  line-height: 1.5; padding: 6px 0 6px 22px; position: relative;
}
.pricing-features li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 12px; height: 12px; border-radius: 4px;
  background: linear-gradient(135deg, rgba(123, 82, 175, 0.12), rgba(150, 79, 120, 0.08));
  border: 1px solid var(--border);
}
.pricing-features li svg {
  position: absolute; left: 1px; top: 12px; width: 10px; height: 10px;
  stroke: var(--primary-text); stroke-width: 2; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}

.pricing-guarantee {
  font-size: 12px; color: var(--text-soft); font-weight: 300;
  line-height: 1.55; padding: 14px 16px; border-radius: 10px;
  background: rgba(123, 82, 175, 0.04); border: 1px solid var(--border);
  margin-bottom: 20px;
}
.pricing-guarantee strong { color: var(--primary-text); font-weight: 500; }

.pricing-cta {
  display: block; text-align: center; padding: 14px 24px;
  border-radius: 12px; font-size: 14px; font-weight: 500;
  font-family: 'Outfit', sans-serif; cursor: pointer;
  transition: all 0.3s; text-decoration: none; margin-top: auto;
}
.pricing-cta-primary {
  background: linear-gradient(135deg, var(--grad-purple), var(--grad-rose));
  color: white; border: none;
  box-shadow: 0 4px 20px rgba(155, 114, 207, 0.25);
}
.pricing-cta-primary:hover {
  transform: translateY(-2px); box-shadow: 0 8px 32px rgba(155, 114, 207, 0.35);
}
.pricing-cta-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-hover);
}
.pricing-cta-ghost:hover {
  border-color: var(--primary); background: rgba(155, 114, 207, 0.05);
  transform: translateY(-2px);
}

.pricing-upgrade {
  max-width: 1100px; margin: 36px auto 0; text-align: center;
  padding: 24px 32px; border-radius: 14px;
  background: var(--bg-glass); backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.pricing-upgrade p {
  font-size: 14px; color: var(--text-mid); font-weight: 300; line-height: 1.6;
}
.pricing-upgrade strong { color: var(--text); font-weight: 500; }
.pricing-upgrade em { color: var(--primary-text); font-style: normal; font-weight: 500; }

/* ═══ PROCESS ═══ */
.process-layout { max-width: 1100px; margin: 0 auto; }
.process-header { margin-bottom: 64px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }

.process-track { position: absolute; top: 20px; left: 30px; right: 30px; height: 2px; background: var(--border); border-radius: 2px; overflow: visible; }
.process-track-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--grad-purple), var(--secondary), var(--accent), var(--highlight-warm)); border-radius: 2px; transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.process-step { padding: 0 20px; position: relative; }
.process-step-dot {
  width: 12px; height: 12px; border-radius: 50%; background: var(--border);
  margin-bottom: 28px; position: relative; z-index: 2; transition: all 0.5s ease;
}
.process-step-dot::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 1px solid transparent; background: var(--bg-glass); transition: border-color 0.5s; }
.process-step.active .process-step-dot { background: linear-gradient(135deg, var(--grad-purple), var(--secondary)); box-shadow: 0 0 14px rgba(155, 114, 207, 0.35); }
.process-step.active .process-step-dot::after { border-color: var(--border-hover); }

.process-step-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--primary-text); letter-spacing: 1px; margin-bottom: 10px; }
.process-step-title { font-family: 'Fraunces', serif; font-size: 21px; font-weight: 500; color: var(--text); margin-bottom: 10px; letter-spacing: -0.2px; }
.process-step-desc { font-size: 13.5px; line-height: 1.65; color: var(--text-mid); font-weight: 300; }

/* ═══ TRUST ═══ */
.trust-layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.trust-visual { background: var(--bg-glass); backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 20px; padding: 40px; box-shadow: var(--shadow-card); }
.shield-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.shield-item { padding: 20px; border-radius: 14px; background: rgba(255, 255, 255, 0.5); border: 1px solid rgba(255, 255, 255, 0.6); transition: all 0.3s; }
.shield-item:hover { border-color: var(--border-hover); background: rgba(255, 255, 255, 0.7); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.shield-icon-wrap { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, rgba(123, 82, 175, 0.08), rgba(150, 79, 120, 0.06)); display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.shield-title { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.shield-desc { font-size: 12px; color: var(--text-soft); line-height: 1.5; font-weight: 300; }

.trust-content .trust-points { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.trust-point { display: flex; align-items: flex-start; gap: 14px; }
.trust-check {
  width: 24px; height: 24px; border-radius: 8px;
  background: linear-gradient(135deg, var(--grad-purple), var(--grad-rose));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
  box-shadow: 0 2px 8px rgba(155, 114, 207, 0.2);
}
.trust-check svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trust-point-text { font-size: 14.5px; color: var(--text-mid); line-height: 1.6; font-weight: 300; }
.trust-point-text strong { color: var(--text); font-weight: 500; }

/* ═══ CREDIBILITY ═══ */
.credibility-layout { max-width: 1100px; margin: 0 auto; text-align: center; }
.credibility-logos { margin-top: 44px; margin-bottom: 56px; }
.credibility-logos-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 28px; }
.logo-row { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.logo-placeholder {
  padding: 11px 24px; background: var(--bg-glass); backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 12px;
  font-size: 14px; font-weight: 400; color: var(--text-soft); letter-spacing: 0.3px;
  transition: all 0.3s; box-shadow: var(--shadow-soft);
}
.logo-placeholder:hover { border-color: var(--border-hover); color: var(--text-mid); transform: translateY(-2px); }

.credibility-quote {
  max-width: 680px; margin: 0 auto; padding: 44px;
  background: var(--bg-glass); backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 20px;
  position: relative; box-shadow: var(--shadow-card);
}
.credibility-quote::before {
  content: '\201C'; font-family: 'Fraunces', serif; font-size: 72px;
  background: linear-gradient(135deg, var(--grad-purple), var(--grad-rose));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  opacity: 0.4; position: absolute; top: 16px; left: 32px; line-height: 1;
}
.quote-text { font-family: 'Fraunces', serif; font-size: clamp(20px, 2.5vw, 25px); font-style: italic; font-weight: 400; color: var(--text); line-height: 1.5; margin-bottom: 20px; position: relative; z-index: 1; }
.quote-attribution { font-size: 14px; color: var(--text-soft); font-weight: 300; }
.quote-attribution strong { background: linear-gradient(135deg, var(--grad-purple), var(--grad-rose)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 500; }

/* ═══ CTA ═══ */
.cta-section { position: relative; overflow: hidden; }
.cta-inner {
  max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 2;
  background: var(--bg-glass); backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 28px;
  padding: 72px 56px; box-shadow: var(--shadow-elevated);
}
.cta-title { font-family: 'Fraunces', serif; font-size: clamp(34px, 4.5vw, 52px); font-weight: 400; letter-spacing: -1.5px; line-height: 1.12; color: var(--text); margin-bottom: 18px; }
.cta-title em { font-style: italic; font-weight: 300; background: linear-gradient(135deg, var(--grad-purple), var(--grad-rose)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-desc { font-size: 16.5px; color: var(--text-mid); line-height: 1.7; max-width: 480px; margin: 0 auto 36px; font-weight: 300; }
.cta-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.cta-input {
  padding: 15px 22px; background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border); border-radius: 12px;
  color: var(--text); font-size: 15px; font-family: 'Outfit', sans-serif;
  width: 300px; outline: none; transition: all 0.3s;
}
.cta-input::placeholder { color: var(--text-muted); }
.cta-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(155, 114, 207, 0.1); }
.cta-note { font-size: 13px; color: var(--text-muted); font-weight: 300; }

/* ═══ FOOTER ═══ */
footer { position: relative; padding: 60px clamp(24px, 5vw, 80px) 36px; }
footer::before { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--secondary-soft), var(--primary-soft), transparent); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--text-soft); line-height: 1.65; font-weight: 300; max-width: 260px; }
.footer-col h4 { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; font-weight: 400; }
.footer-col a { display: block; color: var(--text-mid); text-decoration: none; font-size: 14px; margin-bottom: 11px; font-weight: 300; transition: color 0.25s; }
.footer-col a:hover { color: var(--primary-text); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 28px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); font-weight: 300; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; font-weight: 300; transition: color 0.25s; }
.footer-bottom-links a:hover { color: var(--text-mid); }

/* ═══ SCROLL ANIMATIONS ═══ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .pricing-card.featured { order: -1; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-track { display: none; }
  .problem-layout, .trust-layout { grid-template-columns: 1fr; gap: 44px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-blob-wrap { display: none; }
}

@media (max-width: 768px) {
  nav { width: 94%; padding: 0 20px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-title { letter-spacing: -1px; }
  section { padding: 80px clamp(20px, 5vw, 80px); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .shield-grid { grid-template-columns: 1fr; }
  .logo-row { gap: 12px; }
  .cta-input { width: 100%; }
  .cta-inner { padding: 48px 28px; border-radius: 20px; }
  .hero-blob-wrap { display: none; }
}