/* ============================================================
   Crazythemes v3 — Modern SaaS, White + Blue
   Inspired by Stripe, Linear, Vercel marketing aesthetics
   ============================================================ */

:root {
  /* Palette — Modern SaaS White + Blue */
  --white: #ffffff;
  --off-white: #fafbfc;
  --tint: #f4f7fc;
  --tint-2: #eef3fb;
  --surface: #ffffff;
  --border: #e5eaf2;
  --border-2: #d8e0ec;
  --ink: #0b1e3a;          /* deep navy — primary text */
  --ink-2: #1f3a68;        /* secondary text on dark */
  --muted: #5b6b85;        /* muted text */
  --muted-2: #8a97ad;
  --blue: #2563eb;         /* primary accent */
  --blue-dark: #1d4ed8;
  --blue-light: #60a5fa;
  --blue-bg: #eef4ff;
  --indigo: #4f46e5;
  --success: #10b981;
  --warn: #f59e0b;
  --danger: #ef4444;

  /* Type */
  --font-display: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --gutter: 32px;
  --max: 1280px;
  --radius: 10px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(11, 30, 58, 0.05);
  --shadow-md: 0 4px 14px rgba(11, 30, 58, 0.06), 0 1px 2px rgba(11, 30, 58, 0.04);
  --shadow-lg: 0 12px 32px rgba(11, 30, 58, 0.08), 0 2px 6px rgba(11, 30, 58, 0.04);
  --shadow-blue: 0 12px 32px rgba(37, 99, 235, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--blue); color: var(--white); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

section { position: relative; }

/* ===== Typography utilities ===== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1.5px;
  background: var(--blue);
}
.eyebrow.no-bar::before { display: none; }
.eyebrow.on-dark { color: var(--blue-light); }
.eyebrow.on-dark::before { background: var(--blue-light); }

.h-display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-weight: 600;
  max-width: 760px;
  margin-top: 14px;
}
.section-title .accent { color: var(--blue); }
.section-title .muted { color: var(--muted); font-weight: 500; }

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.section-head .meta {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-align: right;
  line-height: 1.6;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn .arrow {
  font-family: var(--font-mono);
  transition: transform 0.2s;
  font-size: 14px;
  line-height: 1;
}
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}
.btn-accent:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: var(--shadow-blue);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--border-2);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
}
.btn-ghost:hover {
  background: var(--tint);
  color: var(--blue);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   1. UTILITY BAR
   ============================================================ */
.utility-bar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  padding: 8px 0;
  position: relative;
  z-index: 50;
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.utility-bar .utility-left { display: flex; gap: 20px; align-items: center; }
.utility-bar .utility-right { display: flex; gap: 18px; align-items: center; }
.utility-bar .badge {
  background: var(--blue);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.utility-bar .pulse {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  margin-right: 6px;
  vertical-align: middle;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.45; } }

/* ============================================================
   2. NAV
   ============================================================ */
.nav {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
}
.nav .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.nav-logo .mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--indigo) 100%);
  color: var(--white);
  display: inline-grid;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  line-height: 1;
}
.nav-links {
  display: flex;
  gap: 28px;
  justify-content: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -19px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px 2px 0 0;
}
.nav-links .dropdown-arrow { font-size: 10px; opacity: 0.6; }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-cta .ph-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.15s;
}
.nav-cta .ph-link:hover { color: var(--ink); background: var(--tint); }

/* ============================================================
   3. HERO
   ============================================================ */
.hero {
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--blue-bg) 0%, transparent 70%),
    var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: center;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black 0%, transparent 100%);
  opacity: 0.5;
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 6px 6px 14px;
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero-pill .tag {
  background: var(--blue-bg);
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-pill .arrow { font-family: var(--font-mono); color: var(--muted); margin-left: 2px; }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--blue); }
.hero h1 .gradient {
  background: linear-gradient(135deg, var(--blue) 0%, var(--indigo) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: 24px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-trust .rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-trust .rating .num {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-trust .rating .stars {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--warn);
}
.hero-trust .divider { width: 1px; height: 44px; background: var(--border); }
.hero-trust .trust-label { font-size: 13px; line-height: 1.5; color: var(--muted); }
.hero-trust .trust-label strong { color: var(--ink); display: block; font-weight: 600; }

/* Hero visual */
.hero-visual {
  position: relative;
}
.hero-illust {
  width: 100%;
  aspect-ratio: 16 / 12;
  background: url('https://crazythemes.com/wp-content/uploads/crazythemes-redesign/hero-saas.png') center/cover no-repeat;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero-tag {
  position: absolute;
  bottom: -16px; left: 24px;
  background: var(--white);
  border: 1px solid var(--border-2);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.hero-tag .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: pulse 1.8s ease-in-out infinite;
}

/* Floating UI card on hero */
.hero-float {
  position: absolute;
  top: -20px; right: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  min-width: 180px;
  animation: bob 5s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-float .icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--blue-bg);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero-float .icon svg { width: 18px; height: 18px; }
.hero-float .text { display: flex; flex-direction: column; gap: 2px; }
.hero-float .text strong { font-size: 13px; font-weight: 600; color: var(--ink); }
.hero-float .text span { font-size: 11px; color: var(--muted); font-family: var(--font-mono); }

/* ============================================================
   4. MARQUEE — Tech ticker style
   ============================================================ */
.marquee {
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  position: relative;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee-scroll 32s linear infinite;
  width: max-content;
  align-items: center;
}
.marquee-track.reverse { animation-direction: reverse; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.015em;
  display: inline-flex;
  align-items: center;
  gap: 56px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
.marquee-item .sep {
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  display: inline-block;
}
.marquee-item .sep.alt { background: var(--indigo); }
.marquee-item .sep.x { background: rgba(255,255,255,0.3); }

/* ============================================================
   5. LOGO WALL
   ============================================================ */
.logo-wall {
  padding: 64px 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.logo-wall .wall-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 36px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.logo-wall .wall-head strong { color: var(--ink); font-weight: 600; }
.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.logo {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 16px;
  display: grid;
  place-items: center;
  min-height: 92px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color 0.2s, background 0.2s;
}
.logo:hover { color: var(--ink); background: var(--white); }
.logo.mono { font-family: var(--font-mono); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.logo.italic { font-style: italic; font-weight: 500; }

/* ============================================================
   6. SERVICES
   ============================================================ */
.services {
  padding: 96px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 300px;
  cursor: pointer;
}
.service:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.service-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.service-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted-2);
}
.service-icon-box {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--blue-bg);
  color: var(--blue);
  display: grid;
  place-items: center;
  transition: all 0.2s;
}
.service:hover .service-icon-box {
  background: var(--blue);
  color: var(--white);
}
.service-icon-box svg { width: 22px; height: 22px; }
.service-name {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--ink);
}
.service-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  flex-grow: 1;
}
.service-link {
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--blue);
  margin-top: auto;
}
.service-link .arrow { transition: transform 0.2s; }
.service:hover .service-link .arrow { transform: translateX(3px); }

/* ============================================================
   7. PROCESS
   ============================================================ */
.process {
  padding: 96px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 8.33%;
  right: 8.33%;
  height: 2px;
  background: var(--border-2);
  z-index: 0;
}
.process-steps::after {
  content: '';
  position: absolute;
  top: 24px;
  left: 8.33%;
  width: calc(83.33% * 0.6);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--indigo) 100%);
  z-index: 1;
}
.step {
  padding: 0 14px;
  position: relative;
  z-index: 2;
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border-2);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 24px;
  transition: all 0.2s;
}
.step.done .step-num { background: var(--blue); border-color: var(--blue); color: var(--white); }
.step.active .step-num {
  background: var(--white);
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}
.step-title {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 600;
}
.step-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

/* ============================================================
   8. CASE STUDY
   ============================================================ */
.case-study {
  padding: 96px 0;
  background: var(--white);
}
.case-card {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--ink);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.case-visual {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 70%),
    url('https://crazythemes.com/wp-content/uploads/crazythemes-redesign/case-study-saas.png') center/cover no-repeat;
  min-height: 540px;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.case-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.case-meta {
  display: flex;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  align-items: center;
}
.case-meta .pipe { opacity: 0.4; }
.case-title {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  font-weight: 600;
}
.case-title .accent { color: var(--blue-light); }
.case-desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
}
.case-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.case-result .num {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  color: var(--blue-light);
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 8px;
}
.case-result .label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
.case-cta {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   9. STATS
   ============================================================ */
.stats {
  padding: 80px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .num .small {
  font-size: 32px;
  margin-left: 2px;
  color: var(--blue);
  -webkit-text-fill-color: var(--blue);
}
.stat .label {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}
.stat .label strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; }

/* ============================================================
   10. WHITE LABEL
   ============================================================ */
.white-label {
  padding: 110px 0;
  background: var(--white);
}
.wl-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.wl-left .section-title { margin-bottom: 22px; }
.wl-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 28px;
}
.wl-checks {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}
.wl-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}
.wl-check .tick {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue-bg);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.wl-check strong { font-weight: 600; color: var(--ink); }

.wl-visual {
  position: relative;
}
.wl-shield {
  width: 100%;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 50%, var(--blue-bg) 0%, transparent 70%),
    url('https://crazythemes.com/wp-content/uploads/crazythemes-redesign/wp-shield-saas.png') center/cover no-repeat;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.wl-badge {
  position: absolute;
  top: 24px; left: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}
.wl-badge .lock {
  color: var(--blue);
}

/* Comparison */
.compare {
  margin-top: 80px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.compare-row:last-child { border-bottom: none; }
.compare-row.header {
  background: var(--off-white);
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.compare-row.header .cell { padding: 16px 20px; font-weight: 600; }
.compare-row.header .cell.accent {
  background: var(--ink);
  color: var(--white);
  position: relative;
}
.compare-row.header .cell.accent::after {
  content: 'BEST FIT';
  position: absolute;
  top: 50%; right: 16px;
  transform: translateY(-50%);
  font-size: 9px;
  background: var(--blue);
  color: var(--white);
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 700;
}
.compare-row .cell {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  border-right: 1px solid var(--border);
}
.compare-row .cell:last-child { border-right: none; }
.compare-row .cell.label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.compare-row .cell.accent { background: var(--blue-bg); color: var(--ink); font-weight: 500; }
.compare-row .cell .check { color: var(--success); font-weight: 700; }
.compare-row .cell .cross { color: var(--danger); font-weight: 700; }
.compare-row .cell .partial { color: var(--warn); font-weight: 700; }

/* ============================================================
   11. TECH STACK TICKER (light strip)
   ============================================================ */
.tech-ticker {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  overflow: hidden;
}
.tech-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
  align-items: center;
}
.tech-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.tech-item .tech-dot {
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
}
.tech-item .tech-dot.alt { background: var(--indigo); }
.tech-item .tech-dot.olive { background: var(--blue-light); }

/* ============================================================
   12. TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 96px 0;
  background: var(--white);
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.test-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: all 0.2s;
}
.test-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.test-card.featured {
  background: linear-gradient(135deg, var(--ink) 0%, #14264d 100%);
  border-color: var(--ink);
  color: var(--white);
}
.test-quote-mark {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 0.6;
  color: var(--blue);
  font-weight: 700;
}
.test-card.featured .test-quote-mark { color: var(--blue-light); }
.test-quote {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  flex-grow: 1;
}
.test-card.featured .test-quote { color: var(--white); }
.test-stars {
  color: var(--warn);
  font-size: 13px;
  letter-spacing: 0.1em;
}
.test-author {
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: center;
}
.test-card.featured .test-author { border-top-color: rgba(255,255,255,0.12); }
.test-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue) 0%, var(--indigo) 100%);
  flex-shrink: 0;
}
.test-meta { display: flex; flex-direction: column; gap: 2px; }
.test-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.test-card.featured .test-name { color: var(--white); }
.test-role { font-size: 12.5px; color: var(--muted); }
.test-card.featured .test-role { color: rgba(255,255,255,0.65); }

/* ============================================================
   13. PRICING
   ============================================================ */
.pricing {
  padding: 96px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.plan {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: all 0.2s;
}
.plan:hover { box-shadow: var(--shadow-md); }
.plan.featured {
  background: linear-gradient(135deg, var(--ink) 0%, #14264d 100%);
  color: var(--white);
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.plan.featured .plan-name { color: var(--white); }
.plan.featured .plan-tagline { color: rgba(255,255,255,0.65); }
.plan.featured .plan-price-amount { color: var(--white); }
.plan.featured .plan-price-currency,
.plan.featured .plan-price-period { color: rgba(255,255,255,0.55); }
.plan.featured .plan-price { border-color: rgba(255,255,255,0.12); }
.plan.featured .plan-included li { color: rgba(255,255,255,0.85); }
.plan.featured .plan-included li::before { color: var(--blue-light); }
.plan.featured .btn-primary { background: var(--blue); border-color: var(--blue); }
.plan.featured .btn-primary:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.plan-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.plan-name {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 600;
}
.plan-tagline {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  min-height: 42px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.plan-price-currency { font-size: 18px; color: var(--muted); font-weight: 600; }
.plan-price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--ink);
}
.plan-price-period {
  font-size: 13px;
  color: var(--muted);
  margin-left: 4px;
}
.plan-included {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
}
.plan-included li {
  display: flex;
  gap: 10px;
  line-height: 1.5;
}
.plan-included li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}
.plan .btn { margin-top: auto; width: 100%; justify-content: center; }

/* ============================================================
   14. FAQ
   ============================================================ */
.faq {
  padding: 96px 0;
  background: var(--white);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.faq-left .section-title { font-size: clamp(32px, 4vw, 48px); }
.faq-left .help-card {
  margin-top: 28px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.faq-left .help-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.faq-left .help-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.55;
}
.faq-list {
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  padding: 20px 0;
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  cursor: pointer;
}
.faq-q .plus {
  font-family: var(--font-mono);
  font-size: 20px;
  width: 32px; height: 32px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--muted);
  transition: all 0.25s;
}
.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 640px;
}

/* ============================================================
   15. CTA BAND
   ============================================================ */
.cta-band {
  padding: 110px 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(37, 99, 235, 0.3) 0%, transparent 70%),
    linear-gradient(135deg, var(--ink) 0%, #14264d 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 2; text-align: center; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  font-weight: 600;
}
.cta-band h2 .accent {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--white) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-band p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.cta-band .ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   16. FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 18px; font-size: 22px; }
.footer-brand .nav-logo .mark { box-shadow: 0 0 0 1px rgba(255,255,255,0.1); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: grid;
  place-items: center;
  transition: all 0.2s;
  color: rgba(255,255,255,0.7);
}
.footer-social:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.footer-social svg { width: 16px; height: 16px; }
.footer-col h5 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--blue-light); }
.footer-newsletter input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 11px 14px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 8px;
  transition: border-color 0.2s;
}
.footer-newsletter input:focus { outline: none; border-color: var(--blue); }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter button {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 11px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}
.footer-newsletter button:hover { background: var(--blue-dark); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .legal { display: flex; gap: 18px; }
.footer-bottom .legal a:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 32px 14px; }
  .process-steps::before, .process-steps::after { display: none; }
  .case-card { grid-template-columns: 1fr; }
  .case-visual { min-height: 360px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .stats-grid .stat:nth-child(2) { border-right: none; }
  .wl-grid { grid-template-columns: 1fr; gap: 48px; }
  .logos { grid-template-columns: repeat(3, 1fr); }
  .test-grid, .pricing-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .utility-bar .utility-right { display: none; }
  .nav .container { grid-template-columns: auto auto; }
  .nav-links { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 28px; }
  .stat:last-child { border-bottom: none; }
  .logos { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .marquee-item { font-size: 18px; gap: 32px; }
  .marquee-track { gap: 32px; }
  .case-body { padding: 32px 24px; }
  .case-results { grid-template-columns: 1fr; gap: 18px; }
  .compare-row { grid-template-columns: 1fr; }
  .compare-row .cell { border-right: none; border-bottom: 1px solid var(--border); }
  .compare-row .cell:last-child { border-bottom: none; }
  .compare-row.header { display: none; }
  .hero-float { right: 16px; min-width: 150px; padding: 10px 12px; }
  .plan.featured { transform: none; }
}

:root{--font-display:'Inter',system-ui,-apple-system,sans-serif;--font-body:'Inter',system-ui,-apple-system,sans-serif;--font-mono:'JetBrains Mono',ui-monospace,monospace;}
.elementor-widget-html .elementor-widget-container{overflow:visible;}

/* ===== a11y + consistency fixes ===== */
.btn-accent, .btn-accent .arrow, .btn-primary, .btn-primary .arrow { color:#fff !important; }
.btn-ghost-light, .btn-ghost-light .arrow { color:#fff !important; }
.btn-secondary, .btn-secondary .arrow { color: var(--ink) !important; }
.nav-cta .btn-primary { color:#fff !important; }
/* dark-section headings must stay white (kit global heading color was overriding them) */
.cta-band h2 { color:#fff !important; }
.case-title { color:#fff !important; }
.plan.featured .plan-name { color:#fff !important; }
.test-card.featured .test-quote, .test-card.featured .test-name { color:#fff !important; }
.marquee-item { color: rgba(255,255,255,0.7) !important; }
