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

:root {
  --primary:   #0084FF;
  --action:    #5DBF00;
  --dark:      #0F172A;
  --surface:   #F8FAFC;
  --white:     #FFFFFF;
  --text:      #1E293B;
  --muted:     #64748B;
  --border:    #E2E8F0;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  background: var(--white);
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── Typography ──────────────────────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--muted); line-height: 1.75; }

.label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .75rem;
}
.label-white { color: rgba(255,255,255,.6); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #006EE0; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-action  { background: var(--action); color: #fff; }
.btn-action:hover { background: #4DA800; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8); }
.btn-outline-dark { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: #fff; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ── Navigation ──────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--dark);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
}
nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,.08);
  padding: .875rem 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-weight: 500;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}
.nav-links a:hover { color: #fff; }
nav.scrolled .nav-links a { color: var(--muted); }
nav.scrolled .nav-links a:hover { color: var(--text); }

.nav-cta .btn { padding: .625rem 1.25rem; font-size: .875rem; }
nav.scrolled .nav-cta .btn-outline { border-color: var(--primary); color: var(--primary); }
nav.scrolled .nav-cta .btn-outline:hover { background: var(--primary); color: #fff; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
nav.scrolled .hamburger span { background: var(--dark); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; font-size: 1.5rem; font-weight: 700; }
.mobile-menu a:hover { color: var(--action); }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* ── Layout helpers ──────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 1.5rem 0; }
.section-sm { padding: 1rem 0; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Cards ───────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: rgba(0,132,255,.08);
}

/* ── Hero Badge ──────────────────────────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(93,191,0,.12);
  border: 1px solid rgba(93,191,0,.28);
  border-radius: 100px;
  padding: .4rem 1rem .4rem .75rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--action);
  margin-bottom: 1.5rem;
  letter-spacing: .01em;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--action);
  flex-shrink: 0;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .55; transform: scale(.85); }
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2744 50%, #0d2137 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 0 3rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,132,255,.22) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero h1 { color: #fff; margin-bottom: 1.5rem; }
.hero h1 em { font-style: normal; color: var(--action); }
.hero p { color: rgba(255,255,255,.7); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 540px; }

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: .4rem 1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}
.chip-check { color: var(--action); font-weight: 700; }

/* ── Problem section ─────────────────────────────────────────────────────── */
.pain-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.pain-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.pain-card h4 { margin-bottom: .5rem; color: var(--text); }

/* ── Steps ───────────────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 1rem);
  right: calc(16.67% + 1rem);
  height: 2px;
  background: var(--border);
}
.step { text-align: center; }
.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}
.step-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--surface);
  border-radius: 100px;
  padding: .25rem .75rem;
  margin-bottom: .75rem;
}
.step h3 { margin-bottom: .5rem; }

/* ── Stats bar ───────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--primary);
  padding: 2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  display: block;
}
.stat-label {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  margin-top: .25rem;
}

/* ── Services grid ───────────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.service-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,132,255,.12), rgba(93,191,0,.08));
  border: 1px solid rgba(0,132,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { margin-bottom: .5rem; color: var(--text); transition: color var(--transition); }
.service-card:hover h3 { color: var(--primary); }
.service-card p { font-size: .9rem; }

.pain-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .875rem;
}
.pain-icon svg { width: 28px; height: 28px; }

/* ── Qualifier ───────────────────────────────────────────────────────────── */
.qualifier {
  background: var(--dark);
  padding: 1.5rem 0;
  color: #fff;
}
.qualifier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.check-list, .cross-list { list-style: none; display: flex; flex-direction: column; gap: .875rem; }
.check-list li, .cross-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
}
.check-list li::before { content: '✓'; color: var(--action); font-weight: 700; flex-shrink: 0; margin-top: .1em; }
.cross-list li::before { content: '✗'; color: #EF4444; font-weight: 700; flex-shrink: 0; margin-top: .1em; }

/* ── Final CTA ───────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2744 100%);
  padding: 2rem 0;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.65); font-size: 1rem; margin-bottom: 2.5rem; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
  background: #080f1a;
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,.5);
  font-size: .875rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { margin-top: .75rem; font-size: .875rem; max-width: 260px; }
.footer-col h4 { color: #fff; font-size: .875rem; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
.footer-col a { color: rgba(255,255,255,.5); font-size: .875rem; transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo img { height: 32px; width: auto; display: block; opacity: .9; }

/* ── Page hero (inner pages) ─────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2744 100%);
  padding: 6rem 0 2.5rem;
  text-align: center;
}
.page-hero h1 { color: #fff; }
.page-hero p  { color: rgba(255,255,255,.65); font-size: 1.1rem; margin: 1rem auto 0; max-width: 600px; }

/* ── Service nav section ─────────────────────────────────────────────────── */
.service-nav-section {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.service-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
}
.service-nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 1.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: .875rem;
  text-align: center;
  transition: all var(--transition);
}
.service-nav-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  color: var(--primary);
}
.service-nav-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.service-nav-icon svg { width: 34px; height: 34px; }
.service-nav-icon.ic-green   { background: rgba(93,191,0,.12);   border: 1px solid rgba(93,191,0,.22); }
.service-nav-icon.ic-blue    { background: rgba(0,132,255,.1);   border: 1px solid rgba(0,132,255,.18); }
.service-nav-icon.ic-orange  { background: rgba(249,115,22,.1);  border: 1px solid rgba(249,115,22,.2); }
.service-nav-icon.ic-indigo  { background: rgba(99,102,241,.1);  border: 1px solid rgba(99,102,241,.2); }
.service-nav-icon.ic-cyan    { background: rgba(8,145,178,.1);   border: 1px solid rgba(8,145,178,.2); }
.service-nav-icon.ic-emerald { background: rgba(5,150,105,.1);   border: 1px solid rgba(5,150,105,.2); }
.service-nav-card:hover .service-nav-icon { transform: scale(1.06); }

/* ── Services page layout (sidebar + main) ───────────────────────────────── */
.services-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 2rem 3rem;
}
.services-sidebar {
  position: sticky;
  top: 84px;
  align-self: start;
  z-index: 100;
}
.services-sidenav {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1rem 0.75rem;
  box-shadow: var(--shadow);
}
.sidenav-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: .625rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: .5rem;
}
.sidenav-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .65rem;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: all var(--transition);
  margin-bottom: .2rem;
  line-height: 1.3;
}
.sidenav-link:hover { color: var(--text); background: var(--surface); }
.sidenav-link.active { color: var(--text); background: var(--surface); }
.sidenav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.services-main { min-width: 0; }

/* ── Service stack grid (alternating 2-col layout) ───────────────────────── */
.service-stack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.service-stack-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.service-stack-text h2 { margin-bottom: 0; line-height: 1.2; }
.service-stack-text > p { margin: 0; }
.service-stack-text .btn { align-self: flex-start; margin-top: .25rem; }
/* Alt cards: push visual panel to the left column */
.service-stack.alt .service-stack-visual { order: -1; }

/* ── Service stack layout (all service sections) ─────────────────────────── */
.service-stack {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.045);
  scroll-margin-top: 96px;
}
.service-stack:last-child { margin-bottom: 0; }
.service-stack::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.service-stack.accent-green::before   { background: linear-gradient(90deg,#5DBF00,#7ed300); }
.service-stack.accent-blue::before    { background: linear-gradient(90deg,#0084FF,#0062cc); }
.service-stack.accent-orange::before  { background: linear-gradient(90deg,#F97316,#ea6000); }
.service-stack.accent-indigo::before  { background: linear-gradient(90deg,#6366F1,#4f46e5); }
.service-stack.accent-cyan::before    { background: linear-gradient(90deg,#0891B2,#0e7490); }
.service-stack.accent-emerald::before { background: linear-gradient(90deg,#059669,#047857); }
.service-stack-top { margin-bottom: 1.5rem; }
.service-stack-top h2 { margin-bottom: .75rem; }
.service-stack-top p { max-width: 760px; }
.service-stack-middle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 1.25rem;
}
.service-stack-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-top: .5rem;
}
.service-stack-bottom.align-left  > a { grid-column: 1; justify-self: center; }
.service-stack-bottom.align-right > a { grid-column: 2; justify-self: center; }

/* ── Services page ───────────────────────────────────────────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .service-text { order: 2; }
.service-detail.reverse .service-visual { order: 1; }
.service-badge {
  display: inline-block;
  background: rgba(0,132,255,.1);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .875rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.service-badge.green { background: rgba(93,191,0,.12); color: var(--action); }
.service-text h2 { margin-bottom: 1rem; }
.service-text p { margin-bottom: 1.25rem; }
.service-visual {
  background: linear-gradient(135deg, rgba(0,132,255,.04) 0%, rgba(93,191,0,.04) 100%);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-icon {
  width: 140px;
  height: 140px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(0,132,255,.15), rgba(93,191,0,.12));
  border: 2px solid rgba(0,132,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-icon svg { width: 72px; height: 72px; }

.how-it-works { margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.how-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.how-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1em;
}
.how-step p { font-size: .9rem; margin: 0; color: var(--text); }
.service-text .btn { margin-top: 1.5rem; }

/* ── About page ──────────────────────────────────────────────────────────── */
.differentiators { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.diff-card {
  padding: 2.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}
.diff-icon { width: 52px; height: 52px; background: rgba(0,132,255,.08); border-radius: 12px; border: 1px solid rgba(0,132,255,.12); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.diff-icon svg { width: 26px; height: 26px; }
.diff-card h3 { margin-bottom: .75rem; }

/* ── Apply page ──────────────────────────────────────────────────────────── */
.apply-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 3rem 0; }
.apply-card {
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}
.apply-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.apply-card.featured { border-color: var(--action); background: rgba(93,191,0,.03); }
.apply-card-icon { width: 64px; height: 64px; border-radius: 18px; background: rgba(0,132,255,.07); border: 1px solid rgba(0,132,255,.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.apply-card.featured .apply-card-icon { background: rgba(93,191,0,.08); border-color: rgba(93,191,0,.15); }
.apply-card-icon svg { width: 32px; height: 32px; }
.apply-card h3 { font-size: 1.4rem; margin-bottom: .75rem; }
.apply-card p { margin-bottom: 1.5rem; }

.process-timeline { display: flex; gap: 0; margin: 3rem 0; position: relative; }
.process-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border);
}
.timeline-step {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}
.timeline-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}
.timeline-step h4 { font-size: .9rem; margin-bottom: .35rem; }
.timeline-step p  { font-size: .8rem; }

/* ── CSM block (about page) ──────────────────────────────────────────────── */
.csm-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3.5rem;
}
.csm-avatar-wrap {
  width: 200px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid rgba(0,132,255,.15);
  box-shadow: 0 8px 32px rgba(0,132,255,.12);
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0,132,255,.08), rgba(93,191,0,.06));
}
.csm-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.csm-icon-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,132,255,.1), rgba(93,191,0,.08));
  border: 2px solid rgba(0,132,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.csm-icon-wrap svg { width: 64px; height: 64px; }
.csm-text h2 { margin-bottom: .875rem; }
.csm-text p  { margin-bottom: 1.5rem; max-width: 580px; }
.csm-list { color: var(--text) !important; }
.csm-list li::before { color: var(--action) !important; }
@media (max-width: 768px) {
  .csm-block { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; text-align: center; }
  .csm-avatar-wrap { width: 140px; height: 170px; margin: 0 auto; }
  .csm-icon-wrap { width: 100px; height: 100px; margin: 0 auto; }
  .csm-icon-wrap svg { width: 48px; height: 48px; }
}

/* ── Service visual panels ───────────────────────────────────────────────── */
.vis-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.vis-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .25rem;
}
.vis-meter-row {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.vis-tag {
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  width: 54px;
  text-align: center;
}
.vis-tag.bad  { background: rgba(239,68,68,.1);  color: #EF4444; }
.vis-tag.good { background: rgba(93,191,0,.12);  color: var(--action); }
.vis-bar-track {
  flex: 1;
  height: 10px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.vis-bar-fill {
  height: 100%;
  border-radius: 100px;
  transition: width .6s ease;
}
.vis-pct {
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
  width: 36px;
  text-align: right;
}
.vis-divider {
  border-top: 1px solid var(--border);
  margin: .25rem 0;
}
.vis-stat-row {
  display: flex;
  gap: 1rem;
}
.vis-stat {
  flex: 1;
  background: var(--surface);
  border-radius: 10px;
  padding: .875rem;
  border: 1px solid var(--border);
}
.vis-num {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .2rem;
}
.vis-desc {
  font-size: .72rem;
  color: var(--muted);
}
.vis-program-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  color: var(--text);
}
.vis-program-row span { color: var(--muted); }
.vis-prog-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: .35em;
}
.vis-timeline-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  color: var(--text);
}
.vis-tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  flex-shrink: 0;
  margin-top: .3em;
}
.vis-tl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}
.vis-card-chip {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .75rem 1rem;
  font-size: .875rem;
  color: var(--text);
}
.vis-card-chip span { color: var(--muted); }
.vis-card-chip-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--action));
  flex-shrink: 0;
}
.vis-callout {
  background: rgba(0,132,255,.06);
  border: 1px solid rgba(0,132,255,.15);
  border-radius: 10px;
  padding: .875rem 1rem;
  font-size: .82rem;
  color: var(--text);
  line-height: 1.6;
}

/* ── Service block — editorial single-column layout ─────────────────────── */
.service-block-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1rem;
}
.service-block-kpi {
  text-align: right;
  flex-shrink: 0;
}
.service-block-kpi .kpi-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
}
.service-block-kpi .kpi-label {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-top: .25rem;
}
.service-block-desc {
  font-size: .9375rem;
  line-height: 1.72;
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 1rem;
}
.service-steps {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 0;
}
.service-step-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.service-step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .2rem;
}
.service-step-text {
  font-size: .875rem;
  line-height: 1.6;
  color: var(--muted);
}
.service-data-strip {
  display: flex;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 1.75rem 0;
}
.sds-item {
  flex: 1;
  padding: 1rem 1.25rem;
  border-right: 1px solid var(--border);
}
.sds-item:last-child { border-right: none; }
.sds-label {
  font-size: .67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: .3rem;
}
.sds-value {
  font-size: .975rem;
  font-weight: 700;
  color: var(--text);
}

/* ── Service card inner 2-col (body + aside) ─────────────────────────────── */
.service-card-inner {
  display: grid;
  grid-template-columns: 1fr 252px;
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
}
.service-card-body { min-width: 0; }
.service-stack h2 { margin: .5rem 0 .75rem; font-size: clamp(1.25rem, 2.5vw, 1.625rem); }
.service-block-desc { max-width: none; margin-bottom: 1rem; }
.service-card-aside {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.125rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.service-aside-stat {
  text-align: center;
  padding-bottom: .875rem;
  border-bottom: 1px solid var(--border);
}
.service-aside-stat .kpi-num {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
}
.service-aside-stat .kpi-label {
  font-size: .67rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-top: .25rem;
}
.service-data-items {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.sdi-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .5rem;
  padding: .375rem 0;
  border-bottom: 1px solid var(--border);
}
.sdi-row:last-child { border-bottom: none; }
.sdi-label {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 500;
}
.sdi-value {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--text);
  text-align: right;
}

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.testimonial-mark {
  font-size: 3.5rem;
  line-height: .8;
  color: rgba(0,132,255,.13);
  font-family: Georgia, serif;
  margin-bottom: .75rem;
}
.testimonial-text {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--action));
  color: #fff;
  font-weight: 800;
  font-size: .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
.testimonial-name { font-weight: 700; font-size: .875rem; color: var(--text); line-height: 1.2; }
.testimonial-role { font-size: .78rem; color: var(--muted); }

.inline-proof {
  background: rgba(0,132,255,.04);
  border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0;
  padding: .625rem 1rem;
  margin-top: .875rem;
  font-size: .84rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
}
.inline-proof-attr {
  display: block;
  margin-top: .4rem;
  font-style: normal;
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
}

/* ── Social Proof Strip ──────────────────────────────────────────────────── */
.proof-strip {
  background: var(--dark);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
}
.proof-stat { text-align: center; padding: 0 3rem; }
.proof-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: .3rem;
}
.proof-label {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
}
.proof-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* ── Result Cards ────────────────────────────────────────────────────────── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.result-header {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-bottom: 1.25rem;
}
.result-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--action));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.result-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
.result-name { font-weight: 700; font-size: 1rem; color: var(--text); line-height: 1.2; }
.result-badge {
  font-size: .72rem;
  font-weight: 700;
  color: var(--action);
  background: rgba(93,191,0,.1);
  border: 1px solid rgba(93,191,0,.2);
  border-radius: 20px;
  padding: .15rem .6rem;
  display: inline-block;
  margin-top: .25rem;
}
.result-advance {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.result-outcomes { display: flex; flex-direction: column; gap: .625rem; flex: 1; }
.result-row {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.45;
}
.result-arrow { color: var(--action); font-weight: 700; flex-shrink: 0; }
.result-big { font-weight: 700; color: var(--primary); }

/* ── FAQ Accordion ───────────────────────────────────────────────────────── */
.faq-category {
  margin-bottom: 2.5rem;
}
.faq-category-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary);
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--primary);
  margin-bottom: 1rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: .625rem;
  background: var(--white);
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item.open { box-shadow: var(--shadow); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-size: .975rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: color var(--transition);
  font-family: inherit;
}
.faq-question:hover { color: var(--primary); }
.faq-item.open .faq-question { color: var(--primary); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--transition), color var(--transition);
  display: inline-block;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
}
.faq-answer p {
  font-size: .925rem;
  line-height: 1.75;
  color: var(--muted);
  padding-top: 1rem;
  margin: 0;
}
.faq-item.open .faq-answer { display: block; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
/* sidebar removed — service-nav-section visible on all screen sizes */

/* ── Back to top link on service cards ──────────────────────────────────── */
.back-to-nav {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  margin-top: 1.5rem;
  transition: color var(--transition);
  letter-spacing: .03em;
}
.back-to-nav:hover { color: var(--text); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-wrapper { padding: 1.5rem 1.5rem 2rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .grid-2, .grid-3, .pain-cards, .steps,
  .services-grid, .qualifier-grid, .service-detail,
  .apply-cards, .differentiators { grid-template-columns: 1fr; }

  .service-stack-middle { grid-template-columns: 1fr; gap: 2rem; }
  .service-stack-bottom { grid-template-columns: 1fr; }
  .service-stack-bottom.align-left > a,
  .service-stack-bottom.align-right > a { grid-column: 1; justify-self: center; }
  .service-stack-grid { grid-template-columns: 1fr; }
  .service-stack.alt .service-stack-visual { order: 0; }
  .service-nav-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .service-nav-card { padding: 1.25rem .75rem; font-size: .8rem; }
  .service-nav-icon { width: 56px; height: 56px; border-radius: 14px; }
  .service-nav-icon svg { width: 28px; height: 28px; }

  .steps::before { display: none; }
  .service-detail.reverse .service-text,
  .service-detail.reverse .service-visual { order: unset; }

  .process-timeline { flex-direction: column; gap: 1.5rem; }
  .process-timeline::before { display: none; }
  .timeline-dot { margin: 0 auto .75rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  h1 { font-size: 2.25rem; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; justify-content: center; }

  .proof-stats { flex-wrap: wrap; gap: 1.5rem 0; }
  .proof-stat { padding: 0 1.5rem; }
  .proof-divider { display: none; }

  .results-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }

  .service-block-header { flex-direction: column; gap: .5rem; }
  .service-block-kpi { text-align: left; }
  .service-data-strip { flex-direction: column; }
  .sds-item { border-right: none; border-bottom: 1px solid var(--border); }
  .sds-item:last-child { border-bottom: none; }
  .service-card-inner { grid-template-columns: 1fr; }
  .service-card-aside { position: static; }
}
