*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

:root {
  --bg: #FAFAF8;
  --bg-white: #FFFFFF;
  --bg-warm: #F0EDE6;
  --bg-dark: #0C0C14;
  --text: #1A1A1A;
  --text-mid: #4A4A56;
  --text-muted: #71717A;
  --border: #E4E4E7;
  --purple: #7C3AED;
  --purple-bright: #8B5CF6;
  --purple-deep: #5B21B6;
  --purple-darker: #4C1D95;
  --purple-light: #EDE9FE;
  --teal: #0D9488;
  --teal-deep: #0F766E;
  --heading: 'Space Grotesk', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--body); color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.v { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-left.v { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-right.v { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-scale.v { opacity: 1; transform: none; }
.d1 { transition-delay: .12s; }
.d2 { transition-delay: .24s; }
.d3 { transition-delay: .36s; }
.d4 { transition-delay: .48s; }

/* ===== BRAND MOTIF: Diagonal slash element ===== */
.brand-slash {
  display: inline-block; width: 3px; height: 1.1em;
  background: var(--purple); border-radius: 2px;
  transform: skewX(-12deg); margin: 0 2px; vertical-align: middle;
}
.brand-highlight {
  position: relative; display: inline;
}
.brand-highlight::after {
  content: ''; position: absolute; bottom: 0.05em; left: -2px; right: -2px;
  height: 0.32em; background: rgba(124,58,237,.12); border-radius: 2px;
  z-index: -1;
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 clamp(24px,4vw,56px); height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.logo {
  font-family: var(--heading); font-size: 22px; font-weight: 700;
  color: #fff; letter-spacing: 0.5px; text-transform: uppercase;
  display: inline-flex; align-items: center;
  background: var(--purple); padding: 8px 18px; border-radius: 6px;
  line-height: 1;
}
.nav-mid { display: flex; gap: 0; }
.nav-mid a {
  font-family: var(--heading); font-size: 15px; font-weight: 600; color: var(--text-mid);
  padding: 10px 16px; border-radius: 8px; white-space: nowrap;
  transition: color .2s, background .2s; letter-spacing: -0.2px;
}
.nav-mid a:hover { color: var(--text); background: rgba(0,0,0,.05); }
.nav-cta {
  font-size: 15px; font-weight: 600; color: #fff; padding: 12px 24px;
  background: #0D9488; border-radius: 100px; white-space: nowrap; flex-shrink: 0;
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(13,148,136,.25); }
.burger { display: none; background: none; border: none; cursor: pointer; color: var(--text); }

.mob-menu { display: none; position: fixed; inset: 0; background: var(--purple-deep); z-index: 999; flex-direction: column; padding: 24px; }
.mob-menu.open { display: flex; }
.mob-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; }
.mob-x { background: none; border: none; cursor: pointer; color: #fff; }
.mob-menu nav { display: flex; flex-direction: column; }
.mob-menu nav a { font-family: var(--heading); font-size: 28px; font-weight: 700; color: #fff; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.mob-btn { margin-top: auto; display: block; text-align: center; padding: 16px; background: #fff; color: var(--purple-deep); font-weight: 600; border-radius: 100px; font-size: 15px; }

/* ===== HERO - DARK, ASYMMETRIC ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px clamp(24px,5vw,72px) 80px;
  position: relative; overflow: hidden;
  background: var(--bg-dark);
}
/* Subtle grain texture */
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.035; z-index: 1;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Hero background visual */
.hero-bg-visual {
  position: absolute; top: 0; right: -5%; width: 55%; height: 100%;
  z-index: 0; overflow: hidden;
}
.hero-bg-visual img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.35;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
}
.hero-inner {
  max-width: 1200px; width: 100%; margin: 0 auto; position: relative; z-index: 2;
  display: grid; grid-template-columns: 55% 1fr; gap: 40px; align-items: center;
}
.hero-content { text-align: left; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; background: rgba(124,58,237,.12);
  border: 1px solid rgba(124,58,237,.2);
  border-radius: 100px; font-size: 13px; font-weight: 500;
  color: var(--purple-bright); margin-bottom: 32px;
}
.hero-tag-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #34D399;
  box-shadow: 0 0 8px rgba(52,211,153,.5);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{ opacity:1; } 50%{ opacity:.4; } }

.hero h1 {
  font-family: var(--heading);
  font-size: clamp(42px,5.5vw,76px);
  font-weight: 700; line-height: 1.0; letter-spacing: -2.5px;
  color: #fff; margin-bottom: 28px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #A78BFA, #C084FC, #E879F9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px,1.3vw,18px); color: rgba(255,255,255,.55);
  max-width: 480px; line-height: 1.75; margin-bottom: 40px;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; font-size: 15px; font-weight: 600;
  color: #fff; background: var(--purple);
  border-radius: 100px;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
  box-shadow: 0 4px 24px rgba(124,58,237,.25);
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(124,58,237,.4); }
.hero-cta svg { transition: transform .3s; }
.hero-cta:hover svg { transform: translateX(4px); }

.hero-stats {
  display: flex; gap: 40px; margin-top: 56px;
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: var(--heading); font-size: 32px; font-weight: 700;
  color: #fff; letter-spacing: -1px;
}
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 4px; letter-spacing: 0.3px; }

/* ===== SERVICE PILLS BAR ===== */
.services-bar {
  background: var(--bg-white); padding: 40px clamp(24px,5vw,72px);
  border-bottom: 1px solid var(--border);
}
.services-bar-title {
  font-family: var(--heading); font-size: 15px; font-weight: 600;
  color: var(--text-mid); text-align: center; margin-bottom: 20px;
  letter-spacing: -0.3px; max-width: 1200px; margin-left: auto; margin-right: auto;
}
.services-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.service-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 100px;
  background: var(--purple-light); border: 1px solid rgba(124,58,237,.12);
  font-family: var(--body); font-size: 13px; font-weight: 500;
  color: var(--purple-deep); white-space: nowrap;
  transition: background .3s, transform .3s;
}
.service-pill:hover { background: #DDD6FE; transform: translateY(-1px); }
.service-pill svg { width: 14px; height: 14px; color: var(--purple); flex-shrink: 0; }

/* ===== PROBLEM - LEFT-ALIGNED HEADER, STAGGERED CARDS ===== */
.problem {
  background: var(--bg); padding: clamp(48px,6vw,72px) clamp(24px,5vw,72px);
}
.problem-inner { max-width: 1200px; margin: 0 auto; }
.tag {
  font-family: var(--heading); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--purple); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.tag::before { content: ''; width: 24px; height: 2px; background: var(--purple); border-radius: 2px; }
.problem h2 {
  font-family: var(--heading); font-size: clamp(36px,5vw,56px);
  font-weight: 700; letter-spacing: -2px; line-height: 1.05;
  color: var(--text); margin-bottom: 16px; max-width: 700px;
}
.problem-intro {
  font-size: clamp(15px,1.3vw,17px); color: var(--text-mid);
  line-height: 1.75; max-width: 640px; margin-bottom: clamp(48px,6vw,72px);
}
.problem-intro strong { color: var(--text); font-weight: 600; }

.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pcard {
  border-radius: 20px;
  padding: clamp(28px,3vw,40px);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
  position: relative; overflow: hidden;
}
.pcard:nth-child(1) { background: linear-gradient(155deg, #3B0F7A, #6D28D9 40%, #7C3AED 80%, #8B5CF6); }
.pcard:nth-child(2) { background: linear-gradient(155deg, #064E3B, #0D9488 50%, #14B8A6); }
.pcard:nth-child(3) { background: linear-gradient(155deg, #1E1B2E, #2D2A40 50%, #3B3755); }
.pcard:hover { transform: translateY(-6px); box-shadow: 0 30px 80px rgba(0,0,0,.2); }

.pcard-icon {
  position: absolute; top: 20px; right: 24px;
  width: 56px; height: 56px; color: rgba(255,255,255,.1);
}
.pcard-scenario {
  display: inline-block; font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.7); padding: 4px 10px;
  background: rgba(255,255,255,.1); border-radius: 100px; margin-bottom: 16px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.pcard h3 {
  font-family: var(--heading); font-size: clamp(19px,1.8vw,23px);
  font-weight: 700; letter-spacing: -0.5px; color: #fff; margin-bottom: 10px;
}
.pcard p { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.7; }

/* ===== COMPARISON - DARK, WITH GRAIN + GRADIENT DEPTH ===== */
.comparison {
  background: var(--bg-dark); color: #fff;
  padding: clamp(80px,12vw,140px) clamp(24px,5vw,72px);
  position: relative; overflow: hidden;
}
.comparison::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.03; z-index: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.comparison::after {
  content: ''; position: absolute; top: -30%; right: -10%; width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(124,58,237,.08) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.comp-inner { max-width: 960px; margin: 0 auto; position: relative; z-index: 1; }
.comp-header { margin-bottom: clamp(48px,6vw,64px); }
.comp-tag {
  font-family: var(--heading); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--purple-bright); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.comp-tag::before { content: ''; width: 24px; height: 2px; background: var(--purple-bright); border-radius: 2px; }
.comp-header h2 {
  font-family: var(--heading); font-size: clamp(32px,4.5vw,52px);
  font-weight: 700; letter-spacing: -2px; line-height: 1.08; color: #fff; margin-bottom: 16px;
}
.comp-header p {
  font-size: clamp(15px,1.3vw,17px); color: rgba(255,255,255,.85);
  line-height: 1.75; max-width: 600px;
}

.comp-col-headers {
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 0 0 16px 0;
  border-bottom: 2px solid rgba(255,255,255,.12);
}
.comp-col-h {
  font-family: var(--heading); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.comp-col-h.before { color: rgba(255,255,255,.6); }
.comp-col-h.after { color: var(--purple-bright); padding-left: 32px; }

.comp-rows { display: flex; flex-direction: column; }
.comp-row {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  transition: background .3s;
}
.comp-row:hover { background: rgba(255,255,255,.02); }
.comp-row:last-child { border-bottom: none; }
.comp-row-topic {
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 4px;
}
.comp-old .comp-val {
  font-size: 16px; color: #fff; line-height: 1.5; font-weight: 400;
}
.comp-new {
  padding-left: 32px; border-left: 3px solid var(--purple);
}
.comp-new .comp-val {
  font-size: 16px; color: #fff; line-height: 1.5; font-weight: 700;
}

/* Stat callouts between table and pricing */
.comp-stats {
  display: flex; gap: clamp(32px,5vw,64px);
  margin-top: 48px; margin-bottom: 48px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.comp-stat-card { text-align: left; }
.comp-stat-number {
  font-family: var(--heading); font-size: clamp(28px,3vw,36px);
  font-weight: 700; letter-spacing: -1px; color: #fff;
}
.comp-stat-label {
  font-size: 13px; color: rgba(255,255,255,.5); margin-top: 2px; line-height: 1.4;
}

/* Price inline under columns */
.comp-price-inline {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-top: 0; border-top: 2px solid rgba(255,255,255,.06);
}
.comp-price-col {
  padding: 36px 28px;
}
.comp-price-before {
  background: rgba(255,255,255,.02);
}
.comp-price-after {
  padding-left: 48px; border-left: 3px solid var(--purple);
  background: rgba(124,58,237,.04);
}
.comp-price-label {
  font-family: var(--heading); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 12px; color: rgba(255,255,255,.4);
}
.comp-price-new-label { color: var(--purple-bright); }
.comp-price-amount {
  font-family: var(--heading); font-weight: 700; letter-spacing: -2px; color: #fff;
}
.comp-price-amount.old {
  font-size: clamp(32px,3.5vw,46px);
  text-decoration: line-through; text-decoration-color: rgba(255,255,255,.2); text-decoration-thickness: 3px;
  color: rgba(255,255,255,.5);
}
.comp-price-amount.new { font-size: clamp(36px,4.5vw,54px); }
.comp-price-amount.new span { color: var(--purple-bright); }
.comp-price-context { font-size: 14px; color: rgba(255,255,255,.4); margin-top: 8px; line-height: 1.5; }

/* ===== SERVICES - ASYMMETRIC, OVERSIZED NUMBERS ===== */
.services {
  background: var(--bg-white); padding: clamp(80px,12vw,140px) clamp(24px,5vw,72px);
}
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-header {
  margin-bottom: clamp(48px,6vw,72px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end;
}
.services h2 {
  font-family: var(--heading); font-size: clamp(36px,4.5vw,56px);
  font-weight: 700; letter-spacing: -2px; line-height: 1.05;
  color: var(--text);
}
.services-header-sub {
  font-size: 16px; color: var(--text-mid); line-height: 1.7;
  max-width: 400px; justify-self: end;
}

.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.svc {
  border-radius: 24px; padding: clamp(36px,4vw,52px);
  display: flex; flex-direction: column; color: #fff;
  position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s;
}
/* Subtle grid pattern overlay */
.svc::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 40px 40px;
}
/* Grain on service cards */
.svc::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.03;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.svc-p { background: linear-gradient(155deg, #3B0F7A, #6D28D9 40%, #7C3AED 80%, #8B5CF6); }
.svc-p:hover { transform: translateY(-6px); box-shadow: 0 30px 80px rgba(124,58,237,.2); }
.svc-t { background: linear-gradient(155deg, #064E3B, #0D9488 50%, #14B8A6); }
.svc-t:hover { transform: translateY(-6px); box-shadow: 0 30px 80px rgba(13,148,136,.2); }

.svc-number {
  font-family: var(--heading); font-size: 120px; font-weight: 700;
  color: rgba(255,255,255,.06); line-height: 1; letter-spacing: -6px;
  position: absolute; top: -10px; right: 20px; z-index: 0;
}
.svc-pretag {
  font-family: var(--heading); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px; position: relative; z-index: 1;
}
.svc-pretag::before { content: ''; width: 16px; height: 2px; background: rgba(255,255,255,.3); border-radius: 2px; }
/* Service card image placeholder */
.svc-img-placeholder {
  width: 100%; height: 160px; border-radius: 12px; margin-bottom: 24px;
  background: rgba(255,255,255,.06); border: 1px dashed rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,.3); text-align: center; padding: 16px;
  position: relative; z-index: 1;
}
.svc h3 {
  font-family: var(--heading); font-size: clamp(24px,2.5vw,30px);
  font-weight: 700; letter-spacing: -0.5px; margin-bottom: 16px; position: relative; z-index: 1;
}
.svc-visual {
  width: 100%; border-radius: 12px; margin: 20px 0 24px;
  opacity: 0.9;
}
.svc-desc {
  font-size: 16px; color: #fff; line-height: 1.8;
  margin-bottom: 32px; flex-grow: 1; position: relative; z-index: 1;
  opacity: 0.8;
}
.svc-div { height: 1px; background: rgba(255,255,255,.1); margin-bottom: 24px; position: relative; z-index: 1; }
.svc-pr {
  font-family: var(--heading); font-size: clamp(28px,3vw,38px);
  font-weight: 700; letter-spacing: -1.5px; margin-bottom: 20px; position: relative; z-index: 1;
}
.svc-pr span { font-size: 16px; font-weight: 500; color: rgba(255,255,255,.5); letter-spacing: 0; }
.svc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: #fff;
  padding: 10px 20px; border: 2px solid rgba(255,255,255,.2);
  border-radius: 100px; transition: background .25s, border-color .25s, gap .25s;
  position: relative; z-index: 1;
}
.svc-link:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.35); gap: 14px; }

/* ===== CREDIBILITY ===== */
.cred {
  background: var(--bg-white); padding: clamp(60px,8vw,100px) clamp(24px,5vw,72px);
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cred-inner {
  max-width: 1100px; margin: 0 auto; position: relative; z-index: 1;
}
.cred-logos-bar {
  display: flex; align-items: center; gap: clamp(24px,4vw,48px);
  padding-bottom: 48px; margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.cred-logos-label {
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px; white-space: nowrap;
}
.cred-logos-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: nowrap;
}
.cred-logo-wrap {
  display: flex; align-items: center; justify-content: center;
  padding: 4px 12px;
  transition: transform .3s;
}
.cred-logo-wrap:hover { transform: translateY(-2px); }
.cred-logo-img {
  height: 22px; width: auto; opacity: 0.7;
  transition: opacity .3s;
}
.cred-logo-wrap:hover .cred-logo-img { opacity: 1; }
.cred-testimonials {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.cred-testimonial {
  padding: 32px; border-radius: 16px;
  background: var(--bg); border: 1px solid var(--border);
}
.cred-testimonial p {
  font-size: 16px; color: var(--text-mid); line-height: 1.7;
  font-style: italic; margin-bottom: 16px;
}
.cred-testimonial-attr {
  font-size: 13px; color: var(--text-muted); font-style: normal;
}

/* ===== HONESTY - WARM LIGHT, TYPOGRAPHIC CONTRAST ===== */
.honesty {
  background: var(--bg-warm);
  padding: clamp(100px,14vw,180px) clamp(24px,5vw,72px);
  position: relative; overflow: hidden;
}
.honesty-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), #C084FC, transparent 80%);
}
.honesty-inner {
  max-width: 1100px; margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px,6vw,80px); align-items: start;
}
.honesty h2 {
  font-family: var(--heading);
  font-size: clamp(36px,5vw,64px);
  font-weight: 700; letter-spacing: -2.5px; line-height: 1.05;
  color: var(--text);
}
.honesty h2 .brand-highlight::after { background: rgba(124,58,237,.15); height: 0.35em; }
.honesty-body { padding-top: 8px; }
.honesty-body p {
  font-size: clamp(16px,1.4vw,19px);
  color: var(--text-mid); line-height: 1.85; margin-bottom: 24px;
}
.honesty-body p:last-child { margin-bottom: 0; }
.honesty-body strong { color: var(--text); font-weight: 600; }

/* ===== CTA - WITH MOCKUP PLACEHOLDER ===== */
.cta {
  background: linear-gradient(135deg, #3B0F7A 0%, #6D28D9 35%, #7C3AED 55%, #9333EA 80%, #A855F7 100%);
  padding: clamp(60px,8vw,100px) clamp(24px,5vw,72px);
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0; 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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cta-inner {
  max-width: 1100px; margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,5vw,80px); align-items: center;
}
.cta-left { color: #fff; }
.cta-left h2 {
  font-family: var(--heading); font-size: clamp(32px,4vw,52px);
  font-weight: 700; letter-spacing: -2px; line-height: 1.05; margin-bottom: 16px;
}
.cta-intro { font-size: 17px; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 32px; }
.cta-checklist { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.cta-check-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: rgba(255,255,255,.8); line-height: 1.5;
}
.cta-check-item svg { color: #A78BFA; flex-shrink: 0; margin-top: 2px; }
.cta-note { font-size: 14px; color: rgba(255,255,255,.4); font-style: italic; }
.cta-form {
  background: #fff; border-radius: 20px; padding: clamp(28px,3vw,40px);
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
}
.cta-form h3 {
  font-family: var(--heading); font-size: 20px; font-weight: 700;
  color: var(--text); letter-spacing: -0.5px; margin-bottom: 6px;
}
.cta-form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--text-mid); margin-bottom: 6px; }
.form-group input, .form-group select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px;
  font-family: var(--body); font-size: 14px; color: var(--text); background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
}
.form-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px;
  font-family: var(--body); font-size: 14px; color: var(--text); background: var(--bg);
  transition: border-color .2s, box-shadow .2s; resize: vertical; min-height: 80px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124,58,237,.08); }
.form-group input::placeholder { color: var(--text-muted); }
.form-submit {
  width: 100%; padding: 14px; background: #0D9488; color: #fff;
  font-family: var(--body); font-size: 15px; font-weight: 600;
  border: none; border-radius: 100px; cursor: pointer;
  transition: background .25s, transform .25s, box-shadow .25s; margin-top: 8px;
}
.form-submit:hover { background: #0F766E; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(13,148,136,.3); }
.form-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* ===== FOOTER ===== */
.footer {
  background: #070710; border-top: 1px solid rgba(255,255,255,.04);
  padding: 56px clamp(24px,5vw,72px) 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand p { font-size: 16px; color: rgba(255,255,255,.7); max-width: 280px; line-height: 1.6; margin-top: 12px; }
.footer-col h4 {
  font-family: var(--heading); font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: 15px; color: rgba(255,255,255,.55);
  margin-bottom: 10px; transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 13px; color: rgba(255,255,255,.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-bg-visual { display: none; }
  .hero-content { text-align: left; }
  .pgrid { grid-template-columns: 1fr; }
  .pcard:hover { transform: translateY(-6px); }
  .comp-row { grid-template-columns: 1fr; gap: 12px; }
  .comp-col-headers { grid-template-columns: 1fr; }
  .comp-col-h.after { padding-left: 0; }
  .comp-new { padding-left: 0; border-left: none; border-top: 1px solid rgba(139,92,246,.12); padding-top: 12px; }
  .comp-stats { flex-direction: column; gap: 24px; }
  .comp-price-inline { grid-template-columns: 1fr; }
  .comp-price-after { padding-left: 28px; border-left: none; border-top: 3px solid var(--purple); }
  .services-header { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .cred-logos-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cred-testimonials { grid-template-columns: 1fr; }
  .honesty-inner { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1080px) {
  .nav-mid, .nav-cta { display: none; }
  .burger { display: block; }
}
@media (max-width: 640px) {
  .hero { padding: 100px 20px 48px; }
  .hero h1 { font-size: 36px; letter-spacing: -1.5px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .honesty h2 { font-size: 30px; letter-spacing: -1px; }
  .cta-left h2 { font-size: 28px; letter-spacing: -1px; }
  .footer-inner { grid-template-columns: 1fr; }
  .comp-price-amount.old { font-size: 28px; }
  .comp-price-amount.new { font-size: 32px; }
  .comp-stat-number { font-size: 22px; }
}

/* ===== INNER PAGE STYLES ===== */
.inner-banner {
  background: var(--bg-dark); color: #fff;
  padding: 140px clamp(24px,5vw,72px) 80px;
  text-align: center; position: relative; overflow: hidden;
}
.inner-banner::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.035; z-index: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.inner-banner .tag { justify-content: center; }
.inner-banner h1 {
  font-family: var(--heading); font-size: clamp(36px,5vw,64px);
  font-weight: 700; letter-spacing: -2.5px; line-height: 1.05;
  max-width: 800px; margin: 0 auto 20px; position: relative; z-index: 1;
}
.inner-banner h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #A78BFA, #C084FC, #E879F9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.inner-banner p {
  font-size: clamp(16px,1.3vw,18px); color: rgba(255,255,255,.55);
  max-width: 600px; margin: 0 auto; line-height: 1.75; position: relative; z-index: 1;
}
.inner-content { padding: clamp(60px,8vw,100px) clamp(24px,5vw,72px); }
.inner-content-inner { max-width: 800px; margin: 0 auto; }
.inner-content h2 {
  font-family: var(--heading); font-size: clamp(28px,3.5vw,40px);
  font-weight: 700; letter-spacing: -1.5px; line-height: 1.1;
  color: var(--text); margin: 48px 0 16px;
}
.inner-content h2:first-child { margin-top: 0; }
.inner-content h3 {
  font-family: var(--heading); font-size: clamp(20px,2.5vw,26px);
  font-weight: 700; letter-spacing: -0.5px; line-height: 1.2;
  color: var(--text); margin: 36px 0 12px;
}
.inner-content p {
  font-size: clamp(16px,1.3vw,18px); color: var(--text-mid);
  line-height: 1.85; margin-bottom: 20px;
}
.inner-content strong { color: var(--text); font-weight: 600; }
.inner-content ul { margin: 16px 0 24px 0; }
.inner-content ul li {
  font-size: clamp(16px,1.3vw,18px); color: var(--text-mid);
  line-height: 1.85; padding: 6px 0 6px 28px; position: relative;
}
.inner-content ul li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--purple-bright);
}

/* ===== INNER PAGE: SERVICE GRID (legacy) ===== */
.svc-intro {
  font-size: clamp(17px,1.4vw,20px); color: var(--text-mid);
  line-height: 1.85; max-width: 800px; margin: 0 0 48px;
}
.svc-card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.svc-card {
  background: var(--bg-white); border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px; padding: 32px; display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}
.svc-card h3 {
  font-family: var(--heading); font-size: 20px; font-weight: 700;
  letter-spacing: -0.5px; color: var(--text); margin-bottom: 12px;
}
.svc-card .svc-card-desc {
  font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px;
}
.svc-card ul {
  list-style: none; padding: 0; margin: 0; margin-top: auto;
}
.svc-card ul li {
  font-size: 14px; color: var(--text-mid); padding: 6px 0 6px 20px;
  position: relative; line-height: 1.6;
}
.svc-card ul li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--purple-bright);
}

/* ===== SERVICES PAGE V2 ===== */

/* Hero with purple gradient */
/* ===== SERVICES HERO V2 - Dark, matching homepage ===== */
.svc-hero-v2 {
  background: var(--bg-dark);
  color: #fff; text-align: center;
  padding: 180px clamp(24px,5vw,72px) 120px;
  position: relative; overflow: hidden;
}
.svc-hero-v2::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.035; z-index: 1;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.svc-hero-v2 h1 {
  font-family: var(--heading); font-size: clamp(42px,5.5vw,76px);
  font-weight: 700; letter-spacing: -2.5px; line-height: 1.0;
  max-width: 800px; margin: 0 auto 28px; position: relative; z-index: 2;
}
.svc-hero-v2 h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #A78BFA, #C084FC, #E879F9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.svc-hero-v2 p {
  font-size: clamp(16px,1.3vw,18px); color: rgba(255,255,255,.55);
  max-width: 580px; margin: 0 auto 40px; line-height: 1.75;
  position: relative; z-index: 2;
}
.svc-hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--heading); font-size: 15px; font-weight: 600;
  color: #fff; background: var(--purple);
  padding: 16px 36px; border-radius: 100px; text-decoration: none;
  position: relative; z-index: 2;
  box-shadow: 0 4px 24px rgba(124,58,237,.25);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
}
.svc-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(124,58,237,.4);
}
.svc-hero-cta svg { transition: transform .3s; }
.svc-hero-cta:hover svg { transform: translateX(4px); }

/* Service sections */
.svc-section {
  padding: clamp(60px,8vw,100px) clamp(24px,5vw,72px);
}
.svc-section-inner { max-width: 1100px; margin: 0 auto; }
.svc-section-header { margin-bottom: 48px; }
.svc-section-tag {
  display: inline-block; font-family: var(--heading); font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--purple);
  background: rgba(124,58,237,.06); padding: 6px 16px; border-radius: 100px;
  margin-bottom: 20px;
}
.svc-section-header h2 {
  font-family: var(--heading); font-size: clamp(28px,3.5vw,42px);
  font-weight: 700; letter-spacing: -1.5px; line-height: 1.08;
  color: var(--text); margin-bottom: 16px;
}
.svc-section-header p {
  font-size: clamp(16px,1.3vw,18px); color: var(--text-mid);
  line-height: 1.8; max-width: 640px;
}

/* V2 service cards */
.svc-card-grid-v2 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.svc-card-v2 {
  background: var(--bg-white); border: 1px solid rgba(0,0,0,.06);
  border-radius: 20px; padding: 36px; display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease;
  position: relative; overflow: hidden;
}
.svc-section-alt .svc-card-v2 {
  background: var(--bg);
}
.svc-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.07);
}
.svc-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; flex-shrink: 0;
}
.svc-card-v2 h3 {
  font-family: var(--heading); font-size: clamp(20px,2vw,24px); font-weight: 700;
  letter-spacing: -0.5px; color: var(--text); margin-bottom: 14px; line-height: 1.2;
}
.svc-card-v2 > p {
  font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 24px;
  flex-grow: 1;
}
.svc-card-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto;
  padding-top: 20px; border-top: 1px solid rgba(0,0,0,.06);
}
.svc-card-tags span {
  font-family: var(--heading); font-size: 12px; font-weight: 600;
  color: var(--text-mid); background: rgba(0,0,0,.03);
  padding: 5px 12px; border-radius: 100px; letter-spacing: -0.1px;
  white-space: nowrap;
}

/* ===== SYSTEMS V3 - Coloured boxes ===== */
.systems-section-v3 {
  background: var(--bg);
  padding: clamp(72px,8vw,120px) clamp(24px,5vw,72px);
}
.systems-section-v3 h2 {
  font-family: var(--heading); font-size: clamp(28px,3.5vw,44px);
  font-weight: 700; letter-spacing: -1.8px; line-height: 1.08;
  text-align: center; color: var(--text); margin-bottom: 16px;
}
.systems-v3-sub {
  font-size: clamp(16px,1.3vw,18px); color: var(--text-mid);
  text-align: center; max-width: 580px; margin: 0 auto 52px; line-height: 1.75;
}
.systems-grid-v3 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  max-width: 960px; margin: 0 auto;
}
.systems-grid-v3.sys-3col { grid-template-columns: repeat(3, 1fr); }
.sys-box {
  border-radius: 20px; padding: 32px; color: #fff;
  position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s;
}
.sys-box::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 40px 40px;
}
.sys-box::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.03;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.sys-box-purple {
  background: linear-gradient(155deg, #3B0F7A, #6D28D9 40%, #7C3AED 80%, #8B5CF6);
}
.sys-box-purple:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(124,58,237,.2); }
.sys-box-teal {
  background: linear-gradient(155deg, #064E3B, #0D9488 50%, #14B8A6);
}
.sys-box-teal:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(13,148,136,.2); }
.sys-box-icon {
  position: absolute; top: -8px; right: -4px; z-index: 0;
  color: rgba(255,255,255,.06); pointer-events: none;
}
.sys-box-num {
  font-family: var(--heading); font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,.4); letter-spacing: 0.5px; margin-bottom: 14px;
  position: relative; z-index: 1;
}
.sys-box strong {
  font-family: var(--heading); font-size: 18px; font-weight: 700;
  color: #fff; display: block; margin-bottom: 8px; letter-spacing: -0.3px;
  position: relative; z-index: 1;
}
.sys-box p {
  font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.7; margin: 0;
  position: relative; z-index: 1;
}

/* ===== CROSSLINK DARK ===== */
.crosslink-dark {
  background: var(--bg-dark); color: #fff;
  padding: clamp(60px,8vw,100px) clamp(24px,5vw,72px);
  position: relative; overflow: hidden;
}
.crosslink-dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.035;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.crosslink-dark-inner {
  max-width: 680px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
}
.crosslink-dark-tag {
  display: inline-block; font-family: var(--heading); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal);
  border: 1px solid rgba(13,148,136,.3); padding: 6px 16px; border-radius: 100px;
  margin-bottom: 24px;
}
.crosslink-dark h2 {
  font-family: var(--heading); font-size: clamp(28px,3.5vw,42px);
  font-weight: 700; letter-spacing: -1.5px; line-height: 1.08;
  color: #fff; margin-bottom: 16px;
}
.crosslink-dark p {
  font-size: clamp(16px,1.3vw,18px); color: rgba(255,255,255,.55);
  line-height: 1.75; margin-bottom: 32px;
}
.crosslink-dark-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--heading); font-size: 16px; font-weight: 700;
  color: #fff; background: var(--teal); padding: 14px 32px;
  border-radius: 100px; text-decoration: none;
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s;
}
.crosslink-dark-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13,148,136,.3);
}
.crosslink-dark-btn span { transition: transform .2s ease; }
.crosslink-dark-btn:hover span { transform: translateX(4px); }

/* ===== PAGE CTA GRADIENT ===== */
.page-cta-gradient {
  background: linear-gradient(135deg, #3B0F7A 0%, #6D28D9 35%, #7C3AED 55%, #9333EA 80%, #A855F7 100%);
  color: #fff; text-align: center;
  padding: clamp(60px,8vw,100px) clamp(24px,5vw,72px);
  position: relative; overflow: hidden;
}
.page-cta-gradient::before {
  content: ""; position: absolute; inset: 0; 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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.page-cta-gradient h2 {
  font-family: var(--heading); font-size: clamp(28px,4vw,48px);
  font-weight: 700; letter-spacing: -2px; line-height: 1.1;
  max-width: 700px; margin: 0 auto 16px; position: relative; z-index: 1;
}
.page-cta-gradient p {
  font-size: clamp(16px,1.3vw,18px); color: rgba(255,255,255,.7);
  max-width: 560px; margin: 0 auto 32px; line-height: 1.75; position: relative; z-index: 1;
}
.page-cta-gradient .cta-btn {
  display: inline-block; font-family: var(--heading); font-size: 17px; font-weight: 700;
  color: var(--purple); background: #fff; padding: 16px 40px; border-radius: 100px;
  text-decoration: none; position: relative; z-index: 1;
  transition: transform .25s ease, box-shadow .25s ease;
}
.page-cta-gradient .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}

/* ===== INNER PAGE: SYSTEMS GRID (legacy) ===== */
.systems-section {
  background: var(--bg); padding: clamp(60px,8vw,100px) clamp(24px,5vw,72px);
}
.systems-section h2 {
  font-family: var(--heading); font-size: clamp(28px,3.5vw,40px);
  font-weight: 700; letter-spacing: -1.5px; line-height: 1.1;
  color: var(--text); margin-bottom: 40px; text-align: center;
}
.systems-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  max-width: 900px; margin: 0 auto;
}
.system-item {
  background: var(--bg-white); border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px; padding: 24px 28px;
}
.system-item strong {
  font-family: var(--heading); font-size: 16px; font-weight: 700;
  color: var(--text); display: block; margin-bottom: 6px; letter-spacing: -0.3px;
}
.system-item p {
  font-size: 15px; color: var(--text-mid); line-height: 1.7; margin: 0;
}

/* ===== INNER PAGE: CROSSLINK BAND ===== */
.crosslink {
  background: var(--purple-light); padding: clamp(48px,6vw,72px) clamp(24px,5vw,72px);
  text-align: center;
}
.crosslink h2 {
  font-family: var(--heading); font-size: clamp(24px,3vw,36px);
  font-weight: 700; letter-spacing: -1.2px; color: var(--text); margin-bottom: 16px;
}
.crosslink p {
  font-size: clamp(16px,1.3vw,18px); color: var(--text-mid);
  line-height: 1.75; max-width: 620px; margin: 0 auto 28px;
}
.crosslink .btn-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--heading); font-size: 16px; font-weight: 700;
  color: var(--purple); text-decoration: none;
  transition: gap .2s ease;
}
.crosslink .btn-arrow:hover { gap: 14px; }

/* ===== INNER PAGE: CTA BAND ===== */
.page-cta {
  background: var(--purple); color: #fff;
  padding: clamp(60px,8vw,100px) clamp(24px,5vw,72px);
  text-align: center; position: relative; overflow: hidden;
}
.page-cta::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.04; z-index: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.page-cta h2 {
  font-family: var(--heading); font-size: clamp(28px,4vw,48px);
  font-weight: 700; letter-spacing: -2px; line-height: 1.1;
  max-width: 700px; margin: 0 auto 16px; position: relative; z-index: 1;
}
.page-cta p {
  font-size: clamp(16px,1.3vw,18px); color: rgba(255,255,255,.7);
  max-width: 560px; margin: 0 auto 32px; line-height: 1.75; position: relative; z-index: 1;
}
.page-cta .cta-btn {
  display: inline-block; font-family: var(--heading); font-size: 17px; font-weight: 700;
  color: var(--purple); background: #fff; padding: 16px 40px; border-radius: 100px;
  text-decoration: none; position: relative; z-index: 1;
  transition: transform .25s ease, box-shadow .25s ease;
}
.page-cta .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}

/* ===== INNER PAGE: HOW WE WORK / PROCESS STEPS ===== */
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  max-width: 900px; margin: 40px auto 0;
}
.process-step {
  text-align: center; padding: 24px;
}
.process-step .step-num {
  font-family: var(--heading); font-size: 48px; font-weight: 700;
  color: var(--purple-bright); opacity: 0.3; line-height: 1; margin-bottom: 12px;
}
.process-step h3 {
  font-family: var(--heading); font-size: 18px; font-weight: 700;
  color: var(--text); margin-bottom: 8px; letter-spacing: -0.3px;
}
.process-step p {
  font-size: 15px; color: var(--text-mid); line-height: 1.7; margin: 0;
}

/* ===== INNER PAGE: PRICING CALLOUT ===== */
.pricing-callout {
  background: var(--bg-dark); color: #fff;
  padding: clamp(48px,6vw,72px) clamp(24px,5vw,72px);
  text-align: center;
}
.pricing-callout h2 {
  font-family: var(--heading); font-size: clamp(28px,3.5vw,44px);
  font-weight: 700; letter-spacing: -1.5px; margin-bottom: 16px;
}
.pricing-callout p {
  font-size: clamp(16px,1.3vw,18px); color: rgba(255,255,255,.55);
  max-width: 620px; margin: 0 auto; line-height: 1.75;
}

/* ===== INNER PAGE: TEAM GRID ===== */
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 40px;
}
.team-card {
  background: var(--bg-white); border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px; padding: 32px;
}
.team-card h3 {
  font-family: var(--heading); font-size: 20px; font-weight: 700;
  color: var(--text); margin-bottom: 10px; letter-spacing: -0.5px;
}
.team-card p {
  font-size: 15px; color: var(--text-mid); line-height: 1.75; margin: 0;
}

/* ===== INNER PAGE: FOUNDER BIO ===== */
.founder-section {
  display: grid; grid-template-columns: 200px 1fr; gap: 40px;
  align-items: start; margin: 48px 0;
}
.founder-photo {
  width: 200px; height: 200px; border-radius: 16px;
  background: linear-gradient(135deg, var(--purple-light) 0%, rgba(124,58,237,.15) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); font-family: var(--heading); font-size: 48px; font-weight: 700;
}
.founder-info h3 {
  font-family: var(--heading); font-size: 24px; font-weight: 700;
  color: var(--text); letter-spacing: -0.5px; margin-bottom: 4px;
}
.founder-info .founder-role {
  font-size: 15px; color: var(--purple); font-weight: 600; margin-bottom: 16px;
}
.founder-info p {
  font-size: 16px; color: var(--text-mid); line-height: 1.85; margin-bottom: 16px;
}
.founder-info .founder-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 15px; font-weight: 600; color: var(--purple); text-decoration: none;
}

/* ===== INNER PAGE: VALUES GRID ===== */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px;
}
.value-card {
  background: var(--bg-white); border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px; padding: 28px;
}
.value-card h3 {
  font-family: var(--heading); font-size: 18px; font-weight: 700;
  color: var(--text); margin-bottom: 8px; letter-spacing: -0.3px;
}
.value-card p {
  font-size: 15px; color: var(--text-mid); line-height: 1.7; margin: 0;
}

/* ===== INNER PAGE: WORK / PORTFOLIO ===== */
.work-category {
  margin-bottom: 64px;
}
.work-category h2 {
  font-family: var(--heading); font-size: clamp(24px,3vw,32px);
  font-weight: 700; letter-spacing: -1px; color: var(--text); margin-bottom: 12px;
}
.work-category > p {
  font-size: clamp(16px,1.3vw,18px); color: var(--text-mid);
  line-height: 1.75; margin-bottom: 28px; max-width: 700px;
}
.work-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.work-card {
  background: var(--bg-white); border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px; padding: 28px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.work-card:hover {
  transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.05);
}
.work-card h3 {
  font-family: var(--heading); font-size: 18px; font-weight: 700;
  color: var(--text); margin-bottom: 8px; letter-spacing: -0.3px;
}
.work-card p {
  font-size: 15px; color: var(--text-mid); line-height: 1.7; margin: 0 0 12px;
}
.work-card .work-link {
  font-size: 14px; font-weight: 600; color: var(--purple); text-decoration: none;
}
.work-card .work-tag {
  display: inline-block; font-size: 12px; font-weight: 600;
  color: var(--purple); background: var(--purple-light);
  padding: 4px 10px; border-radius: 6px; margin-bottom: 12px;
}

/* ===== INNER PAGE: CONSULTATION FORM PAGE ===== */
.consult-page {
  background: var(--bg-dark); color: #fff; min-height: 100vh;
  padding: 140px clamp(24px,5vw,72px) 80px;
  display: flex; justify-content: center; position: relative; overflow: hidden;
}
.consult-page::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.035; z-index: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.consult-inner {
  max-width: 960px; width: 100%; display: grid;
  grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start; position: relative; z-index: 1;
}
.consult-left h1 {
  font-family: var(--heading); font-size: clamp(32px,4vw,48px);
  font-weight: 700; letter-spacing: -2px; line-height: 1.1; margin-bottom: 20px;
}
.consult-left p {
  font-size: 17px; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 32px;
}
.consult-checks { display: flex; flex-direction: column; gap: 14px; }
.consult-check {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.6;
}
.consult-check svg { flex-shrink: 0; color: var(--teal); margin-top: 2px; }

/* ===== INNER PAGE: THANK YOU ===== */
.thankyou-page {
  background: var(--bg-dark); color: #fff; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px clamp(24px,5vw,72px);
  position: relative; overflow: hidden;
}
.thankyou-page::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.035;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.thankyou-inner { position: relative; z-index: 1; max-width: 600px; }
.thankyou-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(13,148,136,.15); display: inline-flex;
  align-items: center; justify-content: center; margin-bottom: 28px;
}
.thankyou-inner h1 {
  font-family: var(--heading); font-size: clamp(32px,4vw,48px);
  font-weight: 700; letter-spacing: -2px; margin-bottom: 16px;
}
.thankyou-inner p {
  font-size: 17px; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 20px;
}
.thankyou-inner .back-link {
  display: inline-block; font-family: var(--heading); font-size: 16px;
  font-weight: 600; color: #fff; background: var(--purple);
  padding: 14px 32px; border-radius: 100px; text-decoration: none;
  transition: transform .25s ease;
}
.thankyou-inner .back-link:hover { transform: translateY(-2px); }

/* ===== FOUNDER BIO LAYOUT ===== */
.founder-bio {
  display: flex; align-items: center; gap: 40px;
  text-align: left; max-width: 800px;
}

/* ===== INTRO DARK STATEMENT ===== */
.intro-dark {
  background: #1a1128;
  padding: clamp(64px,10vw,120px) clamp(24px,5vw,80px);
  position: relative;
  overflow: hidden;
}
.intro-dark::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,.14) 0%, transparent 70%);
  pointer-events: none;
}
.intro-dark-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px,6vw,88px); align-items: start;
}
.intro-dark-left h2 {
  font-family: var(--heading);
  font-size: clamp(32px,4vw,52px);
  font-weight: 700; letter-spacing: -2px; line-height: 1.08;
  color: #fff;
}
.intro-dark-grad {
  background: linear-gradient(135deg, #A78BFA, #C084FC, #E879F9);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.intro-dark-right p {
  font-size: clamp(15px,1.2vw,17px); line-height: 1.85;
  color: rgba(255,255,255,.85); margin-bottom: 20px;
}
.intro-dark-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px;
}
.intro-dark-pills span {
  font-family: var(--heading); font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px; color: #C084FC;
  background: rgba(124,58,237,.15); border: 1px solid rgba(124,58,237,.25);
  padding: 6px 16px; border-radius: 100px;
}

/* ===== INTRO SPLIT LAYOUT (legacy) ===== */
.intro-split {
  max-width: 1040px;
}
.intro-split h2 { margin-bottom: clamp(28px,3vw,40px); }
.intro-split-cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,5vw,72px); align-items: start;
}

/* ===== RESPONSIVE: INNER PAGES ===== */
@media (max-width: 968px) {
  .svc-card-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card-grid-v2 { grid-template-columns: 1fr; }
  .systems-grid { grid-template-columns: 1fr; }
  .systems-grid-v3, .systems-grid-v3.sys-3col { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .work-cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 16px; }
  .founder-section { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .consult-inner { grid-template-columns: 1fr; gap: 40px; }
  .intro-dark-inner { grid-template-columns: 1fr; gap: 32px; }
  .intro-dark-left h2 { font-size: clamp(28px,6vw,40px); }
  .intro-split-cols { grid-template-columns: 1fr; gap: 32px; }
  .founder-bio { flex-direction: column; text-align: center; gap: 24px; }
  .founder-card { flex-direction: column !important; text-align: center !important; gap: 24px !important; }
}
@media (max-width: 640px) {
  .svc-card-grid { grid-template-columns: 1fr; }
  .inner-banner { padding: 120px 20px 60px; }
  .inner-banner h1 { letter-spacing: -1.5px; }
  .svc-hero-v2 { padding: 130px 20px 80px; }
  .svc-hero-v2 h1 { letter-spacing: -1.5px; }
  .svc-section { padding: 48px 20px; }
  .svc-card-v2 { padding: 28px; }
  .sys-box { padding: 24px; }
}
