:root {
  --bg: #f5f8ff;
  --surface: #ffffff;
  --surface-soft: #eef3ff;
  --text: #0f172a;
  --muted: #5b6478;
  --line: #dbe5f5;
  --brand: #2563eb;
  --brand-strong: #1d4ed8;
  --brand-soft: #dbeafe;
  --accent: #0ea5e9;
  --ok: #16a34a;
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
  --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 6px 16px rgba(15, 23, 42, 0.08);
  --dur-fast: 160ms;
  --dur-mid: 240ms;
  --easing: cubic-bezier(.2, .9, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: radial-gradient(900px 420px at 85% -120px, #d5e4ff 0, transparent 70%), var(--bg);
  color: var(--text);
  font-family: "IBM Plex Sans", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(37, 99, 235, 0.18);
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -50px;
  z-index: 120;
  background: #0f172a;
  color: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid #334155;
  transition: top var(--dur-fast) var(--easing);
}

.skip-link:focus {
  top: 12px;
}

.bg-orb,
.bg-grid {
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

.bg-orb {
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(36px);
  opacity: .42;
}

.orb-a {
  top: -110px;
  left: -90px;
  background: radial-gradient(circle at 30% 30%, #9dc2ff, #93c5fd 58%, transparent 75%);
}

.orb-b {
  right: -120px;
  bottom: 80px;
  background: radial-gradient(circle at 40% 35%, #bfdbfe, #a5b4fc 60%, transparent 75%);
}

.bg-grid {
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(148, 163, 184, .08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148, 163, 184, .08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 18%, transparent 82%);
  opacity: .45;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(219, 229, 245, 0.85);
  transition: box-shadow var(--dur-mid) var(--easing), border-color var(--dur-mid) var(--easing);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(186, 205, 238, .95);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.08);
}

.header-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  color: #fff;
  font-weight: 700;
  font-family: "Sora", sans-serif;
}

.brand-text {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 22px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  color: #334155;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

.site-nav a:hover {
  color: var(--brand-strong);
}

.site-nav a.is-active {
  color: var(--brand-strong);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-fast) var(--easing);
  background: linear-gradient(90deg, #60a5fa, #2563eb);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-nav-toggle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #c9daf6;
  background: #eef4ff;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-nav-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #1f3f84;
}

.mobile-nav-sheet {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 23, 42, .44);
  opacity: 0;
  transition: opacity var(--dur-mid) var(--easing);
  cursor: pointer;
}

.mobile-nav-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  min-height: 100dvh;
  width: min(360px, 92vw);
  background: #ffffff;
  border-left: 1px solid #dbe5f5;
  box-shadow: -14px 0 34px rgba(15, 23, 42, .18);
  transform: translateX(106%);
  transition: transform var(--dur-mid) var(--easing);
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-title {
  font-family: "Sora", sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.mobile-nav-close {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #d3def2;
  background: #f8fbff;
  color: #3f4d68;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav-links {
  display: grid;
  gap: 8px;
}

.mobile-nav-links a {
  min-height: 42px;
  border: 1px solid #dbe5f5;
  border-radius: 10px;
  background: #f8fbff;
  color: #1f2f4f;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.mobile-nav-links a.is-active {
  border-color: #a9c5f2;
  background: #eaf2ff;
  color: #1d4ed8;
}

.mobile-nav-cta {
  margin-top: auto;
  display: grid;
  gap: 8px;
}

body.mobile-nav-open {
  overflow: hidden;
}

body.mobile-nav-open .mobile-nav-sheet {
  pointer-events: auto;
}

body.mobile-nav-open .mobile-nav-backdrop {
  opacity: 1;
}

body.mobile-nav-open .mobile-nav-panel {
  transform: translateX(0);
}

.btn {
  height: 42px;
  border-radius: 999px;
  padding: 0 18px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: transform var(--dur-fast) var(--easing), box-shadow var(--dur-fast) var(--easing), filter var(--dur-fast) var(--easing), border-color var(--dur-fast) var(--easing), background var(--dur-fast) var(--easing);
  touch-action: manipulation;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #2e6df8 0%, #1d4ed8 100%);
  box-shadow: 0 10px 24px rgba(29, 78, 216, 0.26);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-light {
  background: #fff;
  color: #1f2a44;
  border-color: #cfe0f8;
}

.btn-soft {
  border-color: #99b9ec;
  color: #1f3975;
  background: #eef4ff;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, .2);
}

.hero-section {
  padding: 72px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy h1 {
  font-size: clamp(36px, 5.2vw, 56px);
  line-height: 1.06;
  margin-top: 10px;
  background: linear-gradient(110deg, #0f172a 0%, #1f3f84 36%, #2563eb 82%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  height: 30px;
  border-radius: 999px;
  background: #e9f0ff;
  color: #24448b;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
}

.hero-lead {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.55;
  max-width: 640px;
}

.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 8px;
}

.hero-checklist li {
  position: relative;
  padding-left: 26px;
  color: #334155;
  font-weight: 500;
}

.hero-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #22c55e, #16a34a);
  box-shadow: 0 5px 12px rgba(22, 163, 74, .22);
}

.hero-checklist li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 10px;
  font-size: 13px;
  color: #64748b;
}

.hero-metrics {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.hero-metrics div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 13px;
}

.hero-metrics strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 16px;
}

.hero-metrics span {
  display: block;
  margin-top: 4px;
  color: #54627e;
  font-size: 13px;
}

.hero-preview {
  border-radius: var(--radius-xl);
  border: 1px solid #cfe0fb;
  background: linear-gradient(180deg, #ffffff, #f1f6ff);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-height: 360px;
  position: relative;
  padding-top: 56px;
}

.hero-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.35), transparent 45%);
  pointer-events: none;
}

.preview-top {
  height: 44px;
  border-bottom: 1px solid #e4ecfb;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}

.preview-float {
  position: absolute;
  z-index: 2;
  border: 1px solid #b8cff5;
  background: rgba(255, 255, 255, .94);
  color: #1e3a8a;
  border-radius: 999px;
  height: 30px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(37, 99, 235, .12);
}

.preview-float-a {
  top: 12px;
  left: 14px;
}

.preview-float-b {
  top: 12px;
  right: 14px;
  color: #0f766e;
  border-color: #9fd8d2;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #98afd7;
}

.preview-body {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 12px;
  padding: 16px;
}

.preview-col,
.preview-main {
  border-radius: 14px;
  border: 1px solid #dbe6f8;
  background: #f8fbff;
  padding: 12px;
}

.preview-col p,
.preview-main p {
  font-size: 13px;
  color: #395287;
  font-weight: 600;
  margin-bottom: 10px;
}

.line {
  height: 14px;
  border-radius: 7px;
  background: #dbe8fd;
  margin-bottom: 8px;
}

.line.short {
  width: 66%;
}

.panel {
  border-radius: 12px;
  height: 220px;
  background: linear-gradient(135deg, #2c69f2, #1e3a8a);
}

.proof-section {
  padding: 20px 0 8px;
}

.proof-grid {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}

.proof-grid::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #22c55e, #0ea5e9);
}

.proof-grid p {
  font-weight: 600;
  color: #334155;
}

.proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.proof-chips span {
  background: #eef4ff;
  border: 1px solid #d0def5;
  color: #32508a;
  border-radius: 999px;
  height: 30px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}

.logos-section {
  padding-top: 56px;
  padding-bottom: 30px;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.logo-item {
  min-height: 64px;
  border-radius: 14px;
  border: 1px solid #d7e4fb;
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 12px;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #304c83;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
}

.integrations-section {
  position: relative;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.integration-card {
  border-radius: 16px;
  border: 1px solid #d4e3fa;
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.integration-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
}

.integration-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.integration-card p {
  line-height: 1.55;
}

.integration-tag {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #c8daf8;
  background: #eef4ff;
  color: #28509d;
  padding: 0 11px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .01em;
}

.trust-section {
  padding-top: 44px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trust-item {
  border-radius: 16px;
  border: 1px solid #d7e5fb;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
  padding: 18px;
  position: relative;
}

.trust-item::before {
  content: "";
  position: absolute;
  top: 19px;
  right: 18px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #22c55e, #16a34a);
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.16);
}

.trust-item h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.trust-item p {
  line-height: 1.55;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: #f1f5fd;
}

.section-head {
  margin-bottom: 26px;
  max-width: 760px;
}

.section-head h2 {
  margin-top: 6px;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #45609c;
  font-weight: 700;
}

.feature-grid,
.use-grid,
.pricing-grid {
  display: grid;
  gap: 14px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.use-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.results-section {
  position: relative;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.result-metric-card {
  border-radius: 16px;
  border: 1px solid #d8e5fa;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  padding: 16px;
}

.result-metric-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 28px;
  line-height: 1;
  color: #1d4ed8;
  font-variant-numeric: tabular-nums;
}

.result-metric-card span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #3f547c;
  line-height: 1.45;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.testimonial-card {
  border-radius: 16px;
  border: 1px solid #dce7fa;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
  padding: 16px;
}

.quote {
  color: #24395f;
  font-size: 15px;
  line-height: 1.55;
}

.author {
  margin-top: 11px;
  color: #4a628f;
  font-size: 13px;
  font-weight: 700;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-controls {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.billing-switch {
  background: #e9f0ff;
  border: 1px solid #cbdcf7;
  border-radius: 999px;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.billing-toggle {
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: #1f2f4f;
  font-size: 13px;
  font-weight: 700;
  padding: 0 14px;
  cursor: pointer;
  transition: background var(--dur-fast) var(--easing), color var(--dur-fast) var(--easing), box-shadow var(--dur-fast) var(--easing);
}

.billing-toggle.is-active {
  background: linear-gradient(180deg, #2d6cf8 0%, #1d4ed8 100%);
  color: #fff;
  box-shadow: 0 8px 16px rgba(29, 78, 216, .28);
}

.pricing-badge {
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid #bfe0cb;
  background: #eaf9ef;
  color: #13683f;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  padding: 0 12px;
}

.card,
.price-card {
  border-radius: var(--radius-lg);
  border: 1px solid #d8e3f7;
  background: var(--surface);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-mid) var(--easing), box-shadow var(--dur-mid) var(--easing), border-color var(--dur-mid) var(--easing);
  position: relative;
  overflow: hidden;
}

.card::before,
.price-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #60a5fa, #3b82f6, #0ea5e9);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--easing);
}

.card:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: #bfd3f6;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.15);
}

.card:hover::before,
.price-card:hover::before {
  opacity: 1;
}

.card h3,
.price-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.card p,
.price-card p {
  line-height: 1.5;
}

.price-card {
  position: relative;
}

.price-card .price {
  margin-top: 8px;
  margin-bottom: 4px;
  color: #0f172a;
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.price-value {
  line-height: 1;
}

.price-suffix {
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
}

.price-note {
  margin-bottom: 12px;
  color: #3f547c;
  font-size: 13px;
  line-height: 1.35;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.price-card li {
  color: #334155;
  font-size: 14px;
  position: relative;
  padding-left: 18px;
}

.price-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #22c55e, #16a34a);
  position: absolute;
  left: 0;
  top: 6px;
}

.price-card.featured {
  border-color: #7ca5f0;
  box-shadow: 0 16px 36px rgba(29, 78, 216, 0.18);
}

.tag {
  position: absolute;
  top: 14px;
  right: 14px;
  height: 26px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1e40af;
  font-size: 12px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 14px;
  align-items: start;
}

.faq-main {
  border-radius: 16px;
  border: 1px solid #d7e4f9;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  padding: 14px;
}

.faq-toolbar {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.faq-search-wrap {
  display: grid;
  gap: 6px;
  min-width: min(360px, 100%);
  color: #324a78;
  font-size: 12px;
  font-weight: 700;
}

.faq-search-input {
  min-height: 40px;
  border-radius: 11px;
  border: 1px solid #c7d9f7;
  background: #f8fbff;
  padding: 0 12px;
  font-size: 14px;
  color: #1f2d49;
}

.faq-search-input:focus {
  outline: none;
  border-color: #7ea8ee;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
  background: #ffffff;
}

.faq-result-pill {
  min-height: 32px;
  border-radius: 999px;
  border: 1px solid #c8daf8;
  background: #eef4ff;
  color: #23427f;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  font-size: 12px;
  font-weight: 700;
}

.faq-result-pill span {
  margin-right: 4px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid #d5e2f8;
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
  transition: border-color var(--dur-fast) var(--easing), box-shadow var(--dur-fast) var(--easing), transform var(--dur-fast) var(--easing);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: #1e293b;
  list-style: none;
  position: relative;
  padding-right: 22px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: #2d5fc7;
  font-size: 19px;
  line-height: 1;
}

.faq-list details[open] {
  border-color: #abc5f2;
  box-shadow: 0 10px 24px rgba(59, 130, 246, 0.1);
  transform: translateY(-1px);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin-top: 8px;
}

.faq-help-card {
  border-radius: 16px;
  border: 1px solid #cfe0f8;
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  padding: 16px;
}

.faq-help-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  background: #e8f0ff;
  border: 1px solid #c5d8f8;
  color: #294887;
  font-size: 12px;
  font-weight: 700;
}

.faq-help-card h3 {
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.faq-help-card p {
  margin-top: 8px;
  line-height: 1.55;
}

.faq-help-actions {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.cta-section {
  padding: 30px 0 76px;
}

.cta-box {
  border: 1px solid #b9d0f8;
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, #0f3a9f, #1756da);
  box-shadow: var(--shadow-lg);
  color: #fff;
  text-align: center;
  padding: 38px 22px;
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, .34), transparent 68%);
  right: -100px;
  top: -110px;
}

.cta-box p {
  color: #dbe8ff;
  margin-top: 8px;
}

.cta-box .hero-actions {
  justify-content: center;
}

.contact-strip-section {
  padding-top: 0;
  padding-bottom: 70px;
}

.contact-strip {
  border: 1px solid #d4e3fa;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-item {
  border: 1px solid #dce8fb;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 14px;
}

.contact-item h3 {
  font-size: 18px;
  margin-bottom: 7px;
}

.contact-item p {
  color: #3f547c;
  line-height: 1.5;
}

.contact-item a {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  border: 1px solid #c7daf8;
  background: #eef4ff;
  color: #1e3a8a;
  padding: 0 11px;
  font-size: 13px;
  font-weight: 700;
}

.contact-item a:hover {
  border-color: #9ab8eb;
  background: #e4eeff;
}

.site-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding-top: 46px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
}

.footer-grid h3,
.footer-grid h4 {
  margin-bottom: 10px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-bottom: 8px;
  color: #cbd5e1;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 18px;
  border-top: 1px solid #22304d;
  padding: 16px 0 26px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #9bbcf2;
  background: linear-gradient(180deg, #2f6ef8 0%, #1d4ed8 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(29, 78, 216, .28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--dur-fast) var(--easing), transform var(--dur-fast) var(--easing);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

main,
.site-header {
  position: relative;
  z-index: 1;
}

.reveal-item {
  opacity: 0;
  transform: translateY(26px) scale(.985);
  transition: opacity .62s var(--easing), transform .62s var(--easing);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1100px) {
  .wrap {
    width: min(980px, calc(100% - 28px));
  }

  .site-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .pricing-controls {
    align-items: flex-start;
  }

  .section-head {
    max-width: 100%;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .contact-strip {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100%, calc(100% - 20px));
  }

  .header-row {
    min-height: 64px;
    gap: 12px;
  }

  .site-header {
    padding-top: env(safe-area-inset-top, 0px);
  }

  .brand-text {
    font-size: 20px;
  }

  .hero-section {
    padding: 44px 0 30px;
  }

  .hero-copy h1 {
    font-size: 30px;
    line-height: 1.1;
  }

  .hero-lead {
    font-size: 16px;
    margin-top: 12px;
  }

  .hero-actions {
    margin-top: 18px;
    gap: 8px;
  }

  .hero-actions .btn {
    min-height: 44px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .hero-metrics div {
    padding: 10px 11px;
  }

  .pricing-badge {
    font-size: 11px;
    padding: 0 10px;
  }

  .logo-strip {
    grid-template-columns: 1fr;
  }

  .preview-body {
    grid-template-columns: 1fr;
  }

  .preview-float-b {
    display: none;
  }

  .proof-grid {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
  }

  .feature-grid,
  .use-grid {
    grid-template-columns: 1fr;
  }

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

  .card,
  .price-card,
  .integration-card,
  .trust-item,
  .result-metric-card,
  .testimonial-card {
    padding: 14px;
    border-radius: 14px;
  }

  .section-head h2 {
    font-size: clamp(24px, 8vw, 30px);
  }

  .pricing-controls {
    gap: 8px;
  }

  .billing-switch {
    width: 100%;
    justify-content: space-between;
  }

  .billing-toggle {
    flex: 1;
    justify-content: center;
  }

  .faq-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-search-wrap {
    min-width: 0;
  }

  .faq-search-input {
    min-height: 44px;
    font-size: 16px;
  }

  .section {
    padding: 48px 0;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .back-to-top {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .hero-checklist li {
    font-size: 14px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 44px;
  }

  .mobile-nav-toggle,
  .mobile-nav-close {
    width: 44px;
    height: 44px;
  }

  .mobile-nav-links a {
    min-height: 44px;
  }

  .site-nav a,
  .mobile-nav-links a {
    -webkit-tap-highlight-color: rgba(37, 99, 235, 0.14);
  }
}

@media (max-width: 480px) {
  .wrap {
    width: calc(100% - 16px);
  }

  .header-row {
    min-height: 60px;
    gap: 8px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .brand-text {
    font-size: 18px;
  }

  .hero-copy h1 {
    font-size: 27px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .mobile-nav-panel {
    width: min(340px, 94vw);
    padding: 14px 12px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }
}
