:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --surface-accent: #eef7ff;
  --text: #172033;
  --muted: #4b5d79;
  --border: #dfe7f3;
  --border-strong: #cdd9ea;
  --primary: #2f6df6;
  --primary-deep: #1f56ca;
  --teal: #1ea8a1;
  --green: #29b374;
  --lavender: #826af9;
  --warning: #f7a64b;
  --shadow-sm: 0 12px 30px rgba(26, 47, 94, 0.07);
  --shadow-md: 0 22px 60px rgba(26, 47, 94, 0.12);
  --shadow-lg: 0 28px 90px rgba(26, 47, 94, 0.16);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: 1180px;
  --section-space: 96px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(130, 106, 249, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(47, 109, 246, 0.08), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
  line-height: 1.76;
  text-rendering: optimizeLegibility;
}

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

img {
  max-width: 100%;
}

.container-soft {
  max-width: var(--container);
}

.section-space {
  padding: var(--section-space) 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.72);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(47, 109, 246, 0.09);
  color: var(--primary-deep);
  font-weight: 600;
  font-size: 0.92rem;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--primary));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 3rem;
}

.section-heading h2,
.page-hero h1,
.hero-copy h1 {
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 3vw, 3.05rem);
  margin: 1rem 0 1rem;
}

.section-heading p,
.hero-copy p,
.page-hero p {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 64ch;
  line-height: 1.8;
}

.btn {
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  font-weight: 700;
  border-width: 1px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #578cff);
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(47, 109, 246, 0.2);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  box-shadow: 0 16px 28px rgba(47, 109, 246, 0.25);
  transform: translateY(-1px);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: rgba(47, 109, 246, 0.18);
  background: rgba(255, 255, 255, 0.7);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: var(--primary-deep);
  border-color: rgba(47, 109, 246, 0.32);
  background: rgba(47, 109, 246, 0.06);
  transform: translateY(-1px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  padding: 1rem 0;
  transition: 0.25s ease;
}

.site-header.is-scrolled {
  padding: 0.6rem 0;
  background: rgba(251, 253, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(205, 217, 234, 0.7);
}

.navbar-shell {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(223, 231, 243, 0.8);
  box-shadow: var(--shadow-sm);
  border-radius: 999px;
  padding: 0.58rem 0.9rem;
}

.navbar-brand {
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  color: var(--text);
}

.brand-logo {
  display: block;
  width: auto;
  height: 36px;
  max-height: 36px;
  object-fit: contain;
}

.brand-text {
  line-height: 1;
}

.nav-link {
  color: var(--muted);
  font-weight: 600;
  padding: 0.72rem 0.95rem !important;
  border-radius: 999px;
  position: relative;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(47, 109, 246, 0.06);
}

.nav-link.active {
  color: var(--text);
  background: rgba(47, 109, 246, 0.08);
}

.hero {
  padding: 3.3rem 0 5.4rem;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 5vw, 4.8rem);
  margin: 1rem 0 1.4rem;
  max-width: 12ch;
}

.hero-copy .lead {
  max-width: 59ch;
  font-size: 1.12rem;
  line-height: 1.86;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2.15rem 0 2.6rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-note strong {
  color: var(--text);
}

.stat-card,
.feature-card,
.info-card,
.step-card,
.preview-card,
.contact-card,
.pricing-card,
.included-card,
.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.stat-card {
  padding: 1.2rem 1.15rem;
  background: linear-gradient(180deg, #ffffff, #f9fbff);
}

.stat-card strong {
  display: block;
  font-size: 1.06rem;
  margin-bottom: 0.35rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.dashboard-preview {
  position: relative;
  padding: 1.15rem;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 255, 0.95));
  border: 1px solid rgba(223, 231, 243, 0.9);
  box-shadow: var(--shadow-lg);
}

.dashboard-preview::before,
.dashboard-preview::after {
  content: "";
  position: absolute;
  border-radius: 24px;
  z-index: -1;
}

.dashboard-preview::before {
  inset: auto -18px -18px 42px;
  background: linear-gradient(135deg, rgba(47, 109, 246, 0.08), rgba(130, 106, 249, 0.12));
}

.dashboard-preview::after {
  width: 150px;
  height: 150px;
  top: -22px;
  right: -18px;
  background: radial-gradient(circle, rgba(41, 179, 116, 0.18), rgba(41, 179, 116, 0));
}

.preview-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.window-topbar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #fbfdff, #f4f8ff);
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8e3f5;
}

.window-grid {
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.window-grid + .window-grid {
  padding-top: 0;
}

.mini-panel {
  padding: 1.05rem;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.mini-panel h3,
.preview-card h3,
.feature-card h3,
.info-card h3,
.contact-card h3,
.legal-card h3,
.step-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
}

.score-ring {
  width: 112px;
  height: 112px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--green) 0 67%, #deebfa 67% 100%);
}

.score-ring span {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 700;
}

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

.summary-chip {
  padding: 0.75rem 0.8rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(223, 231, 243, 0.9);
}

.summary-chip strong,
.metric-chip strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.summary-chip span,
.metric-chip span {
  color: var(--muted);
  font-size: 0.86rem;
}

.mini-list,
.keyword-list,
.timeline-list,
.check-list {
  display: grid;
  gap: 0.75rem;
}

.mini-row,
.keyword-item,
.timeline-item,
.check-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mini-row strong,
.keyword-item strong {
  font-size: 0.96rem;
}

.timeline-item strong,
.check-list strong {
  font-size: 0.98rem;
}

.mini-row span,
.keyword-item span,
.timeline-item span,
.feature-card p,
.info-card p,
.step-card p,
.preview-card p,
.contact-card p,
.legal-card p {
  color: var(--muted);
  line-height: 1.72;
}

.progress-line {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: #dfe9f7;
  overflow: hidden;
}

.progress-line::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--progress, 60%);
  background: linear-gradient(90deg, var(--primary), var(--teal));
  border-radius: inherit;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.metric-chip {
  padding: 0.95rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(223, 231, 243, 0.9);
}

.value-strip {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(223, 231, 243, 0.8);
  box-shadow: var(--shadow-sm);
}

.value-pill {
  display: flex;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid var(--border);
  height: 100%;
}

.info-icon,
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--primary-deep);
  background: linear-gradient(135deg, rgba(47, 109, 246, 0.12), rgba(30, 168, 161, 0.14));
}

.value-pill strong {
  display: block;
}

.value-pill span {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.62;
}

.info-card,
.feature-card,
.step-card,
.preview-card,
.contact-card,
.pricing-card,
.legal-card {
  padding: 1.7rem;
  height: 100%;
}

.feature-card p,
.info-card p,
.step-card p {
  font-size: 0.98rem;
}

.feature-card:hover,
.info-card:hover,
.preview-card:hover,
.contact-card:hover,
.pricing-card:hover {
  transform: translateY(-3px);
  transition: transform 0.2s ease;
}

.feature-card ul,
.check-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-card li,
.check-list li {
  padding-top: 0.72rem;
  border-top: 1px solid rgba(223, 231, 243, 0.9);
  font-size: 0.95rem;
}

.feature-card li:first-child,
.check-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.step-number {
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(41, 179, 116, 0.12), rgba(47, 109, 246, 0.12));
}

.preview-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
}

.preview-stack {
  display: grid;
  gap: 1.1rem;
}

.preview-frame {
  padding: 1.3rem;
  border-radius: 24px;
  border: 1px solid rgba(223, 231, 243, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.94));
  box-shadow: var(--shadow-sm);
}

.preview-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.1rem;
}

.preview-topline p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.7;
}

.data-table {
  display: grid;
  gap: 0.8rem;
}

.data-row {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr 0.7fr;
  gap: 0.8rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(223, 231, 243, 0.95);
}

.data-row span {
  color: var(--muted);
  font-size: 0.95rem;
}

.status-pill {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.status-pill.good {
  background: rgba(41, 179, 116, 0.12);
  color: #167250;
}

.status-pill.mid {
  background: rgba(247, 166, 75, 0.16);
  color: #b16a17;
}

.status-pill.watch {
  background: rgba(47, 109, 246, 0.1);
  color: var(--primary-deep);
}

.grid-heatmap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.55rem;
  margin-top: 1rem;
}

.heat-cell {
  aspect-ratio: 1;
  border-radius: 12px;
  background: #e7eef8;
}

.heat-cell.hot {
  background: rgba(41, 179, 116, 0.9);
}

.heat-cell.warm {
  background: rgba(247, 166, 75, 0.88);
}

.heat-cell.cool {
  background: rgba(47, 109, 246, 0.2);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(47, 109, 246, 0.08);
  color: var(--primary-deep);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}

.comparison-section {
  position: relative;
}

.comparison-shell {
  padding: clamp(1.3rem, 2vw, 1.6rem);
  border-radius: 30px;
  border: 1px solid rgba(223, 231, 243, 0.92);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.94));
  box-shadow: var(--shadow-md);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.35rem;
  align-items: start;
}

.scan-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.scan-card {
  padding: 1.15rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(223, 231, 243, 0.95);
  box-shadow: var(--shadow-sm);
}

.scan-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.scan-label {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.scan-label.before {
  background: rgba(247, 166, 75, 0.14);
  color: #9b631d;
}

.scan-label.after {
  background: rgba(41, 179, 116, 0.14);
  color: #1b7a57;
}

.scan-subtitle {
  color: var(--muted);
  font-size: 0.92rem;
}

.scan-map {
  position: relative;
  padding: 0.95rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
  border: 1px solid rgba(223, 231, 243, 0.9);
}

.scan-map::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  background:
    linear-gradient(rgba(216, 226, 242, 0.85) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 226, 242, 0.85) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.7;
}

.scan-cells {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.45rem;
}

.scan-cell {
  aspect-ratio: 1;
  border-radius: 11px;
  background: #dde8f8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.scan-cell.low {
  background: rgba(47, 109, 246, 0.16);
}

.scan-cell.mid {
  background: rgba(247, 166, 75, 0.72);
}

.scan-cell.high {
  background: rgba(41, 179, 116, 0.85);
}

.scan-pin {
  position: absolute;
  z-index: 2;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  box-shadow: 0 6px 14px rgba(47, 109, 246, 0.24);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.scan-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.35rem;
}

.compare-aside {
  display: grid;
  gap: 1rem;
}

.compare-card {
  padding: 1.15rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(223, 231, 243, 0.95);
  box-shadow: var(--shadow-sm);
}

.compare-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.compare-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.compare-metric {
  padding: 0.95rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #fbfdff, #f4f8ff);
  border: 1px solid rgba(223, 231, 243, 0.92);
}

.compare-metric strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.compare-metric span {
  color: var(--muted);
  font-size: 0.9rem;
}

.workflow-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.workflow-mini-card {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(223, 231, 243, 0.95);
  box-shadow: var(--shadow-sm);
}

.workflow-mini-card h3 {
  font-size: 1rem;
  margin: 0.75rem 0 0.45rem;
}

.workflow-mini-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.pricing-card-featured {
  border-color: rgba(47, 109, 246, 0.32);
  box-shadow: var(--shadow-md);
}

.pricing-card-featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
}

.pricing-card-top h3 {
  font-size: 1.24rem;
  margin: 0 0 0.85rem;
}

.pricing-price {
  font-size: clamp(2rem, 3vw, 2.55rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text);
}

.pricing-price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.pricing-subprice,
.pricing-small-note,
.pricing-note,
.included-note {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.pricing-note {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(47, 109, 246, 0.06);
  border: 1px solid rgba(47, 109, 246, 0.12);
}

.pricing-card p {
  color: var(--muted);
  line-height: 1.72;
  margin: 0;
}

.pricing-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  min-height: 2.1rem;
}

.included-card {
  margin-top: 1.5rem;
  padding: 1.7rem;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.included-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.included-header h3 {
  margin: 0;
  font-size: 1.35rem;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.included-grid span {
  position: relative;
  padding: 0.8rem 0.95rem 0.8rem 2.05rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(223, 231, 243, 0.9);
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.5;
}

.included-grid span::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 1.18rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--primary));
}

.pricing-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
  border: 1px solid rgba(205, 217, 234, 0.9);
  box-shadow: var(--shadow-sm);
}

.pricing-teaser-panel {
  display: grid;
  gap: 0.8rem;
  padding: 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(223, 231, 243, 0.9);
}

.teaser-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  border: 1px solid transparent;
}

.teaser-price-row.is-highlighted {
  background: rgba(47, 109, 246, 0.07);
  border-color: rgba(47, 109, 246, 0.14);
}

.teaser-price-row span,
.teaser-price-row small {
  color: var(--muted);
}

.teaser-price-row strong {
  white-space: nowrap;
}

/* Pricing page */
.pricing-hero {
  padding: 3.6rem 0 2.2rem;
}

.pricing-hero-card {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.2rem);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(47, 109, 246, 0.11), rgba(30, 168, 161, 0.07) 36%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, #ffffff, #f4f8ff);
  border: 1px solid rgba(205, 217, 234, 0.95);
  box-shadow: var(--shadow-lg);
}

.pricing-hero-card::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 109, 246, 0.15), rgba(47, 109, 246, 0));
  pointer-events: none;
}

.pricing-hero-card h1 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 1rem 0 1rem;
  font-size: clamp(2.55rem, 4.6vw, 4.55rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.pricing-hero-card p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.78;
}

.trust-badge-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.1rem;
}

.trust-badge-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(205, 217, 234, 0.9);
  box-shadow: 0 10px 26px rgba(26, 47, 94, 0.06);
  color: var(--text);
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.pricing-stage {
  position: relative;
}

.pricing-switch-shell {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.15rem, 3vw, 1.6rem);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 249, 255, 0.92));
  border: 1px solid rgba(205, 217, 234, 0.88);
  box-shadow: var(--shadow-md);
}

.pricing-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pricing-section-header h2 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
}

.pricing-switch {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 560px);
  padding: 0.42rem;
  border-radius: 22px;
  background: #eef5ff;
  border: 1px solid rgba(205, 217, 234, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 18px 42px rgba(26, 47, 94, 0.08);
}

.pricing-switch-option {
  position: relative;
  z-index: 2;
  min-height: 52px;
  border: 0;
  border-radius: 17px;
  padding: 0.85rem 1rem;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0;
  transition: color 0.22s ease, transform 0.22s ease;
}

.pricing-switch-option:hover {
  color: var(--text);
}

.pricing-switch-option.is-active {
  color: #fff;
}

.pricing-switch-indicator {
  position: absolute;
  z-index: 1;
  top: 0.42rem;
  bottom: 0.42rem;
  left: 0.42rem;
  width: calc((100% - 0.84rem) / 3);
  border-radius: 17px;
  background: linear-gradient(135deg, var(--primary), #5d91ff);
  box-shadow: 0 14px 28px rgba(47, 109, 246, 0.28);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pricing-layout {
  display: block;
  min-width: 0;
}

.pricing-main-card,
.program-scope-card,
.timeline-card,
.scope-note-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.pricing-main-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 0;
  padding: clamp(1.7rem, 4vw, 2.8rem);
  overflow: visible;
  background:
    radial-gradient(circle at top right, rgba(47, 109, 246, 0.1), transparent 36%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-main-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  opacity: 0.22;
}

.pricing-main-card.is-recommended {
  border-color: rgba(47, 109, 246, 0.35);
  box-shadow: var(--shadow-lg);
}

.pricing-main-card.is-recommended::before {
  opacity: 1;
}

.pricing-card-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.pricing-card-header h2 {
  margin: 0.95rem 0 0;
  max-width: 620px;
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
  font-weight: 850;
  line-height: 1.08;
}

.pricing-badges {
  min-height: 2.1rem;
}

.pricing-display {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding-top: 0.3rem;
  min-width: 0;
}

.pricing-display strong {
  max-width: 100%;
  font-size: clamp(3rem, 6.4vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.pricing-display span {
  color: var(--muted);
  font-size: 1.16rem;
  font-weight: 800;
}

.pricing-main-card .pricing-subprice {
  width: fit-content;
  padding: 0.58rem 0.85rem;
  border-radius: 999px;
  background: rgba(41, 179, 116, 0.1);
  color: #18744d;
  font-weight: 800;
}

.pricing-main-card p,
.program-scope-card p,
.timeline-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.75;
}

.pricing-main-card .pricing-note {
  position: relative;
  z-index: 1;
  max-width: 680px;
  background: rgba(47, 109, 246, 0.07);
}

.pricing-main-card .btn {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: auto;
  padding-inline: 1.9rem;
}

.program-scope-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem 1.5rem;
  align-items: start;
  margin-top: 1.2rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  background:
    linear-gradient(180deg, #ffffff, #f7fbff);
}

.program-scope-card h2 {
  grid-column: 1;
  margin: 0.9rem 0 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.18;
}

.program-scope-card > .tag {
  grid-column: 1;
}

.program-scope-card p {
  grid-column: 2;
  margin: 0;
}

.scope-mini-list {
  display: grid;
  gap: 0.72rem;
  grid-column: 2;
  padding-top: 0;
}

.scope-mini-list span {
  position: relative;
  padding: 0.75rem 0.9rem 0.75rem 2.3rem;
  border-radius: var(--radius-sm);
  background: rgba(47, 109, 246, 0.055);
  border: 1px solid rgba(47, 109, 246, 0.1);
  font-weight: 700;
}

.scope-mini-list span::before {
  content: "✓";
  position: absolute;
  left: 0.9rem;
  top: 0.72rem;
  color: var(--teal);
  font-weight: 900;
}

.feature-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.feature-grid-premium span {
  position: relative;
  min-height: 92px;
  padding: 1.05rem 1.05rem 1.05rem 3rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(223, 231, 243, 0.94);
  box-shadow: 0 14px 34px rgba(26, 47, 94, 0.06);
  line-height: 1.55;
  font-weight: 650;
}

.feature-grid-premium span::before {
  content: "✓";
  position: absolute;
  left: 1.05rem;
  top: 1.05rem;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(41, 179, 116, 0.12);
  color: var(--teal);
  font-weight: 900;
}

.timeline-card {
  position: relative;
  height: 100%;
  padding: 1.6rem;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.timeline-card::after {
  content: "";
  position: absolute;
  inset: auto 1.4rem 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, rgba(47, 109, 246, 0.35), rgba(30, 168, 161, 0.2));
}

.timeline-card span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(47, 109, 246, 0.12), rgba(30, 168, 161, 0.12));
  color: var(--primary-deep);
  font-weight: 850;
}

.timeline-card h3 {
  margin: 1rem 0 0.45rem;
  font-size: 1.2rem;
  font-weight: 800;
}

.scope-note-card {
  margin-top: 1.25rem;
  padding: 1.2rem 1.3rem;
  color: var(--muted);
  line-height: 1.7;
  background: rgba(255, 255, 255, 0.82);
  border-style: dashed;
}

.pricing-final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(47, 109, 246, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(30, 168, 161, 0.11), transparent 28%),
    linear-gradient(180deg, #ffffff, #f3f8ff);
}

.cta-box {
  padding: clamp(2rem, 5vw, 3.4rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(130, 106, 249, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff, #f3f8ff);
  border: 1px solid rgba(205, 217, 234, 0.9);
  box-shadow: var(--shadow-md);
}

.cta-box p {
  line-height: 1.8;
}

.footer {
  padding: 3rem 0 1.4rem;
  background: rgba(248, 251, 255, 0.92);
  border-top: 1px solid rgba(223, 231, 243, 0.9);
}

.footer-brand {
  max-width: 390px;
}

.footer .navbar-brand {
  font-size: 1.3rem;
  align-items: center;
}

.footer .brand-logo {
  height: 42px;
  max-height: 42px;
}

.footer-brand p,
.footer-links a,
.footer-meta,
.footer-disclaimer {
  color: var(--muted);
}

.footer-brand p {
  font-size: 0.98rem;
  line-height: 1.72;
}

.footer-links strong {
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-links {
  display: grid;
  gap: 0.72rem;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-links a {
  font-size: 0.96rem;
}

.footer-meta {
  font-size: 0.97rem;
  line-height: 1.7;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(223, 231, 243, 0.8);
  align-items: center;
}

.footer-disclaimer {
  font-size: 0.96rem;
  max-width: 720px;
  line-height: 1.7;
}

.page-hero {
  padding: 3.2rem 0 2.3rem;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 1rem 0 1.15rem;
}

.page-card {
  padding: 2.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.page-card.compact-card {
  padding: 1.6rem;
}

.legal-card h2,
.legal-card h3 {
  font-size: 1.16rem;
  margin-bottom: 0.85rem;
}

.legal-card + .legal-card {
  margin-top: 1rem;
}

.legal-card p {
  max-width: 78ch;
}

.contact-grid {
  align-items: start;
}

.contact-info-grid {
  margin-bottom: 2rem;
}

.contact-anchor-card {
  position: sticky;
  top: 112px;
}

.contact-aside-stack {
  display: grid;
  gap: 1rem;
}

.note-card {
  padding: 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(223, 231, 243, 0.95);
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.faq-shell {
  padding: 1.1rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 248, 255, 0.9));
  border: 1px solid rgba(223, 231, 243, 0.9);
  box-shadow: var(--shadow-sm);
}

.support-cta {
  margin-top: 1.8rem;
  padding: 1.5rem 1.6rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 255, 0.95));
  border: 1px solid rgba(223, 231, 243, 0.95);
  box-shadow: var(--shadow-sm);
}

.support-cta p {
  margin-bottom: 0;
}

.contact-form .form-control,
.contact-form .form-select {
  border-radius: 16px;
  border-color: var(--border-strong);
  padding: 0.95rem 1rem;
  min-height: 56px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(47, 109, 246, 0.12);
  border-color: rgba(47, 109, 246, 0.35);
}

.form-status {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.form-status-success {
  color: #155724;
  background: #e8f6ed;
  border: 1px solid rgba(21, 87, 36, 0.18);
}

.form-status-error {
  color: #842029;
  background: #f8d7da;
  border: 1px solid rgba(132, 32, 41, 0.18);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: 18px !important;
  overflow: hidden;
  margin-bottom: 0.85rem;
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  font-weight: 600;
  color: var(--text);
  background: #fff;
  padding: 1.2rem 1.25rem;
}

.accordion-button:not(.collapsed) {
  background: rgba(47, 109, 246, 0.05);
  color: var(--text);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.muted-note {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.accordion-body,
.preview-card p,
.compare-card p,
.compare-metric span,
.workflow-mini-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.72;
}

@media (max-width: 991.98px) {
  :root {
    --section-space: 78px;
  }

  .navbar-shell {
    border-radius: 26px;
  }

  .brand-logo {
    height: 32px;
    max-height: 32px;
  }

  .hero {
    padding-top: 2rem;
  }

  .section-heading {
    margin-bottom: 2.35rem;
  }

  .section-heading p,
  .page-hero p,
  .hero-copy p,
  .accordion-body,
  .preview-card p,
  .compare-card p,
  .compare-metric span,
  .workflow-mini-card p,
  .pricing-card p,
  .included-note,
  .contact-card p,
  .muted-note {
    font-size: 1rem;
    line-height: 1.74;
  }

  .tag,
  .eyebrow {
    font-size: 0.9rem;
  }

  .hero-metrics,
  .window-grid,
  .preview-showcase,
  .panel-summary,
  .metric-strip,
  .comparison-grid,
  .workflow-mini-grid,
  .included-grid,
  .pricing-teaser,
  .pricing-layout,
  .trust-badge-grid,
  .feature-grid-premium {
    grid-template-columns: 1fr;
  }

  .scan-compare,
  .compare-metrics {
    grid-template-columns: 1fr;
  }

  .site-header .navbar-collapse {
    padding-top: 1rem;
  }

  .site-header .navbar-nav {
    padding: 0.6rem 0 0.8rem;
  }

  .site-header .btn {
    width: 100%;
  }

  .pricing-section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .program-scope-card {
    grid-template-columns: 1fr;
  }

  .program-scope-card > .tag,
  .program-scope-card h2,
  .program-scope-card p,
  .scope-mini-list {
    grid-column: auto;
  }

  .pricing-main-card .btn {
    width: 100%;
  }

  .contact-anchor-card {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .navbar-brand {
    gap: 0.55rem;
    font-size: 1.1rem;
  }

  .brand-logo {
    height: 30px;
    max-height: 30px;
  }

  .footer .brand-logo {
    height: 36px;
    max-height: 36px;
  }

  .hero {
    padding: 2.4rem 0 4rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 8vw, 3.4rem);
    max-width: 13ch;
  }

  .hero-copy .lead {
    font-size: 1.02rem;
    line-height: 1.78;
  }

  .hero-note {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .section-space {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }

  .hero-actions {
    flex-direction: column;
    margin: 1.7rem 0 2rem;
    gap: 0.8rem;
  }

  .btn {
    width: 100%;
  }

  .value-strip {
    padding: 0.9rem;
  }

  .hero-copy h1,
  .section-heading h2,
  .page-hero h1 {
    letter-spacing: -0.035em;
  }

  .hero-note {
    margin-top: 1rem;
  }

  .page-card,
  .cta-box,
  .pricing-hero-card {
    padding: 1.5rem;
  }

  .info-card,
  .feature-card,
  .step-card,
  .preview-card,
  .contact-card,
  .pricing-card,
  .included-card,
  .legal-card {
    padding: 1.35rem;
  }

  .included-header {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .preview-frame,
  .comparison-shell {
    padding: 1rem;
  }

  .accordion-button {
    font-size: 1rem;
    line-height: 1.5;
  }

  .pricing-hero-card h1 {
    letter-spacing: -0.035em;
  }

  .pricing-display {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .pricing-display strong {
    font-size: clamp(2.75rem, 13vw, 4.1rem);
  }

  .pricing-switch-option {
    padding: 0.78rem 0.4rem;
    font-size: 0.95rem;
  }

  .pricing-switch {
    border-radius: 18px;
  }

  .pricing-switch-indicator,
  .pricing-switch-option {
    border-radius: 14px;
  }

  .trust-badge-grid span {
    width: 100%;
  }

  .feature-grid-premium span {
    min-height: auto;
  }

  .workflow-mini-grid {
    gap: 0.8rem;
  }

  .cta-box {
    padding: 1.6rem 1.2rem;
  }

  .footer {
    padding: 2.4rem 0 1.2rem;
  }

  .footer-brand p,
  .footer-links a,
  .footer-meta,
  .footer-disclaimer {
    font-size: 0.97rem;
    line-height: 1.7;
  }

  .footer-bottom {
    align-items: flex-start;
    gap: 0.8rem;
  }

  .data-row {
    grid-template-columns: 1fr;
  }
}
