:root {
  --blue: #1e5eff;
  --blue-dark: #0f172a;
  --white: #ffffff;
  --soft: #f8fafc;
  --line: #e2e8f0;
  --muted: #64748b;
  --text: #111827;
  --green: #13b981;
  --amber: #f59e0b;
  --radius: 8px;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(30, 94, 255, 0.08), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 52%, #ffffff 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(30, 94, 255, 0.35);
  outline-offset: 3px;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  min-height: 72px;
  margin: 0 auto;
  padding: 0.7rem 0.15rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.72);
  background: rgba(248, 250, 252, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(30, 94, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(30, 94, 255, 0.16);
}

.brand-mark span {
  position: absolute;
  width: 16px;
  height: 6px;
  border-radius: 999px;
  background: var(--blue);
}

.brand-mark span:first-child {
  transform: translateY(-4px);
}

.brand-mark span:last-child {
  width: 10px;
  transform: translate(3px, 5px);
  background: var(--blue-dark);
}

.site-nav {
  display: none;
}

.site-nav a,
.site-footer nav a {
  color: #475569;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-footer nav a:hover {
  color: var(--blue);
}

.header-cta {
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--blue-dark);
  transition: transform 180ms ease;
}

.nav-open .nav-toggle span:nth-child(2) {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  gap: 2.4rem;
  align-items: center;
  min-height: calc(100svh - 72px);
  padding: 3.6rem 0 4rem;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(19, 185, 129, 0.12);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 780px;
  margin-top: 1rem;
  color: var(--blue-dark);
  font-size: clamp(2.55rem, 8vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 650px;
  margin-top: 1.25rem;
  color: #475569;
  font-size: clamp(1.02rem, 2.4vw, 1.22rem);
  line-height: 1.72;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(30, 94, 255, 0.28);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue-dark);
}

.trust-row span {
  color: #475569;
  font-size: 0.86rem;
  font-weight: 700;
}

.dashboard-wrap {
  position: relative;
}

.dashboard-glow {
  position: absolute;
  inset: 7% 0 auto;
  height: 72%;
  background: linear-gradient(135deg, rgba(30, 94, 255, 0.22), rgba(19, 185, 129, 0.12));
  filter: blur(44px);
}

.dashboard-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--green), #94a3b8);
}

.dashboard-top,
.score-grid,
.module-list {
  padding: 1.1rem;
}

.dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.dashboard-kicker,
.dashboard-top small,
.risk-item span,
.score-panel span,
.module-row small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.dashboard-top strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--blue-dark);
  font-size: 1.1rem;
}

.status-pill {
  flex: 0 0 auto;
  padding: 0.45rem 0.62rem;
  border: 1px solid rgba(19, 185, 129, 0.2);
  border-radius: 999px;
  background: rgba(19, 185, 129, 0.1);
  color: #047857;
  font-size: 0.72rem;
  font-weight: 800;
}

.score-grid {
  display: grid;
  gap: 1rem;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.score-panel,
.risk-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.score-panel {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  padding: 1.1rem;
}

.score-ring {
  display: grid;
  width: 128px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(closest-side, #ffffff 72%, transparent 73%),
    conic-gradient(var(--blue) calc(var(--score) * 1%), #e2e8f0 0);
}

.score-ring strong {
  color: var(--blue-dark);
  font-size: 1.55rem;
}

.score-panel small {
  color: #047857;
  font-weight: 800;
}

.risk-panel {
  display: grid;
  gap: 0.75rem;
  padding: 0.8rem;
}

.risk-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem;
  border-radius: var(--radius);
  background: var(--soft);
}

.risk-item strong {
  color: var(--blue-dark);
  font-size: 1.35rem;
}

.module-list {
  display: grid;
  gap: 0.75rem;
}

.module-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.module-row strong {
  display: block;
  color: var(--blue-dark);
  font-size: 0.9rem;
}

.module-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  background: var(--blue);
}

.module-icon.amber {
  background: var(--amber);
}

.module-icon.green {
  background: var(--green);
}

.progress {
  font-size: 0.82rem;
  font-weight: 800;
}

.progress.good {
  color: #047857;
}

.progress.warn {
  color: #b45309;
}

section:not(.hero) {
  padding: 4.8rem 0;
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.pricing-strip h2,
.final-cta h2 {
  color: var(--blue-dark);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.stats-grid,
.feature-grid,
.area-grid,
.sector-grid,
.benefit-grid {
  display: grid;
  gap: 1rem;
}

.stat-card,
.feature-card,
.area-card,
.sector-card,
.benefit-panel,
.pricing-strip,
.final-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.06);
}

.stat-card {
  padding: 1.35rem;
}

.stat-card strong {
  display: block;
  margin-top: 1.3rem;
  color: var(--blue-dark);
  font-size: 2.25rem;
}

.stat-card p,
.feature-card p,
.timeline-step p,
.final-cta p {
  color: #475569;
  line-height: 1.65;
}

.icon-data,
.icon-alert,
.icon-flow,
.feature-icon {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(30, 94, 255, 0.1);
}

.icon-data::before,
.icon-alert::before,
.icon-flow::before,
.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.icon-data::before {
  width: 22px;
  height: 22px;
  border: 3px solid var(--blue);
  border-top-color: transparent;
}

.icon-alert::before {
  width: 22px;
  height: 22px;
  border: 3px solid var(--amber);
}

.icon-alert::after {
  width: 4px;
  height: 10px;
  background: var(--amber);
}

.icon-flow::before {
  width: 25px;
  height: 14px;
  border: 3px solid var(--green);
}

.feature-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.25rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.feature-card:hover,
.sector-card:hover,
.area-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 94, 255, 0.3);
  box-shadow: 0 20px 50px rgba(30, 94, 255, 0.12);
}

.feature-card h3,
.timeline-step h3 {
  color: var(--blue-dark);
  font-size: 1.08rem;
}

.feature-icon::before {
  width: 20px;
  height: 20px;
  border: 3px solid var(--blue);
}

.icon-scan::after {
  width: 28px;
  height: 3px;
  background: var(--blue);
  transform: rotate(-18deg);
}

.icon-docs::before {
  border-radius: 5px;
}

.icon-docs::after {
  width: 14px;
  height: 3px;
  background: var(--blue);
  box-shadow: 0 6px 0 var(--blue);
}

.icon-dashboard::before {
  border-radius: 5px;
}

.icon-dashboard::after {
  width: 5px;
  height: 18px;
  background: var(--blue);
  box-shadow: 8px 5px 0 var(--blue), 16px -3px 0 var(--blue);
}

.icon-bell::before {
  border-radius: 9px 9px 5px 5px;
}

.icon-loop::before {
  border-top-color: transparent;
}

.icon-support::before {
  border-radius: 8px;
}

.icon-support::after {
  width: 12px;
  height: 4px;
  background: var(--blue);
}

.area-grid,
.sector-grid {
  grid-template-columns: repeat(2, 1fr);
}

.area-card,
.sector-card {
  min-height: 86px;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: var(--blue-dark);
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--line);
}

.timeline-step {
  position: relative;
  display: grid;
  gap: 0.55rem;
  padding: 1rem 1rem 1rem 3.7rem;
}

.timeline-step span {
  position: absolute;
  left: 0;
  top: 1rem;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(30, 94, 255, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(30, 94, 255, 0.12);
}

.benefit-panel {
  display: grid;
  gap: 2rem;
  padding: 1.25rem;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.88)),
    #0f172a;
}

.benefit-panel .section-heading {
  margin-bottom: 0;
}

.benefit-panel h2 {
  color: #ffffff;
}

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

.benefit-grid div {
  min-height: 112px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.benefit-grid strong {
  display: block;
  color: #ffffff;
  font-size: clamp(1.9rem, 8vw, 3.2rem);
  line-height: 1;
}

.benefit-grid span {
  display: block;
  margin-top: 0.6rem;
  color: #cbd5e1;
  font-weight: 700;
}

.pricing-strip,
.final-cta {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
}

.pricing-strip {
  background: rgba(248, 250, 252, 0.9);
}

.pricing-strip h2 {
  margin-top: 0.65rem;
  font-size: clamp(1.6rem, 4vw, 2.45rem);
}

.final-cta {
  margin-bottom: 4rem;
  background:
    linear-gradient(135deg, rgba(30, 94, 255, 0.95), rgba(15, 23, 42, 0.98)),
    var(--blue);
  color: #ffffff;
}

.final-cta .section-label,
.final-cta h2,
.final-cta p {
  color: #ffffff;
}

.final-cta p {
  max-width: 660px;
  margin-top: 0.85rem;
  opacity: 0.88;
}

.final-cta .btn-primary {
  background: #ffffff;
  color: var(--blue);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.site-footer {
  display: grid;
  gap: 1.4rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

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

@media (max-width: 767px) {
  .site-nav {
    position: fixed;
    inset: 72px 1rem auto;
    display: grid;
    gap: 0.2rem;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem;
    border-radius: var(--radius);
  }

  .site-nav a:hover {
    background: var(--soft);
  }
}

@media (min-width: 640px) {
  .score-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

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

  .pricing-strip,
  .final-cta {
    grid-template-columns: 1fr auto;
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.7rem 0.95rem;
    border-radius: var(--radius);
    background: var(--blue-dark);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 800;
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    padding-top: 2.4rem;
  }

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

  .area-grid,
  .sector-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .timeline::before {
    left: 5%;
    right: 5%;
    top: 22px;
    bottom: auto;
    width: auto;
    height: 2px;
  }

  .timeline-step {
    padding: 4.2rem 1rem 1rem 0;
  }

  .timeline-step span {
    top: 0;
  }

  .benefit-panel {
    grid-template-columns: 0.9fr 1.1fr;
    padding: 2rem;
  }

  .benefit-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1040px) {
  section:not(.hero) {
    padding: 6.3rem 0;
  }

  .dashboard-top,
  .score-grid,
  .module-list {
    padding: 1.3rem;
  }
}

/* Premium evolution layer */
body {
  background:
    radial-gradient(circle at 18% 4%, rgba(30, 94, 255, 0.12), transparent 30rem),
    radial-gradient(circle at 84% 22%, rgba(19, 185, 129, 0.08), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 46%, #ffffff 100%);
}

.hero {
  position: relative;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(30, 94, 255, 0.08), transparent 42%),
    radial-gradient(circle at 72% 30%, rgba(30, 94, 255, 0.14), transparent 24rem);
  mask-image: linear-gradient(#000, transparent 78%);
}

.hero > * {
  position: relative;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.45rem, 7vw, 4.85rem);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #1451e8);
  box-shadow: 0 16px 34px rgba(30, 94, 255, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(30, 94, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.dashboard-glow {
  inset: 5% 0 auto;
  height: 84%;
  background:
    radial-gradient(circle at 22% 18%, rgba(30, 94, 255, 0.32), transparent 16rem),
    radial-gradient(circle at 82% 72%, rgba(19, 185, 129, 0.22), transparent 14rem);
  filter: blur(42px);
}

.dashboard-card {
  border-color: rgba(191, 205, 226, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.9)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.16);
}

.dashboard-nav {
  display: flex;
  gap: 0.35rem;
  padding: 0.85rem 1.1rem 0;
}

.dashboard-nav span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #cbd5e1;
}

.dashboard-nav span:first-child {
  background: var(--blue);
}

.dashboard-nav span:nth-child(2) {
  background: var(--green);
}

.status-pill.live {
  position: relative;
  padding-left: 1.6rem;
}

.status-pill.live::before {
  content: "";
  position: absolute;
  left: 0.65rem;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  transform: translateY(-50%);
  box-shadow: 0 0 0 6px rgba(19, 185, 129, 0.12);
}

.risk-item,
.feature-card,
.stat-card,
.area-card,
.sector-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.84)),
    #ffffff;
}

.module-row {
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.035);
}

.trend-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1rem;
  margin: 0 1.1rem 0.8rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(30, 94, 255, 0.08), rgba(19, 185, 129, 0.08)),
    #ffffff;
}

.trend-copy span,
.task-strip span,
.task-strip small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.trend-copy strong,
.task-strip strong {
  display: block;
  margin-top: 0.32rem;
  color: var(--blue-dark);
  font-size: 0.9rem;
}

.trend-bars {
  display: flex;
  align-items: end;
  gap: 0.35rem;
  height: 54px;
}

.trend-bars span {
  width: 10px;
  height: var(--h);
  border-radius: 999px 999px 3px 3px;
  background: linear-gradient(180deg, var(--blue), rgba(30, 94, 255, 0.28));
  animation: barLift 1.2s ease both;
}

.task-strip {
  margin: 0 1.1rem 1.1rem;
  padding: 1rem;
  border: 1px solid rgba(30, 94, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(30, 94, 255, 0.06);
}

.task-strip small {
  margin-top: 0.35rem;
}

.trust-section,
.impact-card,
.lead-magnet,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.06);
}

.trust-section {
  display: grid;
  gap: 1.2rem;
  padding: 1.35rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.88)),
    #ffffff;
  backdrop-filter: blur(18px);
}

.trust-section h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.08;
}

.logo-cloud,
.impact-grid,
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

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

.logo-cloud span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226, 232, 240, 0.78);
  border-radius: var(--radius);
  color: #64748b;
  font-weight: 900;
  filter: grayscale(1);
  background: rgba(255, 255, 255, 0.72);
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.logo-cloud span:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 94, 255, 0.2);
  color: var(--blue-dark);
}

.impact-card,
.testimonial-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.impact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), rgba(19, 185, 129, 0.8));
}

.impact-card span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.impact-card strong {
  color: var(--blue-dark);
  font-size: 1.35rem;
  line-height: 1.1;
}

.impact-card p,
.legal-note,
.lead-magnet p,
.testimonial-card p {
  color: #475569;
  line-height: 1.65;
}

.legal-note {
  max-width: 820px;
  margin: 1rem 0 0;
  font-size: 0.82rem;
}

.lead-magnet {
  display: grid;
  gap: 1.4rem;
  align-items: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 20%, rgba(30, 94, 255, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.9));
}

.lead-magnet::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -54px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(30, 94, 255, 0.14);
  border-radius: 999px;
}

.lead-magnet > * {
  position: relative;
}

.lead-magnet h2 {
  margin: 0.55rem 0 0;
  color: var(--blue-dark);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
}

.lead-magnet p {
  margin-top: 0.8rem;
  font-size: 1.05rem;
}

.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.feature-card:hover,
.sector-card:hover,
.area-card:hover,
.impact-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 94, 255, 0.3);
  box-shadow: 0 20px 50px rgba(30, 94, 255, 0.12);
}

.stars {
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 900;
}

.testimonial-card strong {
  margin-top: 0.4rem;
  color: var(--blue-dark);
}

.testimonial-card small {
  color: #64748b;
  font-weight: 700;
}

.benefit-panel {
  background:
    radial-gradient(circle at 14% 10%, rgba(30, 94, 255, 0.28), transparent 18rem),
    radial-gradient(circle at 92% 85%, rgba(19, 185, 129, 0.16), transparent 18rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9)),
    #0f172a;
}

.benefit-grid div {
  min-height: 150px;
}

.benefit-icon {
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.08);
}

.benefit-grid strong {
  font-size: clamp(1.45rem, 5vw, 3rem);
}

.pricing-strip {
  min-height: 180px;
  background:
    radial-gradient(circle at 88% 20%, rgba(30, 94, 255, 0.08), transparent 18rem),
    rgba(248, 250, 252, 0.9);
}

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18), transparent 18rem),
    radial-gradient(circle at 82% 76%, rgba(19, 185, 129, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(30, 94, 255, 0.98), rgba(15, 23, 42, 0.98)),
    var(--blue);
}

.final-cta::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.final-cta > * {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.final-cta h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.reveal {
  transition:
    opacity 650ms ease,
    transform 650ms ease,
    filter 650ms ease;
  filter: blur(5px);
}

.reveal.is-visible {
  filter: blur(0);
}

@keyframes barLift {
  from {
    transform: scaleY(0.2);
    opacity: 0.35;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media (min-width: 640px) {
  .logo-cloud {
    grid-template-columns: repeat(5, 1fr);
  }

  .impact-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lead-magnet {
    grid-template-columns: 1fr auto;
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .impact-grid,
  .testimonial-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (min-width: 1040px) {
  .dashboard-top,
  .score-grid,
  .module-list {
    padding: 1.15rem 1.3rem;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: clamp(2.35rem, 10vw, 3.2rem);
  }

  .trend-panel {
    grid-template-columns: 1fr;
  }

  .trend-bars {
    justify-content: space-between;
  }

  .final-cta,
  .pricing-strip {
    padding: 1.25rem;
  }

  .thank-you-page {
    padding-top: 92px;
  }

  .thank-you-card {
    padding: 34px 20px;
  }

  .thank-you-steps {
    grid-template-columns: 1fr;
  }
}

section:not(.hero) {
  scroll-margin-top: 92px;
}

.reveal {
  filter: none;
}

.final-cta {
  min-height: 360px;
  align-items: center;
}

.final-cta h2 {
  max-width: 760px;
}

.form-grid {
  display: grid;
  gap: 0.8rem;
}

.lead-form,
.contact-form {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
}

.lead-form label,
.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-dark);
  font: inherit;
}

.check-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: #475569;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
}

.check-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 0.1rem;
}

.check-row a {
  color: var(--blue);
  font-weight: 900;
}

.form-feedback {
  min-height: 1.2rem;
  color: #047857;
  font-size: 0.86rem;
  font-weight: 800;
}

.thank-you-page {
  padding: 118px 0 72px;
  background:
    radial-gradient(circle at 18% 18%, rgba(30, 94, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.thank-you-card {
  display: grid;
  gap: 24px;
  max-width: 980px;
  padding: 58px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.9)),
    #ffffff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.12);
}

.thank-you-card h1 {
  max-width: 780px;
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.thank-you-card p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.thank-you-steps article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.thank-you-steps strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
}

.thank-you-steps span {
  color: var(--blue-dark);
  font-weight: 900;
}

.contact-form {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.contact-form label,
.contact-form .check-row,
.contact-form .check-row a {
  color: #ffffff;
}

.contact-form input {
  color: var(--blue-dark);
}

.pricing {
  scroll-margin-top: 92px;
}

.pricing-grid {
  display: grid;
  gap: 1rem;
}

.price-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.9)),
    #ffffff;
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.06);
}

.price-card.featured {
  border-color: rgba(30, 94, 255, 0.32);
  box-shadow: 0 22px 58px rgba(30, 94, 255, 0.14);
}

.price-card span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card strong {
  color: var(--blue-dark);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.price-card small {
  color: #64748b;
  font-size: 0.95rem;
}

.price-tax-note {
  margin-top: -0.55rem;
  color: #64748b;
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 800;
}

.price-card p {
  color: #475569;
  line-height: 1.6;
}

.sector-card {
  display: grid;
  align-content: end;
  gap: 0.45rem;
}

.sector-card strong {
  color: var(--blue-dark);
}

.sector-card span {
  color: #475569;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.legal-page {
  padding: 3rem 0 5rem;
}

.legal-page section:not(.hero) {
  padding: 1.35rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--blue);
}

.legal-hero {
  display: grid;
  gap: 1rem;
  max-width: 880px;
  padding: 3rem 0 2rem;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
}

.legal-hero p,
.legal-card p,
.legal-list {
  color: #475569;
  line-height: 1.7;
}

.legal-card {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.05);
}

.legal-card h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 1.35rem;
}

.legal-data {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.legal-data div {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem;
  border-radius: var(--radius);
  background: var(--soft);
}

.legal-data dt {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-data dd {
  margin: 0;
  color: var(--blue-dark);
  font-weight: 700;
}

.legal-list {
  margin: 0;
  padding-left: 1.1rem;
}

.table-wrap {
  overflow-x: auto;
}

.cookie-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: #475569;
  font-size: 0.9rem;
}

.cookie-table th,
.cookie-table td {
  padding: 0.85rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.cookie-table th {
  color: var(--blue-dark);
  background: var(--soft);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(191, 205, 226, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(20px);
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner strong,
.cookie-panel h2 {
  color: var(--blue-dark);
}

.cookie-banner p,
.cookie-panel p {
  margin: 0.35rem 0 0;
  color: #475569;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.42);
}

.cookie-panel {
  width: min(560px, 100%);
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.22);
}

.toggle-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  color: var(--blue-dark);
  font-weight: 800;
}

.toggle-row input {
  width: 20px;
  min-height: 20px;
}

.copyright {
  margin: 0;
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .legal-data {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .cookie-banner {
    grid-template-columns: 1fr auto;
    align-items: center;
    left: 50%;
    right: auto;
    width: min(1020px, calc(100% - 2rem));
    transform: translateX(-50%);
  }

  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  }
}

.diagnostic-page {
  padding: 3rem 0 5rem;
}

.diagnostic-hero {
  display: grid;
  gap: 1.5rem;
  align-items: end;
  padding: 3rem 0 2rem;
}

.diagnostic-hero h1 {
  max-width: 880px;
  font-size: clamp(2.5rem, 7vw, 4.7rem);
}

.diagnostic-hero p,
.diagnostic-heading p,
.diagnostic-mini-card span,
.capture-panel p {
  color: #475569;
  line-height: 1.65;
}

.diagnostic-mini-card,
.diagnostic-tool,
.question-card,
.report-card,
.report-score-card,
.capture-panel,
.integration-grid article,
.area-score-row {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.06);
}

.diagnostic-mini-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
}

.diagnostic-mini-card strong {
  color: var(--blue-dark);
}

.diagnostic-tool {
  display: grid;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 10%, rgba(30, 94, 255, 0.1), transparent 22rem),
    rgba(255, 255, 255, 0.82);
}

.diagnostic-sidebar {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 250, 252, 0.92);
}

.diagnostic-sidebar ol {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.diagnostic-sidebar li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #64748b;
  font-weight: 800;
}

.diagnostic-sidebar li span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #64748b;
  font-size: 0.78rem;
}

.diagnostic-sidebar li.active,
.diagnostic-sidebar li.complete {
  color: var(--blue-dark);
}

.diagnostic-sidebar li.active span,
.diagnostic-sidebar li.complete span {
  border-color: rgba(30, 94, 255, 0.28);
  background: rgba(30, 94, 255, 0.08);
  color: var(--blue);
}

.diagnostic-workspace {
  min-width: 0;
  padding: 1rem;
}

.diagnostic-step {
  display: none;
}

.diagnostic-step.is-active {
  display: grid;
  gap: 1.2rem;
}

.diagnostic-heading {
  display: grid;
  gap: 0.65rem;
  max-width: 850px;
}

.diagnostic-heading h2 {
  color: var(--blue-dark);
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.06;
}

.diagnostic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.question-progress {
  display: grid;
  gap: 0.55rem;
  color: var(--blue-dark);
  font-weight: 800;
}

.question-progress div {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.question-progress span span,
.question-progress div span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: width 220ms ease;
}

.question-list {
  display: grid;
  gap: 0.9rem;
}

.question-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.question-card span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.question-card h3 {
  margin-top: 0.35rem;
  color: var(--blue-dark);
  font-size: 1.02rem;
  line-height: 1.35;
}

.answer-group {
  display: grid;
  gap: 0.55rem;
}

.answer-group label {
  cursor: pointer;
}

.answer-group input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.answer-group label span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.answer-group input:checked + span {
  border-color: rgba(30, 94, 255, 0.4);
  background: rgba(30, 94, 255, 0.08);
  box-shadow: 0 12px 30px rgba(30, 94, 255, 0.12);
}

.scoring-preview {
  display: grid;
  gap: 1.3rem;
  align-items: center;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 20%, rgba(30, 94, 255, 0.1), transparent 20rem),
    #ffffff;
}

.diagnostic-score-ring {
  width: 150px;
}

.diagnostic-score-ring strong::after,
.report-score-card .score-ring strong::after {
  content: "%";
}

.diagnostic-score-ring[data-tone="green"] {
  background:
    radial-gradient(closest-side, #ffffff 72%, transparent 73%),
    conic-gradient(var(--green) calc(var(--score) * 1%), #e2e8f0 0);
}

.diagnostic-score-ring[data-tone="yellow"] {
  background:
    radial-gradient(closest-side, #ffffff 72%, transparent 73%),
    conic-gradient(var(--amber) calc(var(--score) * 1%), #e2e8f0 0);
}

.diagnostic-score-ring[data-tone="red"] {
  background:
    radial-gradient(closest-side, #ffffff 72%, transparent 73%),
    conic-gradient(#ef4444 calc(var(--score) * 1%), #e2e8f0 0);
}

.score-status {
  display: inline-flex;
  margin-bottom: 0.6rem;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(30, 94, 255, 0.08);
  color: var(--blue);
  font-weight: 900;
}

.score-status[data-tone="green"],
[data-report-classification][data-tone="green"] {
  color: #047857;
}

.score-status[data-tone="yellow"],
[data-report-classification][data-tone="yellow"] {
  color: #b45309;
}

.score-status[data-tone="red"],
[data-report-classification][data-tone="red"] {
  color: #b91c1c;
}

.integration-strip {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--blue-dark);
}

.integration-strip span {
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.integration-strip strong {
  color: #ffffff;
}

.report-grid {
  display: grid;
  gap: 1rem;
}

.report-card,
.report-score-card {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
}

.report-card > span,
.report-score-card > span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.report-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.1rem;
  color: #475569;
  line-height: 1.5;
}

.area-breakdown {
  display: grid;
  gap: 0.75rem;
}

.area-score-row {
  display: grid;
  gap: 0.8rem;
  align-items: center;
  padding: 0.9rem;
}

.area-score-row strong {
  color: var(--blue-dark);
}

.area-score-row span {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 700;
}

.area-score-bar {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.area-score-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.capture-panel {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 88% 22%, rgba(30, 94, 255, 0.14), transparent 20rem),
    #ffffff;
}

.capture-panel h3 {
  color: var(--blue-dark);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
}

.integration-grid {
  display: grid;
  gap: 0.8rem;
}

.integration-grid article {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
}

.integration-grid span {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.integration-grid strong {
  color: var(--blue-dark);
}

@media print {
  .site-header,
  .site-footer,
  .diagnostic-sidebar,
  .diagnostic-actions,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
}

@media (min-width: 640px) {
  .answer-group {
    grid-template-columns: repeat(3, 1fr);
  }

  .scoring-preview,
  .capture-panel {
    grid-template-columns: auto 1fr;
  }

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

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

@media (min-width: 900px) {
  .diagnostic-hero {
    grid-template-columns: 1fr minmax(280px, 0.36fr);
  }

  .diagnostic-tool {
    grid-template-columns: 260px 1fr;
  }

  .diagnostic-sidebar {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .diagnostic-workspace {
    padding: 1.5rem;
  }

  .question-card {
    grid-template-columns: 1fr minmax(340px, 0.6fr);
    align-items: center;
  }

  .report-grid {
    grid-template-columns: 1.1fr 1fr 1fr 1fr;
  }

  .area-score-row {
    grid-template-columns: minmax(190px, 0.35fr) 1fr auto;
  }

  .integration-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
