/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Dark palette */
  --ink:       #060B16;
  --ink-800:   #0C1525;
  --ink-700:   #142038;
  --ink-600:   #1E2F4D;
  --ink-500:   #263B60;

  /* Brand */
  --blue:       #3B82F6;
  --blue-hover: #2563EB;
  --blue-900:   #1E3A5F;
  --blue-100:   #DBEAFE;

  /* Accent */
  --lime:     #22C55E;
  --lime-dim: rgba(34, 197, 94, 0.12);

  /* Light surfaces */
  --surface:    #F8FAFC;
  --surface-100:#F1F5F9;
  --border:     #E2E8F0;

  /* Text */
  --white:     #FFFFFF;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-400: #94A3B8;
  --slate-500: #64748B;
  --slate-700: #334155;
  --slate-800: #1E293B;
  --slate-900: #0F172A;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', 'Cascadia Code', 'Fira Code', monospace;

  --radius:    12px;
  --radius-sm:  8px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0, 0, 0, .08);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, .12);
  --shadow-xl: 0 20px 64px rgba(0, 0, 0, .24);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

code {
  font-family: var(--mono);
  font-size: .85em;
  background: var(--surface-100);
  color: var(--blue);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 96px 0; }
.section-light { background: var(--surface); }
.section-dark  { background: var(--ink-800); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .15s, color .15s, border-color .15s, opacity .15s, transform .1s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }

.btn-sm  { padding: 8px 16px;  font-size: 13px; }
.btn-lg  { padding: 14px 28px; font-size: 16px; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-hover); border-color: var(--blue-hover); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5);
}

.btn-white {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover { background: var(--slate-100); border-color: var(--slate-100); }

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--blue-100);
  color: var(--blue-hover);
  margin-bottom: 18px;
}

.badge-dim {
  background: rgba(59, 130, 246, .15);
  color: #93C5FD;
}

/* ===== SECTION HEADER ===== */
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--slate-900);
}

.section-dark .section-header h2 { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--slate-500);
  max-width: 600px;
  line-height: 1.7;
}
.section-dark .section-sub { color: var(--slate-400); }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 11, 22, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.5px;
}

.nav-logo-mark {
  color: var(--blue);
  font-size: 20px;
}

.nav-logo-by {
  font-size: 12px;
  font-weight: 500;
  color: var(--slate-400);
  letter-spacing: 0;
  margin-top: 1px;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-400);
  transition: color .15s;
}
.nav-links a:hover { color: var(--white); }

/* ===== HERO ===== */
.hero {
  position: relative;
  background-color: var(--ink);
  overflow: hidden;
  padding: 120px 0 100px;
  text-align: center;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(59, 130, 246, .12) 0%, transparent 60%),
    radial-gradient(circle, rgba(59, 130, 246, .1) 1px, transparent 1px);
  background-size: 100% 100%, 36px 36px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: rgba(59, 130, 246, .15);
  color: #93C5FD;
  border: 1px solid rgba(59, 130, 246, .25);
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-accent {
  background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 50%, #22C55E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--slate-400);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--slate-500);
}

.trust-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-pills span {
  font-size: 12px;
  font-weight: 500;
  font-family: var(--mono);
  color: var(--slate-400);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: 4px 12px;
  border-radius: 6px;
}

/* ===== PROBLEM SECTION ===== */
.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem-copy .badge { margin-bottom: 18px; }

.problem-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.2;
  color: var(--slate-900);
  margin-bottom: 20px;
}

.body-lg {
  font-size: 17px;
  color: var(--slate-600, #475569);
  line-height: 1.75;
  margin-bottom: 16px;
}

.body-md {
  font-size: 15px;
  color: var(--slate-500);
  line-height: 1.7;
}

.problem-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.problem-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.problem-item:first-child { border-top: 1px solid var(--border); }
.problem-item:last-child  { border-bottom: none; padding-bottom: 0; }

.problem-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  margin-top: 2px;
}

.problem-icon--bad  { background: rgba(239, 68, 68, .1); color: #EF4444; }
.problem-icon--good { background: var(--lime-dim); color: var(--lime); }

.problem-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
}

.problem-item p {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.6;
}

.problem-item--good strong { color: var(--lime); }

/* ===== SECURITY SECTION ===== */
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.security-card {
  padding: 40px;
  background: var(--ink-800);
  position: relative;
  transition: background .2s;
}
.security-card:hover { background: var(--ink-700); }

.security-card + .security-card {
  border-left: 1px solid rgba(255,255,255,.06);
}
.security-card:nth-child(3) {
  border-top: 1px solid rgba(255,255,255,.06);
  border-left: none;
}
.security-card:nth-child(4) {
  border-top: 1px solid rgba(255,255,255,.06);
  border-left: 1px solid rgba(255,255,255,.06);
}

.security-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.security-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}

.security-card p {
  font-size: 14px;
  color: var(--slate-400);
  line-height: 1.75;
  margin-bottom: 24px;
}

.security-stack {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.security-stack code {
  background: rgba(59, 130, 246, .1);
  color: #93C5FD;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  border: none;
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, rgba(59,130,246,.2) 100%);
  z-index: 0;
}

.step {
  position: relative;
  text-align: center;
  padding: 0 32px;
}

.step-num {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 6px var(--white), 0 0 0 8px rgba(59,130,246,.15);
}

.step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.step p {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.7;
}

/* ===== COMPARISON TABLE ===== */
.compare-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--slate-900);
}

.compare-col-label {
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: center;
}

.compare-col-generic {
  color: #FCA5A5;
  border-left: 1px solid rgba(255,255,255,.08);
}

.compare-col-grayfox {
  color: #86EFAC;
  border-left: 1px solid rgba(255,255,255,.08);
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--border);
  transition: background .15s;
}
.compare-row:hover { background: var(--surface); }

.compare-feature {
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-700);
  display: flex;
  align-items: center;
}

.compare-cell {
  padding: 18px 24px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 1px solid var(--border);
}

.compare-cell--bad  { color: var(--slate-500); }
.compare-cell--bad  span { color: #EF4444; font-weight: 700; flex-shrink: 0; }

.compare-cell--good { color: var(--slate-700); font-weight: 500; }
.compare-cell--good span { color: var(--lime); font-weight: 700; flex-shrink: 0; }

/* ===== INTEGRATIONS ===== */
.integration-groups {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

.integration-group {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  align-items: center;
  padding: 28px 36px;
  border-bottom: 1px solid var(--border);
}
.integration-group:last-child { border-bottom: none; }

.integration-group-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: .06em;
  padding-right: 24px;
  border-right: 1px solid var(--border);
}

.integration-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-left: 24px;
}

.integration-pills span {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-700);
  background: var(--surface-100);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  transition: background .15s, border-color .15s;
}
.integration-pills span:hover {
  background: var(--blue-100);
  border-color: rgba(59,130,246,.3);
  color: var(--blue-hover);
}

.integrations-note {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--slate-400);
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--white);
  padding: 36px;
  transition: background .15s;
}
.feature-card:hover { background: var(--surface); }

.feature-icon {
  font-size: 26px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.feature-card p {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.7;
}

.feature-card code {
  background: var(--surface-100);
  color: var(--slate-700);
  font-size: .8em;
}

/* ===== CONTACT SECTION ===== */
.section-contact {
  background: linear-gradient(135deg, var(--ink) 0%, #0D1B3E 50%, var(--ink) 100%);
  padding: 96px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-copy .badge { margin-bottom: 18px; }

.contact-copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1.2;
  margin-bottom: 18px;
}

.contact-copy > p {
  font-size: 16px;
  color: var(--slate-400);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-promises {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-promises li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--slate-300);
}

.promise-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lime-dim);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

/* Contact form */
.contact-form-wrap {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(8px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-300);
  letter-spacing: .01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border-color .15s, background .15s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate-500);
}

.form-group select option {
  background: var(--ink-800);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(59,130,246,.6);
  background: rgba(255,255,255,.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-feedback {
  min-height: 20px;
  font-size: 13px;
  text-align: center;
}

.form-feedback--error { color: #FCA5A5; }

.form-success {
  text-align: center;
  padding: 32px 0;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lime-dim);
  color: var(--lime);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 14px;
  color: var(--slate-400);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 40px 0;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.5px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--slate-500);
}

.footer-brand p a {
  color: var(--slate-400);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-brand p a:hover { color: var(--white); }

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--slate-500);
  transition: color .15s;
}
.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 12px;
  color: var(--slate-600, #475569);
  width: 100%;
  text-align: right;
}

/* ===== WHO IT'S FOR / VERTICALS ===== */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.vertical-card {
  background: var(--white);
  padding: 36px;
  transition: background .15s;
}
.vertical-card:hover { background: var(--surface-100); }

.vertical-card--cta {
  background: var(--ink);
}
.vertical-card--cta:hover { background: var(--ink-800); }

.vertical-card--cta h3 { color: var(--white); }
.vertical-card--cta p  { color: var(--slate-400); }

.vertical-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}

.vertical-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.vertical-card p {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 14px;
}

.vertical-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
  font-family: var(--mono);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 22px 28px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background .15s, color .15s;
  line-height: 1.4;
}
.faq-q:hover { background: var(--surface); color: var(--blue); }
.faq-q[aria-expanded="true"] { color: var(--blue); background: var(--surface); }

.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--slate-400);
}
.faq-q[aria-expanded="true"]::after {
  content: '\2212';
  color: var(--blue);
}

.faq-a {
  padding: 4px 28px 24px;
  background: var(--surface);
}

.faq-a p {
  font-size: 14px;
  color: var(--slate-600, #475569);
  line-height: 1.75;
  margin-bottom: 12px;
}
.faq-a p:last-child { margin-bottom: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .security-grid  { grid-template-columns: 1fr; }
  .security-card  { border-left: none !important; border-top: 1px solid rgba(255,255,255,.06) !important; }
  .security-card:first-child { border-top: none !important; }

  .features-grid  { grid-template-columns: 1fr 1fr; }
  .verticals-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 80px 0 72px; }

  .nav-links a:not(.btn) { display: none; }

  .problem-layout { grid-template-columns: 1fr; gap: 40px; }

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .steps::before { display: none; }
  .step { padding: 0; text-align: left; }
  .step-num { margin: 0 0 16px; box-shadow: 0 0 0 6px var(--white), 0 0 0 8px rgba(59,130,246,.15); }

  .compare-header,
  .compare-row { grid-template-columns: 1fr; }
  .compare-col-label { border-left: none; border-top: 1px solid rgba(255,255,255,.08); }
  .compare-cell { border-left: none; border-top: 1px solid var(--border); }
  .compare-feature { padding-bottom: 4px; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--slate-400); }

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

  .integration-group {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 24px;
  }
  .integration-group-label {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 12px;
  }
  .integration-pills { padding-left: 0; }

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

  .faq-q { padding: 18px 20px; font-size: 14px; }
  .faq-a { padding: 4px 20px 20px; }

  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 28px 24px; }
  .form-row-2 { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy  { text-align: left; }
}
