:root {
  --blue: #1d4ed8;
  --blue-dark: #1e40af;
  --blue-soft: #eff6ff;
  --pale-blue: #dbeafe;
  --navy: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --surface: #ffffff;
  --gold: #facc15;
  --coral: #ef4444;
  --shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  --soft-shadow: 0 8px 24px rgba(15, 23, 42, 0.055);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 99;
  background: var(--blue);
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.nav-wrap,
.section-inner,
.footer-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 232, 240, 0.88);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.38rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img,
.footer-brand img {
  display: block;
  width: auto;
  height: 40px;
  object-fit: contain;
}

.footer-brand img {
  height: 42px;
}

.datro-mark {
  width: 38px;
  height: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 7px;
  border-radius: 12px;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(29, 78, 216, 0.22);
}

.datro-mark span {
  border-radius: 3px;
  background: #fff;
}

.datro-mark span:nth-child(2),
.datro-mark span:nth-child(4) {
  background: var(--gold);
}

.datro-mark span:nth-child(8) {
  background: var(--coral);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 99px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.72rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(29, 78, 216, 0.18);
}

.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary {
  border-color: var(--border);
  color: var(--navy);
  background: #fff;
}

.button.secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.button.ghost {
  color: var(--blue);
  background: transparent;
  padding-inline: 0;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(rgba(29, 78, 216, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 78, 216, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, #f7fbff 58%, var(--bg) 100%);
  background-size: 36px 36px, 36px 36px, auto;
}

.hero .section-inner {
  min-height: min(820px, calc(100vh - 76px));
  padding: 4.4rem 0 4rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 2.8rem;
}

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

.page-hero .section-inner:not(.page-hero-grid) h1,
.page-hero-grid h1 {
  max-width: 680px;
  font-size: clamp(2.15rem, 5vw, 3.45rem);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.72fr);
  gap: clamp(1.4rem, 5vw, 3rem);
  align-items: center;
}

.hero-mini {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(29, 78, 216, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(219, 234, 254, 0.82), rgba(255, 255, 255, 0.94)),
    #fff;
  box-shadow: var(--soft-shadow);
  padding: 1rem;
}

.hero-mini::before {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 90px;
  height: 90px;
  border-radius: 28px;
  background: rgba(250, 204, 21, 0.28);
  transform: rotate(12deg);
}

.hero-mini > * {
  position: relative;
}

.hero-mini-flow {
  display: grid;
  gap: 0.7rem;
}

.hero-mini-flow div,
.hero-mini-contact div,
.hero-mini-resources div,
.hero-mini-simple div,
.plan-line {
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.85rem;
}

.hero-mini-flow div {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
}

.hero-mini span:not(.pill) {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-mini strong {
  color: var(--navy);
  line-height: 1.15;
}

.hero-mini p {
  margin-top: 0.25rem;
  font-size: 0.9rem;
}

.hero-mini-pricing {
  display: grid;
  gap: 0.65rem;
}

.plan-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.plan-line.active {
  border-color: rgba(29, 78, 216, 0.28);
  background: #fff;
  box-shadow: 0 10px 22px rgba(29, 78, 216, 0.08);
}

.hero-mini-partner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.hero-mini-partner div {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-left: 4px solid var(--blue);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
}

.hero-mini-partner div:nth-child(2) {
  border-left-color: var(--gold);
}

.hero-mini-partner div:nth-child(3) {
  border-left-color: var(--coral);
}

.hero-mini-contact,
.hero-mini-resources,
.hero-mini-simple {
  display: grid;
  gap: 0.7rem;
}

.ariel-chat {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.85rem;
  border: 1px solid rgba(29, 78, 216, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(219, 234, 254, 0.82), rgba(255, 255, 255, 0.94)),
    #fff;
  box-shadow: var(--soft-shadow);
  padding: 1rem;
}

.ariel-chat::before {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 108px;
  height: 108px;
  border-radius: 30px;
  background: rgba(250, 204, 21, 0.3);
  transform: rotate(12deg);
}

.ariel-chat > * {
  position: relative;
}

.chat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.chat-message {
  max-width: 92%;
  border-radius: 16px;
  padding: 0.85rem;
  color: var(--navy);
  font-size: 0.95rem;
}

.chat-message.user {
  justify-self: end;
  background: var(--blue);
  color: #fff;
}

.chat-message.assistant {
  justify-self: start;
  background: #fff;
  border: 1px solid var(--border);
}

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

.chat-build span {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--blue-dark);
  padding: 0.65rem;
  font-weight: 850;
}

.ariel-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.ariel-flow div {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 1rem;
  box-shadow: var(--soft-shadow);
}

.ariel-flow span,
.credit-row span {
  display: block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ariel-flow strong,
.credit-row strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--navy);
  font-size: 1.12rem;
}

.ariel-flow p,
.credit-row p {
  margin-top: 0.45rem;
  font-size: 0.94rem;
}

.credit-panel {
  display: grid;
  gap: 0.75rem;
}

.credit-row {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 1rem;
  box-shadow: var(--soft-shadow);
}

.credit-row.featured {
  border-color: rgba(29, 78, 216, 0.32);
  background:
    linear-gradient(90deg, var(--blue-soft), #fff 64%),
    #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--blue);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  margin-top: 1rem;
  font-size: clamp(2.45rem, 6.6vw, 4.45rem);
  font-weight: 850;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 820;
}

h3 {
  font-size: 1.24rem;
  font-weight: 780;
}

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

.lead {
  max-width: 760px;
  margin-top: 1.25rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-bullets,
.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

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

.hero-bullets li,
.check-list li {
  position: relative;
  color: var(--muted);
  padding-left: 1.45rem;
}

.hero-bullets li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 3px;
  background: var(--blue);
}

.trust-line {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-shell,
.workspace-preview,
.dashboard,
.data-flow {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-shell {
  overflow: hidden;
  transform: rotate(0.6deg);
}

.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 56px;
  padding: 0 1.05rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.45rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  padding: 0.36rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.product-body {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  min-height: 390px;
}

.product-sidebar {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  padding: 1.1rem 0.85rem;
  border-right: 1px solid var(--border);
  background: #f8fafc;
}

.side-item {
  min-height: 34px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  color: var(--muted);
  padding: 0 0.7rem;
  font-size: 0.88rem;
  font-weight: 720;
}

.side-item.active {
  background: var(--blue);
  color: #fff;
}

.product-main {
  padding: 1.1rem;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.kpi-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  padding: 0.85rem;
}

.kpi-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.kpi-card strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--navy);
  font-size: 1.3rem;
}

.database-tabs,
.hub-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.database-tabs span,
.hub-tabs span {
  padding: 0.78rem;
  border-right: 1px solid var(--border);
  background: #f8fafc;
  color: var(--muted);
  font-weight: 850;
  font-size: 0.85rem;
}

.database-tabs span:first-child,
.hub-tabs span:first-child {
  background: var(--pale-blue);
  color: var(--blue-dark);
}

.database-tabs span:last-child,
.hub-tabs span:last-child {
  border-right: 0;
}

.data-table,
.hub-table,
.database-table {
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  background: #fff;
}

.table-row,
.hub-row {
  display: grid;
  grid-template-columns: 1.15fr 0.78fr 0.78fr 0.9fr;
  gap: 0.7rem;
  align-items: center;
  min-height: 46px;
  padding: 0 0.9rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.hub-row {
  grid-template-columns: 1.05fr 0.78fr 0.78fr;
}

.table-row:last-child,
.hub-row:last-child {
  border-bottom: 0;
}

.table-head,
.hub-head {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  padding: 0.16rem 0.55rem;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
}

.mini-chart {
  height: 145px;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.line-chart,
.bar-chart {
  border: 1px solid var(--border);
  border-radius: 10px;
  background:
    linear-gradient(rgba(226, 232, 240, 0.7) 1px, transparent 1px),
    #fff;
  background-size: 100% 32px;
  padding: 0.8rem;
}

.line-chart svg {
  width: 100%;
  height: 100%;
}

.line-chart polyline {
  fill: none;
  stroke: var(--blue);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 0.45rem;
}

.bar-chart span {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: var(--blue);
}

.section {
  padding: 5.6rem 0;
  background: var(--bg);
}

.section.alt {
  background: #fff;
}

.section-header {
  max-width: 790px;
  margin-bottom: 2rem;
}

.section-header p {
  margin-top: 1rem;
  font-size: 1.06rem;
}

.story-section {
  background: #fff;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.story-layout .section-header {
  margin-bottom: 0;
}

.mess-list {
  display: grid;
  gap: 0.6rem;
}

.mess-list div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.1rem 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.mess-list div:first-child {
  padding-top: 0;
}

.mess-list div:last-child {
  border-bottom: 0;
}

.mess-list span {
  grid-row: span 2;
  width: 12px;
  height: 12px;
  margin-top: 0.42rem;
  border-radius: 50%;
  background: var(--blue);
}

.mess-list div:nth-child(2) span {
  background: var(--gold);
}

.mess-list div:nth-child(3) span {
  background: var(--coral);
}

.mess-list strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.mess-list p {
  margin-top: 0.2rem;
}

.flow-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr);
  align-items: stretch;
  gap: 0.65rem;
  border: 1px solid rgba(29, 78, 216, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(219, 234, 254, 0.65), rgba(255, 255, 255, 0.92)),
    #fff;
  padding: clamp(1rem, 3vw, 1.25rem);
  box-shadow: var(--soft-shadow);
}

.flow-step {
  min-height: 146px;
  display: grid;
  align-content: start;
  gap: 0.35rem;
  padding: 0.9rem;
}

.flow-step span {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
}

.flow-step strong {
  color: var(--navy);
  font-size: 1.18rem;
}

.flow-step p {
  font-size: 0.95rem;
}

.flow-arrow {
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--blue));
  position: relative;
}

.flow-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  transform: translateY(-50%) rotate(45deg);
}

.feature-section {
  background:
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.feature-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.feature-list article {
  display: grid;
  grid-template-columns: 28px minmax(220px, 0.75fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
}

.feature-list h3 {
  font-size: clamp(1.22rem, 2.2vw, 1.65rem);
}

.feature-list p {
  max-width: 560px;
}

.feature-dot {
  width: 14px;
  height: 14px;
  margin-top: 0.33rem;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px var(--blue-soft);
}

.feature-dot.gold {
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(250, 204, 21, 0.18);
}

.feature-dot.coral {
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.14);
}

.use-case-panel {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  padding: clamp(1.2rem, 3vw, 1.6rem);
  box-shadow: var(--soft-shadow);
}

.service-row {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-row article {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}

.service-row article:last-child {
  border-bottom: 0;
}

.service-row h3 {
  font-size: 1.08rem;
}

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

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

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

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

.card,
.mini-card,
.price-card,
.article-card,
.faq-item,
.form-panel,
.included-checklist,
.audit-offer,
.custom-offer,
.partner-node,
.fit-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.card,
.mini-card,
.article-card,
.faq-item,
.fit-card {
  padding: 1.35rem;
}

.card p,
.mini-card p,
.article-card p,
.faq-item p,
.fit-card p {
  margin-top: 0.65rem;
}

.icon-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 10px;
  color: var(--blue);
  background: var(--blue-soft);
  font-weight: 900;
}

.feature-split,
.partner-delivery,
.contact-layout,
.deliverable-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 1.4rem;
  align-items: center;
}

.workspace-preview {
  overflow: hidden;
}

.data-flow {
  display: grid;
  grid-template-columns: minmax(210px, 0.75fr) minmax(320px, 1.1fr) minmax(210px, 0.75fr);
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.35rem);
}

.flow-column {
  display: grid;
  gap: 0.65rem;
}

.flow-kicker,
.category {
  display: block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #f8fafc;
  padding: 0.9rem;
}

.flow-card span {
  display: inline-flex;
  margin-bottom: 0.35rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-card strong {
  display: block;
  color: var(--navy);
  line-height: 1.2;
}

.flow-card p {
  margin-top: 0.28rem;
  font-size: 0.88rem;
}

.flow-hub {
  display: grid;
  align-content: center;
  text-align: center;
}

.flow-hub .hub-table {
  text-align: left;
}

.hub-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 0.8rem;
  border-radius: 15px;
  background: var(--blue);
  box-shadow: 0 18px 32px rgba(29, 78, 216, 0.2);
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.35rem;
}

.price-card.featured {
  border-color: rgba(29, 78, 216, 0.42);
  box-shadow: var(--shadow);
}

.price {
  color: var(--blue);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1;
}

.price small {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.price-card .button {
  margin-top: auto;
}

.custom-offer,
.audit-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  padding: clamp(1.2rem, 3vw, 1.6rem);
}

.custom-section {
  margin-top: 3rem;
}

.offer-note,
.price-note {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.faq-accordion {
  display: grid;
  gap: 0.8rem;
}

.faq-accordion .faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: var(--navy);
  padding: 1.2rem 1.35rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-question span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.35rem;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 1.2rem;
}

.included-checklist {
  padding: clamp(1.2rem, 3vw, 1.6rem);
}

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

.audience-pill {
  min-height: 82px;
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 1rem;
  color: var(--navy);
  font-weight: 850;
}

.cta-panel {
  display: grid;
  gap: 1rem;
  justify-items: start;
  border: 1px solid rgba(29, 78, 216, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(219, 234, 254, 0.82), transparent 62%),
    #fff;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}

.partnership-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 80px minmax(0, 1fr) 80px minmax(0, 1fr);
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: clamp(1rem, 3vw, 1.35rem);
}

.partner-node {
  padding: 1.2rem;
}

.partner-node span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.partner-connector {
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

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

.fit-card strong {
  display: block;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.article-card .button {
  margin-top: 1rem;
}

.article-body {
  max-width: 820px;
}

.article-body h2 {
  margin-top: 2.4rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.article-body p,
.article-body ul {
  margin-top: 1rem;
  color: var(--muted);
}

.form-panel {
  padding: 1.35rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

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

label {
  color: var(--navy);
  font-weight: 850;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  padding: 0.75rem 0.85rem;
  font: inherit;
}

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

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(29, 78, 216, 0.28);
  outline-offset: 2px;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 3rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 2rem;
}

.footer-links,
.social-links {
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

.footer-links a:hover,
.social-links a:hover {
  color: var(--blue);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: var(--muted);
  font-weight: 800;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--blue);
}

.footer-small {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

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

  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    padding: 1rem 18px 1.4rem;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-actions .button {
    display: none;
  }

  .hero .section-inner,
  .page-hero-grid,
  .story-layout,
  .feature-split,
  .partner-delivery,
  .contact-layout,
  .deliverable-layout,
  .data-flow,
  .custom-offer,
  .audit-offer,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .flow-arrow {
    width: 2px;
    height: 32px;
    justify-self: center;
    background: linear-gradient(180deg, var(--border), var(--blue));
  }

  .flow-arrow::after {
    right: auto;
    top: auto;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .partnership-visual,
  .partner-fit,
  .ariel-flow {
    grid-template-columns: 1fr;
  }

  .partner-connector {
    width: 2px;
    height: 38px;
    justify-self: center;
    background: linear-gradient(180deg, transparent, var(--blue), transparent);
  }

  .hero .section-inner {
    min-height: auto;
  }

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

@media (max-width: 640px) {
  .nav-wrap,
  .section-inner,
  .footer-inner {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 3.4rem 0;
  }

  .hero .section-inner {
    padding: 3.4rem 0;
  }

  .hero-bullets,
  .grid.three,
  .grid.four,
  .grid.two,
  .kpi-row,
  .mini-chart,
  .feature-list article,
  .included-checklist .check-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .feature-list article {
    gap: 0.5rem;
  }

  .service-row article {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

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

  .product-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .data-flow {
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .data-flow::-webkit-scrollbar {
    display: none;
  }

  .flow-column,
  .flow-hub {
    flex: 0 0 min(86vw, 380px);
    scroll-snap-align: start;
  }

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

  .table-row span:nth-child(3),
  .table-row span:nth-child(4),
  .hub-row span:nth-child(3) {
    display: none;
  }

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

  .button {
    width: 100%;
  }
}
