:root {
  --primary: #1f4fff;
  --primary-light: #5f82ff;
  --primary-soft: #e8eeff;
  --accent: #c8ff3a;
  --accent-soft: #f3ffd1;
  --bg: #fafafa;
  --panel: #ffffff;
  --text: #111111;
  --muted: #4a4a4a;
  --border: #d8d8d8;
  --danger: #b42318;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(140deg, #fafafa 0%, #f2f5ff 100%);
  color: var(--text);
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(17, 17, 17, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.site-header .container {
  max-width: 1100px;
  margin: 0 auto;
}

.brand {
  color: var(--primary);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.5px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  height: 40px;
  width: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-mark {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-note {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.top-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 0.5rem 0.9rem;
  row-gap: 0.5rem;
}

.top-nav a {
  color: #2f2f2f;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  font-size: 0.94rem;
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease, transform 200ms ease;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav-toggle-checkbox {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.top-nav a:hover {
  color: var(--primary);
  background: rgba(31, 79, 255, 0.08);
}

.top-nav a.is-active {
  color: #fafafa;
  background: var(--primary);
  border-color: #1536cc;
}

.top-nav .nav-cta {
  background: linear-gradient(135deg, #c8ff3a, #ddff7b);
  color: #111111;
  border-color: rgba(17, 17, 17, 0.2);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.14);
}

.top-nav .nav-cta:hover {
  color: #111111;
  background: linear-gradient(135deg, #b8ee2c, #d1ff58);
  transform: translateY(-1px);
}

.top-nav .nav-cta.is-active {
  color: #111111;
  background: linear-gradient(135deg, #b8ee2c, #d1ff58);
  border-color: rgba(17, 17, 17, 0.28);
}

.container {
  max-width: 880px;
  margin: 3rem auto;
  padding: 1.5rem;
}

header h1 {
  margin: 0 0 0.6rem;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--primary);
}

header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
}

header p {
  margin: 0.2rem 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.status {
  margin: 1rem 0;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  background: var(--primary-soft);
  color: #1536cc;
  font-weight: 500;
  border-left: 4px solid var(--primary);
}

.status.error {
  background: #fde8e5;
  color: #c54a3d;
  border-left-color: var(--danger);
}

.progress-wrap {
  width: 100%;
  height: 8px;
  background: #e2e7ff;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.progress-bar {
  width: 14%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 220ms ease;
}

.wizard-step,
.card {
  display: none;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 16px rgba(17, 17, 17, 0.05);
  transition: box-shadow 200ms ease;
}

.wizard-step:hover,
.card:hover {
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.08);
}

.wizard-step.active,
.report .card {
  display: block;
}

.show-card {
  display: block;
}

.hero.card {
  background: linear-gradient(135deg, rgba(31, 79, 255, 0.05) 0%, rgba(200, 255, 58, 0.1) 100%);
  border: 2px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

label {
  display: block;
  margin: 1rem 0 0.5rem;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

input,
select,
textarea,
button {
  width: 100%;
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 0.98rem;
  font-family: inherit;
  transition: all 200ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31, 79, 255, 0.12);
}

.validation-error {
  display: none;
  color: var(--danger);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.validation-error.show {
  display: block;
}

button {
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--primary), #3f67ff);
  color: #fafafa;
  border: none;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(31, 79, 255, 0.28);
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(31, 79, 255, 0.34);
}

.row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  align-items: center;
}

.row button {
  width: auto;
  margin-top: 0;
  white-space: nowrap;
}

.checkbox-grid {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.checkbox-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem;
  transition: all 200ms ease;
  cursor: pointer;
}

.checkbox-item:hover {
  background: rgba(31, 79, 255, 0.04);
  border-color: var(--primary-light);
}

.checkbox-item input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  cursor: pointer;
  accent-color: var(--primary);
}

.hint {
  color: var(--muted);
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

pre {
  background: #f7f9ff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: #2d2d2d;
  font-size: 0.9rem;
  line-height: 1.6;
}

.back-link {
  color: #0c63a6;
  text-decoration: none;
}

.cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-link {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--primary), #3f67ff);
  color: #fafafa;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 200ms ease;
  box-shadow: 0 6px 14px rgba(31, 79, 255, 0.25);
}

.btn-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(31, 79, 255, 0.32);
}

.btn-link.btn-secondary {
  background: var(--primary-soft);
  color: #1536cc;
  border: 2px solid #3f67ff;
  box-shadow: none;
}

.btn-link.btn-secondary:hover {
  background: #d7e2ff;
  transform: translateY(-2px);
}

.cta-box {
  margin-top: 1rem;
  padding: 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(31, 79, 255, 0.22);
  background: linear-gradient(135deg, rgba(31, 79, 255, 0.08) 0%, rgba(200, 255, 58, 0.14) 100%);
}

.cta-box .cta-row,
.cta-box .btn-link {
  margin-top: 0;
}

.cta-box .micro-note {
  margin: 0.55rem 0 0;
}

.simple-list {
  margin: 0.8rem 0 0;
  padding-left: 1.5rem;
}

.simple-list li {
  margin: 0.6rem 0;
  color: #3a3a3a;
  line-height: 1.7;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.admin-table th,
.admin-table td {
  border: 1px solid var(--border);
  padding: 0.6rem;
  text-align: left;
  vertical-align: top;
  font-size: 0.9rem;
}

.admin-table th {
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
}

.auth-card {
  max-width: 560px;
  margin: 0 auto;
}

.stack-form {
  display: grid;
  gap: 0.25rem;
}

.checkbox-grid .checkbox-item {
  cursor: pointer;
}

.checkbox-grid .checkbox-item input {
  flex: 0 0 auto;
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-grid .card {
  position: relative;
  overflow: hidden;
}

.pricing-grid .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.price {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0.5rem 0 0.3rem;
  color: var(--primary);
}

.stack-form {
  display: grid;
  gap: 0.15rem;
}

.wizard-nav-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
}

.wizard-nav-row .btn-link,
.wizard-nav-row button {
  flex: 1;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}

.wizard-nav-row button {
  flex: 2;
  margin-top: 0;
}

.wizard-nav-row .btn-link {
  line-height: 1;
}

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 1.25rem;
  background:
    radial-gradient(circle at top left, rgba(200, 255, 58, 0.2), transparent 28%),
    linear-gradient(180deg, #fafafa 0%, #f2f5ff 100%);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 0.8fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.footer-brand,
.footer-column {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 79, 255, 0.16);
  border-radius: 18px;
  padding: 1rem 1.15rem;
}

.footer-kicker {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
}

.footer-column h2 {
  margin: 0 0 0.8rem;
  color: var(--text);
  font-size: 1rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  max-width: none;
  margin: 0;
  padding: 0;
}

.footer-inner a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 200ms ease;
}

.footer-inner a:hover {
  color: var(--primary);
}

.footer-nav-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.footer-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.92rem;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 200ms ease;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-nav span {
  color: #7a7a7a;
  font-weight: 600;
}

.footer-meta {
  max-width: 1100px;
  margin: 1rem auto 0;
  padding: 1rem 1.25rem 0;
  border-top: 1px solid #e8e3dc;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-meta p {
  margin: 0.2rem 0;
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-item h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.7rem;
}

.report {
  background: var(--panel);
}

.report header {
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
  margin-bottom: 1.5rem;
}

header.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 16px rgba(17, 17, 17, 0.05);
}

.cta-card {
  background: linear-gradient(135deg, rgba(31, 79, 255, 0.08) 0%, rgba(200, 255, 58, 0.18) 100%);
  border: 2px solid var(--accent);
  position: relative;
}

.cta-card h2 {
  color: var(--primary);
  margin-top: 0;
}

.cta-card .btn-link {
  margin-top: 0.75rem;
}

.highlight-section {
  background: linear-gradient(135deg, rgba(31, 79, 255, 0.06) 0%, rgba(200, 255, 58, 0.12) 100%);
  border: 2px solid var(--primary-light);
  position: relative;
}

.highlight-section h2 {
  color: var(--primary);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.comparison-table thead {
  background: rgba(31, 79, 255, 0.08);
  border-bottom: 2px solid var(--primary);
}

.comparison-table th {
  padding: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-align: left;
  font-size: 0.95rem;
}

.comparison-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.6;
}

.comparison-table tbody tr:hover {
  background: rgba(31, 79, 255, 0.03);
}

.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background: linear-gradient(135deg, var(--primary), #3f67ff);
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 16px rgba(31, 79, 255, 0.24);
  z-index: 100;
}

.sticky-mobile-cta a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: block;
  text-align: center;
  padding: 0.75rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(31, 79, 255, 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-split {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(200, 255, 58, 0.28), transparent 38%),
    radial-gradient(circle at bottom left, rgba(31, 79, 255, 0.22), transparent 42%),
    radial-gradient(circle at 35% 15%, rgba(95, 130, 255, 0.16), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f3f6ff 100%);
  border: 1px solid rgba(31, 79, 255, 0.2);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
}

.hero-split::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.32) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.32) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.32;
  pointer-events: none;
}

.hero-grid,
.split-grid,
.feature-grid,
.audience-grid,
.stats-grid,
.method-grid,
.pricing-detail-grid,
.faq-grid {
  display: grid;
  gap: 1.25rem;
}

.hero-grid,
.split-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.9fr);
  position: relative;
  z-index: 1;
}

.about-portrait {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.12);
}

.hero-copy h1,
.page-lead h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.03;
  margin: 0.9rem 0 1rem;
  color: var(--text);
}

.hero-copy p,
.page-lead p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
}

.hero-proof,
.info-panel,
.quote-panel,
.accent-panel,
.method-card,
.audience-card,
.feature-card,
.stat-card,
.faq-item,
.price-band,
.journey-step {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 79, 255, 0.14);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
}

.hero-proof {
  display: grid;
  gap: 1rem;
  align-self: stretch;
}

.hero-proof h2,
.info-panel h2,
.quote-panel h2,
.accent-panel h2,
.method-card h3,
.audience-card h3,
.feature-card h3,
.stat-card h3,
.faq-item h2,
.price-band h3,
.journey-step h3 {
  margin-top: 0;
  color: var(--text);
}

.hero-checklist,
.pill-list,
.mini-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-checklist li,
.pill-list li,
.mini-list li,
.check-list li {
  position: relative;
  padding-left: 1.4rem;
  margin: 0.65rem 0;
  color: var(--muted);
}

.hero-checklist li::before,
.pill-list li::before,
.mini-list li::before,
.check-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.cta-row.compact {
  margin-top: 1.3rem;
}

.micro-note,
.section-kicker,
.muted-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-heading {
  margin-bottom: 1.2rem;
}

.section-heading h2 {
  margin: 0.25rem 0 0.6rem;
  color: var(--text);
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.feature-grid,
.audience-grid,
.stats-grid,
.method-grid,
.pricing-detail-grid,
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-offers-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card strong,
.price-highlight {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.band-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.band-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 0.95rem;
  background: rgba(31, 79, 255, 0.12);
  color: var(--text);
  border-radius: 14px;
  font-weight: 600;
}

.accent-band {
  background: linear-gradient(135deg, #111111, #1f4fff);
  color: #fafafa;
  border: none;
}

.accent-band h2,
.accent-band h3,
.accent-band p,
.accent-band li,
.accent-band .section-kicker,
.accent-band .muted-note,
.accent-band .micro-note,
.accent-band .price-highlight,
.accent-band strong {
  color: inherit;
}

.contrast-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contrast-card {
  border-radius: 18px;
  padding: 1.25rem;
  border: 1px solid rgba(31, 79, 255, 0.16);
}

.contrast-card.is-old {
  background: #f5f6fb;
}

.contrast-card.is-new {
  background: #f5f6fb;
}

.accent-band .contrast-card h3 {
  color: var(--text);
}

.accent-band .contrast-card li {
  color: var(--muted);
}

.accent-band .stat-card h3,
.accent-band .stat-card p,
.accent-band .stat-card strong {
  color: var(--text);
}

.accent-band .method-card h3,
.accent-band .method-card p {
  color: var(--text);
}

.price-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 246, 255, 0.92));
}

.price-band::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.pricing-detail-grid .price-band:nth-child(2) {
  background: linear-gradient(180deg, rgba(252, 255, 241, 0.98), rgba(243, 255, 209, 0.92));
}

.pricing-detail-grid .price-band:nth-child(2)::before {
  background: linear-gradient(90deg, #8ba90f, #c8ff3a);
}

.pricing-detail-grid .price-band:nth-child(3) {
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.98), rgba(224, 236, 255, 0.92));
}

.pricing-detail-grid .price-band:nth-child(3)::before {
  background: linear-gradient(90deg, #1f4fff, #5f82ff);
}

.price-band .price-highlight {
  margin-top: 0.6rem;
}

.journey-step span,
.method-card span {
  display: inline-flex;
  width: 2.1rem;
  height: 2.1rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(31, 79, 255, 0.14);
  color: #1f4fff;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.page-lead {
  text-align: left;
}

.page-lead .eyebrow {
  margin-bottom: 0.8rem;
}

.faq-item p,
.faq-item ul,
.info-panel p,
.quote-panel p,
.accent-panel p,
.feature-card p,
.audience-card p,
.method-card p,
.price-band p,
.journey-step p {
  color: var(--muted);
}

.quote-panel {
  background: linear-gradient(135deg, rgba(31, 79, 255, 0.09), rgba(255, 255, 255, 0.94));
}

.reassurance-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.reassurance-bar span {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 79, 255, 0.18);
  color: var(--muted);
  font-size: 0.9rem;
}

.marketing-table {
  width: 100%;
  border-collapse: collapse;
}

.marketing-table th,
.marketing-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(31, 79, 255, 0.16);
  vertical-align: top;
}

.marketing-table th {
  color: var(--text);
  font-size: 0.92rem;
}

.marketing-table td strong {
  color: var(--text);
}

.form-shell,
.legal-stack {
  display: grid;
  gap: 1.25rem;
}

.form-shell {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.8fr);
}

.contact-form-card,
.auth-hero-card,
.legal-block {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(31, 79, 255, 0.16);
  border-radius: 18px;
  padding: 1.3rem;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
}

.legal-block h2 {
  margin-top: 0;
  color: var(--text);
}

.legal-block p,
.legal-block li,
.contact-form-card p,
.auth-hero-card p {
  color: var(--muted);
}

.auth-shell {
  max-width: 980px;
}

.auth-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.9fr);
}

.auth-card {
  max-width: none;
}

.field-note {
  color: #6c7571;
  font-size: 0.88rem;
  margin-top: 0.35rem;
}

.contact-form-card button,
.auth-card button {
  margin-top: 1.1rem;
}

.legal-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-search-form {
  display: grid;
  gap: 0.65rem;
}

.blog-search-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.blog-search-row button {
  margin-top: 0;
  width: auto;
  white-space: nowrap;
  padding-left: 1.1rem;
  padding-right: 1.1rem;
}

.blog-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-post-card h2 {
  margin-top: 0;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.blog-post-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.9rem;
  border: 1px solid var(--border);
}

.blog-post-featured {
  height: auto;
  max-height: 420px;
}

.blog-card-cta {
  margin-top: 0.85rem;
}

.blog-card-cta .btn-link {
  width: 100%;
}

.blog-pagination {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  min-width: 2.2rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--muted);
  background: #fff;
  font-weight: 600;
}

.blog-pagination .is-active {
  border-color: var(--primary);
  color: #fafafa;
  background: var(--primary);
}

.blog-back-link-wrap {
  margin-bottom: 0.75rem;
}

.blog-article-card {
  padding-top: 1rem;
}

.blog-post-content {
  color: var(--muted);
  line-height: 1.75;
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
  color: var(--text);
  margin-top: 1.15em;
  margin-bottom: 0.55em;
}

.blog-post-content p,
.blog-post-content li,
.blog-post-content blockquote {
  color: var(--muted);
}

.blog-post-content a {
  color: var(--primary);
}

.blog-post-content blockquote {
  margin: 1rem 0;
  padding: 0.75rem 0.95rem;
  border-left: 4px solid var(--primary);
  background: #f7f9ff;
  border-radius: 0 10px 10px 0;
}

@media (max-width: 768px) {
  .accent-band {
    background: linear-gradient(150deg, #1a1a1a 0%, #2348db 100%);
  }

  .sticky-mobile-cta {
    display: block;
  }

  body {
    padding-bottom: 60px;
  }
  .container {
    padding: 1rem;
    margin: 1.5rem auto;
  }

  .hero-grid,
  .split-grid,
  .feature-grid,
  .audience-grid,
  .stats-grid,
  .method-grid,
  .pricing-detail-grid,
  .faq-grid,
  .blog-grid,
  .contrast-grid,
  .form-shell,
  .auth-grid,
  .legal-stack {
    grid-template-columns: 1fr;
  }

  .blog-search-row {
    grid-template-columns: 1fr;
  }

  header h1 {
    font-size: 1.8rem;
  }

  .nav-toggle {
    display: block;
  }

  .top-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 10px rgba(17, 17, 17, 0.1);
  }

  .top-nav a {
    width: 100%;
    text-align: left;
  }

  .nav-toggle-checkbox:checked + .nav-toggle + .top-nav {
    display: flex;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.6rem 0.7rem;
    font-size: 0.85rem;
  }

  .comparison-table th {
    font-size: 0.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .footer-nav {
    font-size: 0.86rem;
    gap: 0.35rem;
  }
}
