:root {
  --bg: #f6f7fb;
  --bg-soft: #ffffff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #101935;
  --muted: #667085;
  --line: rgba(16, 25, 53, 0.08);
  --shadow: 0 28px 70px rgba(14, 22, 45, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 32px));
  --accent: #f33a3d;
  --accent-strong: #d62127;
  --accent-soft: rgba(243, 58, 61, 0.12);
  --accent-gradient: linear-gradient(135deg, #ff4f4f 0%, #e11e2c 100%);
  --dark: #0b1532;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(243, 58, 61, 0.1), transparent 24%),
    radial-gradient(circle at top right, rgba(89, 105, 255, 0.08), transparent 28%),
    var(--bg);
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 14%, var(--accent-soft) 0%, transparent 20%),
    radial-gradient(circle at 88% 10%, rgba(96, 114, 255, 0.08) 0%, transparent 18%);
  opacity: 0.9;
}

body.theme-violet {
  --accent: #6d4df5;
  --accent-strong: #5535de;
  --accent-soft: rgba(109, 77, 245, 0.12);
  --accent-gradient: linear-gradient(135deg, #7f62ff 0%, #5d39ea 100%);
}

body.theme-blue {
  --accent: #2764ff;
  --accent-strong: #104cdc;
  --accent-soft: rgba(39, 100, 255, 0.12);
  --accent-gradient: linear-gradient(135deg, #2a7cff 0%, #0b4fe0 100%);
}

body.theme-green {
  --accent: #12b76a;
  --accent-strong: #039855;
  --accent-soft: rgba(18, 183, 106, 0.12);
  --accent-gradient: linear-gradient(135deg, #1fc77c 0%, #06945a 100%);
}

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

img {
  display: block;
  max-width: 100%;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
  backdrop-filter: blur(18px);
  background: rgba(246, 247, 251, 0.84);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(16, 25, 53, 0.06);
  background: rgba(246, 247, 251, 0.94);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo {
  flex: 0 0 auto;
  width: 240px;
}

.site-nav-wrap {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav > a,
.nav-products__toggle {
  color: #1c2442;
  opacity: 0.88;
}

.site-nav > a:hover,
.nav-products__toggle:hover {
  color: var(--accent);
}

.nav-products__button {
  cursor: pointer;
}

.nav-products__button .nav-caret {
  margin-left: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-products {
  position: relative;
}

.nav-products__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.products-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  min-width: 320px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.products-panel--actions {
  left: auto;
  right: 0;
  min-width: 300px;
}

.nav-products:hover .products-panel,
.nav-products.is-open .products-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.products-panel__item {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
}

.products-panel__item strong {
  display: block;
  font-size: 15px;
}

.products-panel__item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.products-panel__item:hover {
  background: var(--accent-soft);
}

.nav-products--actions:hover .products-panel--actions,
.nav-products--actions.is-open .products-panel--actions {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--accent-gradient);
  box-shadow: 0 18px 30px rgba(16, 25, 53, 0.14);
}

.btn-secondary,
.btn-ghost,
.btn-outline-light {
  border-color: rgba(16, 25, 53, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  padding: 48px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  padding: 24px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-center {
  justify-content: center;
}

.hero-title,
.section-head h2,
.cta-banner h2,
.compare-column h3,
.not-found-card h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.96;
}

.hero-title span {
  color: var(--accent);
}

.hero-title--module {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

.hero-lead {
  margin: 22px 0 0;
  max-width: 580px;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--accent);
}

.hero-text,
.section-head p,
.cta-banner p,
.module-card p,
.feature-card p,
.soft-card p,
.compare-column li,
.reason-card p,
.about-strip p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 580px;
  margin: 22px 0 0;
  font-size: 1rem;
}

.module-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.module-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(16, 25, 53, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(16, 25, 53, 0.06);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-stats,
.hero-inline-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.stat-pill,
.hero-inline-points span {
  min-width: 150px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(16, 25, 53, 0.08);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 40px rgba(16, 25, 53, 0.06);
}

.stat-pill strong,
.hero-inline-points span {
  display: block;
  font-weight: 800;
}

.stat-pill span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.hero-inline-points span {
  min-width: auto;
  color: var(--text);
  font-size: 14px;
}

.dashboard-frame {
  position: relative;
  padding: 22px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.55)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.16));
  box-shadow: var(--shadow);
}

.dashboard-frame::before {
  content: "";
  position: absolute;
  inset: -14px 28px auto auto;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 72%);
  pointer-events: none;
}

.dashboard-shot {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8faff 0%, #edf2ff 100%);
}

.dashboard-shot img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.dashboard-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 39, 0.06) 0%, rgba(11, 18, 39, 0.36) 100%);
  pointer-events: none;
}

.dashboard-shot__overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 6px;
  max-width: 360px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: rgba(11, 18, 39, 0.54);
  backdrop-filter: blur(10px);
  color: #fff;
  box-shadow: 0 20px 44px rgba(16, 25, 53, 0.24);
}

.dashboard-shot__eyebrow {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-shot__overlay strong {
  display: block;
  font-size: 1.25rem;
}

.dashboard-shot__overlay span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 104px 1fr;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px 16px;
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(180deg, #0e1837 0%, #121d43 100%);
}

.dashboard-brand {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.dashboard-sidebar nav {
  display: grid;
  gap: 10px;
}

.dashboard-sidebar nav span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.72;
}

.dashboard-sidebar nav span.is-active {
  background: rgba(255, 255, 255, 0.12);
  opacity: 1;
}

.dashboard-main {
  padding: 24px;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.dashboard-topbar strong {
  display: block;
  font-size: 1.3rem;
}

.dashboard-topbar span {
  color: var(--muted);
  font-size: 14px;
}

.dashboard-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 800;
}

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

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

.metric-card,
.panel-card,
.module-card,
.feature-card,
.soft-card,
.reason-card,
.compare-card,
.not-found-card {
  border: 1px solid rgba(16, 25, 53, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 48px rgba(16, 25, 53, 0.08);
}

.metric-card {
  padding: 16px;
  border-radius: 20px;
}

.metric-card span,
.panel-card__title {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.metric-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.75rem;
  line-height: 1;
}

.metric-card small {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.panel-card {
  padding: 18px;
  border-radius: 22px;
}

.activity-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.activity-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}

.activity-list li span::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.activity-list small {
  color: var(--muted);
}

.chart-card {
  height: 100%;
  min-height: 180px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(39, 100, 255, 0.03), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(to right, rgba(16, 25, 53, 0.05) 0, rgba(16, 25, 53, 0.05) 1px, transparent 1px, transparent 52px),
    repeating-linear-gradient(to bottom, rgba(16, 25, 53, 0.05) 0, rgba(16, 25, 53, 0.05) 1px, transparent 1px, transparent 44px),
    #fbfcff;
}

.chart-line {
  height: 120px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(39, 100, 255, 0.16), transparent 72%),
    linear-gradient(135deg, transparent 0 10%, var(--accent) 10% 13%, transparent 13% 22%, var(--accent) 22% 25%, transparent 25% 34%, var(--accent) 34% 38%, transparent 38% 47%, var(--accent) 47% 51%, transparent 51% 62%, var(--accent) 62% 66%, transparent 66%);
}

.chart-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.section {
  padding: 44px 0;
}

.section-compact {
  padding-top: 22px;
}

.section-dark {
  margin-top: 28px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #08112a 0%, #0e1b42 100%);
  color: #fff;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-head--light p,
.section-head--light h2 {
  color: #fff;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-head p {
  margin: 14px 0 0;
}

.module-grid,
.feature-grid,
.sector-grid,
.resource-grid,
.usecase-grid,
.reasons-grid,
.benefit-grid,
.copy-grid,
.faq-grid,
.functionality-list {
  display: grid;
  gap: 20px;
}

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

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

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

.usecase-grid,
.reasons-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.copy-grid--home {
  margin-top: 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.module-card,
.feature-card,
.soft-card,
.reason-card,
.text-card,
.faq-card,
.contact-form,
.functionality-item,
.functionality-showcase {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
}

.module-card::after {
  content: "";
  position: absolute;
  inset: auto -28px -58px auto;
  width: 180px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
}

.module-card__media {
  margin: -28px -28px 22px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(16, 25, 53, 0.08);
  background: linear-gradient(180deg, #edf2ff 0%, #ffffff 100%);
}

.module-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module-card__icon,
.feature-card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--accent-gradient);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 18px 24px rgba(16, 25, 53, 0.12);
}

.module-card h3,
.feature-card h3,
.soft-card strong,
.text-card h3,
.faq-card h3 {
  margin: 20px 0 10px;
  font-size: 1.2rem;
}

.module-card__eyebrow {
  margin-top: 18px;
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.module-card__value {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-top: 18px;
  padding: 0 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(16, 25, 53, 0.92), rgba(23, 72, 214, 0.92));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 30px rgba(16, 25, 53, 0.16);
}

.module-card__targets {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 25, 53, 0.08);
}

.module-card__targets-label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.module-targets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.module-target {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(16, 25, 53, 0.05);
  color: var(--ink-dark);
  font-size: 12px;
  font-weight: 700;
}

.text-card,
.faq-card,
.contact-form,
.functionality-item,
.functionality-showcase {
  border: 1px solid rgba(16, 25, 53, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 48px rgba(16, 25, 53, 0.08);
}

.functionality-showcase {
  padding: 34px;
  background:
    radial-gradient(circle at top right, var(--accent-soft) 0%, transparent 24%),
    rgba(255, 255, 255, 0.96);
}

.functionality-showcase__intro {
  max-width: 760px;
  margin-bottom: 26px;
}

.functionality-showcase__intro h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
}

.functionality-showcase__intro p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.functionality-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 108px;
  padding: 22px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.95));
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.functionality-item:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 25, 53, 0.14);
  box-shadow: 0 24px 40px rgba(16, 25, 53, 0.1);
}

.functionality-item__icon {
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--accent-gradient);
  box-shadow: 0 14px 24px rgba(16, 25, 53, 0.14);
}

.functionality-item__icon::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 10px;
  width: 14px;
  height: 8px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
}

.functionality-item__text {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
  color: #1c2442;
}

.text-card p,
.faq-card p {
  color: var(--muted);
  line-height: 1.75;
}

.bullet-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.72;
}

.bullet-list li + li {
  margin-top: 12px;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.module-card ul,
.compare-column ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.module-card li,
.compare-column li {
  position: relative;
  padding-left: 22px;
}

.module-card li + li,
.compare-column li + li {
  margin-top: 12px;
}

.module-card li::before,
.compare-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.module-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--accent-strong);
  font-weight: 800;
}

.reason-card {
  min-height: 190px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.reason-card strong {
  display: block;
  margin-top: 26px;
  font-size: 1.12rem;
}

.reason-card p {
  color: rgba(255, 255, 255, 0.72);
}

.about-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.about-metrics {
  display: grid;
  gap: 14px;
}

.about-metrics div {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(16, 25, 53, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.about-metrics strong {
  display: block;
  font-size: 1rem;
}

.about-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
}

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

.logos-strip span {
  display: grid;
  place-items: center;
  min-height: 86px;
  border-radius: 22px;
  border: 1px solid rgba(16, 25, 53, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: #24304f;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.compare-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 34px;
}

.compare-column h3 {
  font-size: 1.4rem;
}

.compare-column--problem h3 {
  color: #e13c4a;
}

.compare-column--solution h3 {
  color: #12b76a;
}

.compare-center {
  display: grid;
  place-items: center;
  width: 140px;
  height: 140px;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, rgba(255, 255, 255, 0.9) 72%);
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.55);
  color: var(--accent-strong);
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.section-head--left {
  max-width: 760px;
  margin: 0 0 28px;
  text-align: left;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px 36px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(110deg, #0a1434 0%, #111d4b 48%, var(--accent-strong) 100%);
  box-shadow: var(--shadow);
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
}

.cta-banner p {
  max-width: 580px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer {
  padding: 28px 0 40px;
}

.site-footer__inner,
.site-footer__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer__inner {
  color: var(--muted);
  font-size: 14px;
}

.site-footer__links {
  flex-wrap: wrap;
}

.not-found-card {
  max-width: 640px;
  margin: 40px auto 0;
  padding: 42px;
  border-radius: 32px;
  text-align: center;
}

.not-found-card p {
  margin: 18px 0 24px;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 20px;
}

.contact-card {
  min-height: 100%;
}

.contact-form-wrap {
  display: grid;
  gap: 16px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field span {
  font-size: 14px;
  font-weight: 800;
  color: #1c2442;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(16, 25, 53, 0.12);
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(16, 25, 53, 0.22);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.field textarea {
  resize: vertical;
  min-height: 156px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.form-hint {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.alert {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(16, 25, 53, 0.08);
  font-size: 14px;
  line-height: 1.7;
}

.alert strong {
  display: block;
  margin-bottom: 6px;
}

.alert ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.alert-success {
  background: rgba(18, 183, 106, 0.1);
  color: #0f7b4d;
}

.alert-error {
  background: rgba(243, 58, 61, 0.1);
  color: #b42318;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(16, 25, 53, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto 5px;
  border-radius: 999px;
  background: #1c2442;
}

.nav-toggle span:last-child {
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-strip,
  .compare-card {
    grid-template-columns: 1fr;
  }

  .compare-center {
    order: -1;
  }

  .module-grid,
  .feature-grid,
  .benefit-grid,
  .copy-grid,
  .functionality-list,
  .usecase-grid,
  .reasons-grid,
  .logos-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sector-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner,
  .site-footer__inner,
  .contact-layout {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }

  .site-logo {
    width: 200px;
  }

  .site-nav-wrap {
    display: none;
    width: 100%;
    margin-left: 0;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(16, 25, 53, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 40px rgba(16, 25, 53, 0.08);
  }

  .site-header.nav-open .site-nav-wrap {
    display: grid;
    gap: 18px;
  }

  .site-nav,
  .header-actions,
  .products-panel__item {
    width: 100%;
  }

  .site-nav,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .products-panel {
    position: static;
    min-width: auto;
    margin-top: 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    background: rgba(246, 247, 251, 0.9);
  }

  .nav-products.is-open .products-panel {
    display: block;
  }

  .site-nav > a,
  .nav-products__toggle {
    justify-content: space-between;
    padding: 6px 0;
  }
}

@media (max-width: 720px) {
  .hero,
  .section {
    padding: 34px 0 22px;
  }

  .dashboard-shot,
  .dashboard-shot img {
    min-height: 340px;
  }

  .dashboard-shot__overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px 18px;
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    gap: 14px;
  }

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

  .metric-grid,
  .metric-grid--four,
  .dashboard-grid,
  .module-grid,
  .feature-grid,
  .benefit-grid,
  .copy-grid,
  .faq-grid,
  .functionality-list,
  .usecase-grid,
  .reasons-grid,
  .logos-strip {
    grid-template-columns: 1fr;
  }

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

  .cta-banner,
  .compare-card,
  .not-found-card {
    padding: 24px;
  }

  .hero-title {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }

  .hero-stats,
  .hero-inline-points {
    gap: 10px;
  }

  .stat-pill,
  .hero-inline-points span {
    width: 100%;
  }
}
