@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --bg: #ffffff;
  --bg-soft: #f7f8fc;
  --bg-muted: #eef0f7;
  --surface: #ffffff;
  --border: #e4e7ef;
  --border-strong: #c8cde0;
  --text: #0f1523;
  --text-sub: #3d4558;
  --muted: #6b7592;
  --faint: #9aa0b8;
  --blue: #1847ed;
  --blue-dark: #1239c4;
  --blue-light: #eef2ff;
  --blue-mid: #c7d2fe;
  --green: #059669;
  --green-light: #ecfdf5;
  --red: #dc2626;
  --red-light: #fef2f2;
  --shadow-sm: 0 1px 3px rgba(15,21,35,0.07), 0 1px 2px rgba(15,21,35,0.04);
  --shadow: 0 4px 16px rgba(15,21,35,0.08), 0 1px 4px rgba(15,21,35,0.04);
  --shadow-lg: 0 12px 40px rgba(15,21,35,0.1), 0 4px 12px rgba(15,21,35,0.05);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
}

.logo-mark {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.logo-domain { color: var(--muted); font-weight: 500; }

nav { display: flex; align-items: center; gap: 0.25rem; }

.nav-link {
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-sub);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: var(--text); background: var(--bg-soft); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.3rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.15s;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: white;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(24,71,237,0.3); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

.btn-lg { padding: 0.8rem 1.75rem; font-size: 0.96rem; border-radius: 10px; }
.btn-xl { padding: 0.95rem 2.25rem; font-size: 1rem; border-radius: 10px; }

/* ── HERO ── */
.hero {
  padding: 90px 2rem 80px;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-mid), transparent);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.4rem;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--faint);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 2rem;
  text-align: center;
}

.trust-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-sub);
}

.trust-icon { font-size: 1rem; }

/* ── SECTIONS ── */
section { padding: 90px 2rem; }

.container { max-width: 1080px; margin: 0 auto; }
.container-sm { max-width: 720px; margin: 0 auto; }
.container-md { max-width: 900px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ── PROBLEM SECTION ── */
.problem-section { background: var(--bg-soft); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.problem-text p {
  color: var(--text-sub);
  margin-bottom: 1.1rem;
  font-size: 1rem;
  line-height: 1.75;
}

.problem-text p strong { color: var(--text); }

.stuck-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 1.5rem 0 0.75rem;
}

.problem-list { list-style: none; }
.problem-list li {
  padding: 0.75rem 0;
  font-size: 0.92rem;
  color: var(--text-sub);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.problem-list li:last-child { border-bottom: none; }
.problem-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 0.5em;
  flex-shrink: 0;
}

.result-box {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.result-box-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.result-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #fef2f2;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.result-box-header span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.result-box p { font-size: 0.88rem; color: var(--text-sub); line-height: 1.7; margin-bottom: 1rem; }
.result-box p:last-child { margin-bottom: 0; }

/* ── PAIN POINTS ── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.pain-card {
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.pain-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow); }

.pain-x { font-size: 1.4rem; margin-bottom: 0.9rem; }
.pain-card h3 { font-size: 0.95rem; }
.pain-card p { color: var(--muted); font-size: 0.85rem; line-height: 1.65; }

/* ── SOLUTION ── */
.solution-section { background: var(--bg-soft); }

.solution-visual {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-top: 3rem;
}

.solution-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.solution-visual-text h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.solution-visual-text p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }

/* ── HOW IT WORKS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 26px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-mid), var(--border), var(--blue-mid));
}

.step {
  padding: 0 1.25rem;
  text-align: center;
  position: relative;
}

.step-num-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}

.step h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.step p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ── BENEFITS ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.benefit-card:hover { border-color: var(--blue-mid); box-shadow: var(--shadow); }

.benefit-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--blue-mid);
}

.benefit-card h3 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.benefit-card p { color: var(--muted); font-size: 0.85rem; line-height: 1.65; }

/* ── AUDIENCE ── */
.audience-section { background: var(--bg-soft); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.audience-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.audience-card:hover { border-color: var(--blue-mid); box-shadow: var(--shadow); }
.audience-icon { font-size: 1.75rem; margin-bottom: 0.75rem; display: block; }
.audience-card p { font-size: 0.85rem; font-weight: 600; color: var(--text-sub); line-height: 1.4; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--blue);
  text-align: center;
  padding: 80px 2rem;
}

.cta-section h2 { color: white; }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }
.cta-section .btn-white {
  background: white;
  color: var(--blue);
  font-weight: 700;
}
.cta-section .btn-white:hover { background: var(--blue-light); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.cta-section .cta-email { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-top: 1.25rem; display: block; }
.cta-section .cta-email a { color: white; text-decoration: none; font-weight: 500; }
.cta-section .cta-email a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.8rem; color: var(--faint); }

/* ── FORM PAGES ── */
.form-page {
  min-height: calc(100vh - 68px);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}

.form-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2.75rem;
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow-lg);
}

.form-card h2 { font-size: 1.65rem; margin-bottom: 0.35rem; }
.form-sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 2rem; }

.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-sub);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border-strong);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  resize: vertical;
  appearance: auto;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24,71,237,0.1);
}

.field input::placeholder, .field textarea::placeholder { color: var(--faint); }

.form-card .btn { width: 100%; justify-content: center; padding: 0.8rem 1.5rem; border-radius: 9px; font-size: 0.95rem; margin-top: 0.25rem; }

.form-footer { margin-top: 1.4rem; text-align: center; font-size: 0.82rem; color: var(--faint); }
.form-footer a { color: var(--blue); text-decoration: none; font-weight: 500; }
.form-footer a:hover { text-decoration: underline; }

.divider-or {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0;
  color: var(--faint);
  font-size: 0.78rem;
  font-weight: 500;
}
.divider-or::before, .divider-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.btn-google {
  width: 100%;
  justify-content: center;
  background: var(--bg);
  color: var(--text);
  border: 1.5px solid var(--border-strong);
  gap: 0.65rem;
  padding: 0.75rem;
  border-radius: 9px;
  font-size: 0.88rem;
}
.btn-google:hover { background: var(--bg-soft); border-color: var(--border-strong); }

/* ── DEMO PAGE ── */
.demo-page {
  min-height: calc(100vh - 68px);
  background: var(--bg-soft);
  padding: 4rem 2rem;
}

.demo-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.demo-value h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.demo-value p { color: var(--muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 2.25rem; }

.demo-check-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.demo-check-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-light);
  border: 1px solid #a7f3d0;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  color: var(--green);
  font-weight: 800;
  margin-top: 0.1rem;
}
.check-text strong { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.15rem; color: var(--text); }
.check-text span { font-size: 0.82rem; color: var(--muted); }

.demo-contact {
  margin-top: 2.25rem;
  padding: 1.25rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
}
.demo-contact p { font-size: 0.78rem; font-weight: 600; color: var(--faint); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.35rem; }
.demo-contact a { color: var(--blue); text-decoration: none; font-weight: 600; font-size: 0.95rem; }

/* ── 404 ── */
.not-found {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-soft);
}

.not-found-inner { max-width: 520px; }

.not-found-code {
  font-size: clamp(6rem, 18vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--blue);
  margin-bottom: 1rem;
  opacity: 0.15;
}

.not-found h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.not-found p { color: var(--muted); margin-bottom: 2.5rem; font-size: 1rem; line-height: 1.7; }
.not-found-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.not-found-help { margin-top: 2rem; font-size: 0.82rem; color: var(--faint); }
.not-found-help a { color: var(--blue); text-decoration: none; }

/* ── MISC ── */
.divider { height: 1px; background: var(--border); }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--bg-soft); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover { box-shadow: var(--shadow); border-color: var(--blue-mid); }

.quote-mark {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--blue-mid);
  font-family: Georgia, serif;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.72;
  font-style: italic;
  flex: 1;
}

.testimonial-attribution {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.testimonial-attribution strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.15rem;
}
.testimonial-attribution span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── SECURITY ── */
.security-section { background: var(--bg); }

.security-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.security-text { flex: 1; }
.security-text h2 { margin-bottom: 0.75rem; }
.security-text p { color: var(--muted); font-size: 1rem; line-height: 1.75; }

.security-badges {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.badge {
  width: 90px; height: 90px;
  border-radius: 14px;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
}
.badge-icon { font-size: 1.6rem; }
.badge-label { font-size: 0.6rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.3; }

/* ── FEATURE PILLARS ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.pillar-card {
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.pillar-card:hover { border-color: var(--blue-mid); box-shadow: var(--shadow); }
.pillar-icon { font-size: 1.5rem; margin-bottom: 0.9rem; display: block; }
.pillar-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.pillar-card p { color: var(--muted); font-size: 0.85rem; line-height: 1.65; }

/* ── PROCESS ── */
.process-section { background: var(--bg-soft); }

.process-header { margin-bottom: 3.5rem; }
.process-header h2 { margin-bottom: 0.35rem; }
.process-header .process-tagline {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 400;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 25px;
  left: calc(16.67% + 12px);
  right: calc(16.67% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-mid), var(--border), var(--blue-mid));
}

.process-step {
  padding: 0 2rem;
  text-align: center;
}

.process-step-circle {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--blue);
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  letter-spacing: 0.02em;
}

.process-step h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.process-step p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .steps::before { display: none; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .demo-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .security-inner { flex-direction: column; gap: 2.5rem; }
}

@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  header { padding: 0 1.25rem; }
  .nav-link { display: none; }
  section { padding: 64px 1.25rem; }
  .form-card { padding: 2rem 1.5rem; }
  .trust-inner { gap: 1.25rem; }
}
