:root {
  --bg: #f4f7fb;
  --surface: #f8fbff;
  --surface-strong: #ffffff;
  --text: #101828;
  --muted: #475467;
  --line: rgba(16, 24, 40, 0.1);
  --brand: #0b63ce;
  --brand-dark: #084298;
  --accent: #2563eb;
  --cta: #e53935;
  --cta-dark: #c62828;
  --shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.offer-topbar {
  background: #fff5f2;
  border-bottom: 1px solid rgba(229, 57, 53, 0.12);
}

.offer-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 32px;
  padding: 4px 0;
  text-align: left;
  flex-wrap: nowrap;
}

.offer-topbar__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  background: #ffffff;
  color: #b42318;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.offer-topbar__inner p {
  margin: 0;
  color: #7a271a;
  font-size: 0.8rem;
  line-height: 1.2;
  flex: 0 1 auto;
  white-space: nowrap;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.marketing-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.marketing-header__inner,
.marketing-footer__inner,
.hero-section__inner,
.value-strip__inner,
.split-layout,
.contact-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.marketing-header__inner {
  min-height: 62px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.brand__logo,
.marketing-footer__brand img {
  width: 150px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.brand__copy {
  display: grid;
  gap: 2px;
}

.brand__eyebrow,
.section-kicker,
.hero-panel__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
}

.brand strong,
.section-heading h2,
.hero-copy h1,
.hero-panel h2,
.contact-card h3 {
  font-family: "Space Grotesk", sans-serif;
}

.marketing-nav {
  display: inline-flex;
  gap: 24px;
  font-weight: 600;
  color: var(--muted);
}

.marketing-header__actions,
.hero-copy__actions,
.contact-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn,
.link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.primary-btn {
  border: 1px solid rgba(29, 78, 216, 0.18);
  background: linear-gradient(135deg, #1d4ed8, #2563eb 58%, #3b82f6);
  color: #fff;
  box-shadow:
    0 14px 28px rgba(37, 99, 235, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.primary-btn:hover {
  background: linear-gradient(135deg, #1e40af, #1d4ed8 58%, #2563eb);
  box-shadow:
    0 18px 34px rgba(37, 99, 235, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.secondary-btn {
  background: #eef4ff;
  color: var(--brand-dark);
  border: 1px solid rgba(11, 99, 206, 0.14);
}

.link-btn {
  color: var(--text);
  border: 1px solid var(--line);
  background: #ffffff;
}

.primary-btn:hover,
.secondary-btn:hover,
.link-btn:hover,
.contact-point:hover {
  transform: translateY(-1px);
}

.hero-section {
  padding: 72px 0 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(191, 219, 254, 0.3), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 74%);
}

.hero-section__inner {
  min-height: 520px;
  align-items: stretch;
  gap: 34px;
}

.hero-section__inner--centered {
  justify-content: center;
}

.hero-copy,
.hero-panel,
.split-copy,
.split-panel,
.contact-copy,
.contact-card {
  flex: 1 1 0;
}

.hero-copy--centered {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero-section .section-kicker,
.hero-section .hero-copy__text {
  color: var(--muted);
}

.hero-section .hero-copy h1 {
  color: #08111f;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.05;
  margin: 10px 0 16px;
  max-width: 680px;
}

.hero-copy--centered h1,
.hero-copy--centered .hero-copy__text {
  margin-left: auto;
  margin-right: auto;
}

.hero-copy--centered h1 {
  max-width: 920px;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.hero-copy--centered .hero-copy__text {
  max-width: 980px;
  font-size: 1.08rem;
}

.hero-copy__text,
.section-heading p,
.feature-card p,
.workflow-card p,
.plan-card p,
.rich-copy,
.contact-copy p,
.contact-card p,
.marketing-footer__brand p,
.value-strip p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-mini-proof {
  display: inline-flex;
  align-items: center;
  margin-top: 2px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f8fbff;
  border: 1px solid rgba(11, 99, 206, 0.08);
  color: var(--brand-dark);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-copy__note {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding-left: 16px;
  border-left: 3px solid rgba(11, 99, 206, 0.2);
}

.hero-copy__note strong {
  font-size: 0.98rem;
}

.hero-copy__note span {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy__stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-copy--centered .hero-copy__actions,
.hero-copy--centered .hero-copy__stats {
  justify-content: center;
}

.hero-cta {
  gap: 12px;
  min-height: 48px;
  padding: 0 20px 0 22px;
  border-color: rgba(37, 99, 235, 0.14);
  background: linear-gradient(135deg, #1d4ed8, #2563eb 56%, #60a5fa);
  box-shadow:
    0 20px 40px rgba(29, 78, 216, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  letter-spacing: 0.01em;
}

.hero-cta__label {
  display: inline-block;
}

.hero-cta i {
  font-size: 1rem;
  opacity: 0.92;
}

.hero-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1e40af, #1d4ed8 52%, #3b82f6);
  box-shadow:
    0 24px 46px rgba(29, 78, 216, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.social-proof__eyebrow,
.trusted-strip__label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 700;
}

.stat-chip,
.feature-card,
.workflow-card,
.plan-card,
.hero-panel__card,
.showcase-card,
.split-panel,
.contact-card,
.contact-point,
.value-strip__inner,
.social-proof__bar,
.testimonial-card,
.faq-card,
.preview-card {
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.06);
  box-shadow: var(--shadow);
}

.stat-chip {
  min-width: 150px;
  padding: 14px 16px;
  border-radius: 16px;
}

.stat-chip strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.product-preview__grid,
.showcase-grid,
.testimonial-grid,
.faq-list {
  display: grid;
  gap: 16px;
}

.hero-panel__list,
.plan-card__list,
.check-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-panel__list li,
.plan-card__list li,
.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
}

.hero-panel__list li::before,
.plan-card__list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.hero-panel__footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 4px;
}

.trusted-strip {
  padding: 12px 0 4px;
}

.trusted-strip__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 18px;
  border: 1px solid rgba(16, 24, 40, 0.06);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.trusted-strip__inner--clients {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 20px;
}

.trusted-strip__review {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  color: var(--text);
  text-align: center;
  padding-bottom: 2px;
}

.trusted-strip__star {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trusted-strip__review strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.96rem;
}

.trusted-strip__review-copy {
  color: var(--muted);
  font-size: 0.82rem;
}

.trusted-strip__stats {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(16, 24, 40, 0.08);
  border-bottom: 1px solid rgba(16, 24, 40, 0.08);
  background:
    linear-gradient(90deg, rgba(11, 99, 206, 0.015), transparent 22%, transparent 78%, rgba(12, 90, 67, 0.02));
}

.trusted-stat {
  padding: 14px 10px 12px;
  text-align: center;
  position: relative;
}

.trusted-stat + .trusted-stat {
  border-left: 1px solid rgba(16, 24, 40, 0.08);
}

.trusted-stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1;
  margin-bottom: 6px;
}

.trusted-stat span {
  color: #344054;
  font-size: 0.8rem;
  font-weight: 500;
}

.trusted-strip__logo-stage {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.trusted-strip__logo-ribbon {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.9), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(16, 24, 40, 0.06);
}

.trusted-strip__logo-ribbon--left {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trusted-strip__logo-ribbon--right {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trusted-strip__spotlight {
  display: grid;
  gap: 4px;
  align-content: center;
  min-height: 0;
  padding: 12px 16px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.22), transparent 24%),
    radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.16), transparent 28%),
    linear-gradient(180deg, #0f172a, #13203b 58%, #162847);
  color: #fff;
  text-align: center;
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 24px 42px rgba(15, 23, 42, 0.22);
}

.trusted-strip__spotlight-kicker {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trusted-strip__spotlight strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.22rem, 1.7vw, 1.58rem);
  line-height: 1.04;
}

.trusted-strip__spotlight span {
  line-height: 1.22;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
}

.trusted-strip__spotlight-list {
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.trusted-strip__spotlight-list li {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.73rem;
  font-weight: 700;
}

.trusted-strip__spotlight a,
.trusted-strip__spotlight button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #dbeafe);
  color: #1d4ed8 !important;
  border: 1px solid rgba(255, 255, 255, 0.44);
  font-weight: 800;
  text-shadow: none;
  margin: 4px auto 0;
  cursor: pointer;
  box-shadow:
    0 12px 24px rgba(15, 23, 42, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.trusted-strip__spotlight a span,
.trusted-strip__spotlight button span {
  color: #1d4ed8 !important;
}

.trusted-strip__spotlight a i,
.trusted-strip__spotlight button i {
  font-size: 0.82rem;
  color: #1d4ed8 !important;
}

.trusted-strip__spotlight-cta {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin-top: 10px;
}

.trusted-strip__spotlight-cta small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
}

.trusted-strip__line {
  flex: 1 1 0;
  max-width: 180px;
  height: 1px;
  background: rgba(16, 24, 40, 0.14);
}

.trusted-strip__items {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trusted-strip__clients {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.trusted-client {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0;
  width: 100%;
  text-decoration: none;
}

.trusted-client__logo-shell {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.trusted-client:hover .trusted-client__logo-shell {
  transform: translateY(-2px);
  border-color: rgba(11, 99, 206, 0.18);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.trusted-strip__logo-ribbon .trusted-client:last-child {
  grid-column: 1 / -1;
  max-width: 210px;
  margin: 0 auto;
}

.trusted-client__logo {
  max-width: 100%;
  max-height: 33px;
  object-fit: contain;
}

.trusted-client__logo-shell--crednova {
  width: 100%;
}

.trusted-client__logo--crednova {
  max-height: 46px;
}

.trusted-client__logo-shell--loanmanthra {
  width: 100%;
}

.trusted-client__logo--loanmanthra {
  max-height: 40px;
}

.trusted-client__logo-shell--nivara {
  width: 100%;
  height: 64px;
}

.trusted-client__logo--nivara {
  max-height: 38px;
}

.trusted-client__logo-shell--bankvala {
  width: 100%;
}

.trusted-client__logo--bankvala {
  max-height: 38px;
}

.trusted-client__logo-shell--bharatfund {
  width: 100%;
}

.trusted-client__logo--bharatfund {
  max-height: 36px;
}

.trusted-client__logo-shell--dhanmate {
  width: 100%;
}

.trusted-client__logo--dhanmate {
  max-height: 40px;
}

.trusted-client__logo-shell--stoxbell {
  width: 100%;
}

.trusted-client__logo--stoxbell {
  max-height: 42px;
}

.trusted-client__logo-shell--moneybowl {
  width: 100%;
}

.trusted-client__logo--moneybowl {
  max-height: 36px;
}

.trusted-client__logo-shell--growise {
  width: 100%;
}

.trusted-client__logo--growise {
  max-height: 38px;
}

.trusted-client__logo-shell--zapkredit {
  width: 100%;
}

.trusted-client__logo--zapkredit {
  max-height: 24px;
}

.value-strip {
  padding: 10px 0 4px;
}

.social-proof {
  padding: 4px 0 0;
}

.social-proof__bar {
  padding: 18px 24px;
  border-radius: 18px;
  text-align: center;
}

.social-proof__bar p {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
}

.value-strip__inner {
  justify-content: center;
  padding: 16px 22px;
  border-radius: 18px;
  background: #ffffff;
}

.section-block {
  padding: 60px 0;
}

.section-block--accent {
  background: #f8fbff;
}

.section-block--crm-showcase {
  position: relative;
  padding-top: 30px;
}

.section-block--crm-showcase::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 280px;
  background:
    radial-gradient(circle at 14% 18%, rgba(11, 99, 206, 0.08), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(12, 90, 67, 0.08), transparent 24%);
  pointer-events: none;
}

.crm-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.crm-showcase__copy {
  display: grid;
  gap: 0;
}

.crm-showcase__copy h2 {
  margin: 12px 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 2.9vw, 2.9rem);
  line-height: 1.08;
}

.crm-showcase__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  max-width: 46ch;
}

.crm-showcase__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.crm-showcase__pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(11, 99, 206, 0.08);
  border: 1px solid rgba(11, 99, 206, 0.08);
  color: var(--brand-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.crm-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.crm-showcase__stage {
  position: relative;
  display: grid;
  gap: 18px;
}

.crm-showcase__integrations {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 0 2px;
}

.crm-showcase__integrations-label {
  color: #111827;
  font-size: 0.96rem;
  font-weight: 800;
}

.crm-showcase__integrations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.crm-showcase__integration-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(11, 99, 206, 0.08);
  color: #1f2937;
  font-size: 0.94rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.crm-showcase__integration-logo {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 18px;
}

.crm-showcase__canvas {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-radius: 36px;
  padding: 34px 34px 26px;
  background:
    radial-gradient(circle at 16% 14%, rgba(59, 130, 246, 0.12), transparent 20%),
    radial-gradient(circle at 86% 16%, rgba(14, 165, 233, 0.1), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(15, 23, 42, 0.08), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 44%, #e8f0fb 72%, #d9e6f5 100%);
  border: 1px solid rgba(11, 99, 206, 0.08);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12);
}

.crm-showcase__glow {
  position: absolute;
  inset: 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.56), transparent 28%),
    radial-gradient(circle at 72% 56%, rgba(191, 219, 254, 0.24), transparent 34%);
  filter: blur(22px);
  opacity: 0.85;
}

.crm-shot {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

.crm-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(10, 16, 28, 0.12);
}

.crm-shot__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: blur(5px) saturate(0.96);
}

.crm-shot__image--sharp {
  transform: none;
  filter: none;
}

.crm-shot__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 1400ms ease;
  will-change: opacity, transform;
}

.crm-shot__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.crm-shot--animated {
  position: absolute;
  left: 180px;
  right: 140px;
  top: 74px;
  bottom: 84px;
  z-index: 2;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 56px rgba(15, 23, 42, 0.18);
}

.crm-float-card,
.crm-assist-card,
.crm-mobile-card,
.crm-showcase__note {
  position: absolute;
  z-index: 3;
}

.crm-float-card {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.14);
}

.crm-float-card--report {
  top: 56px;
  left: 140px;
  width: 220px;
}

.crm-float-card__image {
  display: block;
  width: 100%;
  height: auto;
}

.crm-assist-card {
  left: 44px;
  bottom: 124px;
  width: 280px;
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.14);
}

.crm-assist-card__title {
  color: #111827;
  font-size: 0.9rem;
  font-weight: 800;
}

.crm-assist-card__prompt {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  color: #4b5563;
  font-size: 0.8rem;
  line-height: 1.55;
}

.crm-assist-card__result {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f7f5ff, #ffffff);
  border: 1px solid rgba(139, 92, 246, 0.12);
}

.crm-assist-card__badge {
  color: #6d5efc;
  font-size: 0.76rem;
  font-weight: 800;
}

.crm-assist-card__line {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.14), rgba(167, 139, 250, 0.26));
}

.crm-assist-card__line--short {
  width: 74%;
}

.crm-assist-card__line--mid {
  width: 58%;
}

.crm-mobile-card {
  right: 54px;
  bottom: 0;
  width: 182px;
}

.crm-mobile-card__frame {
  position: relative;
  overflow: hidden;
  height: 364px;
  border-radius: 26px 26px 0 0;
  background: #0f172a;
  border: 4px solid #111827;
  box-shadow: 0 26px 44px rgba(15, 23, 42, 0.2);
}

.crm-mobile-card__frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 62px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-50%);
  z-index: 1;
}

.crm-mobile-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.crm-showcase__note {
  right: 54px;
  bottom: 22px;
  width: min(320px, calc(100% - 108px));
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.14);
}

.crm-showcase__note-kicker {
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.crm-showcase__note strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.28rem, 1.9vw, 1.65rem);
  line-height: 1.08;
}

.crm-showcase__note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.section-block--platform {
  position: relative;
}

.section-block--platform::before {
  content: "";
  position: absolute;
  inset: 48px 0 auto;
  height: 320px;
  background:
    radial-gradient(circle at 16% 28%, rgba(11, 99, 206, 0.08), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(12, 90, 67, 0.08), transparent 24%);
  pointer-events: none;
}

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

.section-heading--left {
  margin: 0 0 22px;
  text-align: left;
}

.section-heading h2 {
  margin: 12px 0 14px;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.12;
}

.feature-grid,
.workflow-grid,
.plan-grid,
.showcase-grid,
.testimonial-grid,
.faq-list,
.process-grid,
.pill-grid {
  display: grid;
  gap: 20px;
}

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

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

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

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

.showcase-grid--tight {
  margin-top: 22px;
}

.section-block--integrations {
  position: relative;
  padding-top: 28px;
}

.section-block--integrations::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 220px;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.92), rgba(248, 251, 255, 0)),
    radial-gradient(circle at 74% 18%, rgba(250, 204, 21, 0.08), transparent 20%);
  pointer-events: none;
}

.section-block--faq {
  position: relative;
}

.section-block--faq::before {
  content: "";
  position: absolute;
  inset: 24px 0 auto;
  height: 260px;
  background:
    radial-gradient(circle at 18% 30%, rgba(11, 99, 206, 0.08), transparent 28%),
    radial-gradient(circle at 84% 10%, rgba(12, 90, 67, 0.08), transparent 24%);
  pointer-events: none;
}

.integration-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 0;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
  border: 1px solid rgba(11, 99, 206, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.integration-panel__copy {
  padding: 38px 36px;
  display: grid;
  align-content: center;
  gap: 0;
}

.integration-panel__copy h2 {
  margin: 8px 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 2.45rem);
  line-height: 1.08;
}

.integration-panel__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
  max-width: 38ch;
}

.integration-panel__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--text);
  font-weight: 800;
}

.integration-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.integration-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 24, 40, 0.08);
  color: #344054;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}

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

.integration-proof {
  display: grid;
  gap: 6px;
  padding: 16px 16px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 24, 40, 0.08);
}

.integration-proof strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}

.integration-proof span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

.integration-panel__visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(11, 99, 206, 0.12), transparent 22%),
    radial-gradient(circle at bottom right, rgba(250, 204, 21, 0.16), transparent 28%),
    linear-gradient(180deg, #eef5ff, #ffffff);
}

.integration-panel__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.integration-panel__visual-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(12, 90, 67, 0.92);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.integration-panel__visual-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  display: grid;
  gap: 6px;
  max-width: 280px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
}

.integration-panel__visual-note strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}

.integration-panel__visual-note span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.platform-panel {
  position: relative;
  z-index: 1;
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(11, 99, 206, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(248, 251, 255, 0.94), #ffffff 55%);
  border: 1px solid rgba(11, 99, 206, 0.08);
  box-shadow: var(--shadow);
}

.platform-panel__heading {
  max-width: 700px;
  margin-bottom: 34px;
}

.platform-panel__heading h2 {
  max-width: none;
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
}

.platform-panel__heading p {
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  color: #344054;
}

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

.platform-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 0;
  min-height: 100%;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.platform-card::after {
  content: "";
  position: absolute;
  inset: auto -32px -48px auto;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 99, 206, 0.08), transparent 70%);
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 99, 206, 0.16);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.12);
}

.platform-card__icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(11, 99, 206, 0.14), rgba(11, 99, 206, 0.05));
  color: var(--brand-dark);
  font-size: 1.28rem;
  box-shadow: inset 0 0 0 1px rgba(11, 99, 206, 0.08);
}

.platform-card:nth-child(1) .platform-card__icon {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(14, 165, 233, 0.08));
  color: #1d4ed8;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
}

.platform-card:nth-child(2) .platform-card__icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(20, 184, 166, 0.08));
  color: #0f766e;
  box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.12);
}

.platform-card:nth-child(3) .platform-card__icon {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.08));
  color: #d97706;
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.14);
}

.platform-card:nth-child(4) .platform-card__icon {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.18), rgba(168, 85, 247, 0.08));
  color: #be185d;
  box-shadow: inset 0 0 0 1px rgba(236, 72, 153, 0.12);
}

.platform-card__label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11, 99, 206, 0.08);
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 1.4rem;
  line-height: 1.15;
}

.platform-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 28ch;
  color: var(--muted);
  line-height: 1.68;
}

.faq-heading {
  margin-bottom: 34px;
}

.faq-heading p {
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}

.faq-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: start;
}

.faq-panel__intro {
  padding: 28px 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(11, 99, 206, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: var(--shadow);
}

.faq-panel__eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq-panel__intro h3 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  line-height: 1.15;
}

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

.faq-list {
  grid-template-columns: 1fr;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.faq-item[open] {
  border-color: rgba(11, 99, 206, 0.16);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.1);
}

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

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
}

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

.faq-item__question span {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.45;
}

.faq-item__question i {
  flex: 0 0 auto;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(11, 99, 206, 0.1);
  color: var(--brand-dark);
  font-size: 0.95rem;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-item[open] .faq-item__question i {
  transform: rotate(45deg);
  background: rgba(11, 99, 206, 0.14);
}

.faq-item__answer {
  padding: 0 24px 22px;
  border-top: 1px solid rgba(16, 24, 40, 0.06);
}

.faq-item__answer p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.solutions-graphic {
  display: grid;
  gap: 0;
}

.solutions-graphic__board {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(11, 99, 206, 0.08);
  box-shadow: var(--shadow);
}

.solutions-graphic__board::before,
.solutions-graphic__board::after {
  content: none;
}

.solutions-graphic__intro {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto 24px;
  text-align: center;
}

.solutions-graphic__cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.solutions-graphic__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.solutions-graphic__intro h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.2;
}

.solutions-graphic__intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

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

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

.feature-card,
.workflow-card,
.plan-card,
.showcase-card,
.testimonial-card,
.faq-card,
.process-card,
.split-panel,
.contact-card {
  padding: 20px;
  border-radius: 20px;
}

.workflow-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.workflow-step {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid rgba(11, 99, 206, 0.08);
  text-align: left;
}

.workflow-step__index {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(11, 99, 206, 0.1);
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.workflow-step h4 {
  margin: 0 0 8px;
  font-size: 1.04rem;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
}

.process-card {
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.06);
  box-shadow: var(--shadow);
}

.process-card__phase,
.showcase-card__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.process-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.process-card__list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

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

.feature-card i {
  display: inline-flex;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  margin-bottom: 18px;
}

.feature-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  gap: 0;
}

.feature-card__eyebrow {
  display: inline-flex;
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature-card h3,
.workflow-card h3,
.plan-card h3,
.split-panel h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}

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

.feature-card--tone-1 i {
  background: linear-gradient(135deg, #0b63ce, #2d7cff);
}

.feature-card--tone-2 i {
  background: linear-gradient(135deg, #ef4444, #ff6b57);
}

.feature-card--tone-3 i {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.section-block--features {
  position: relative;
}

.section-block--features::before {
  content: "";
  position: absolute;
  inset: 38px 0 auto;
  height: 320px;
  background:
    radial-gradient(circle at 18% 24%, rgba(11, 99, 206, 0.08), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(239, 68, 68, 0.07), transparent 24%),
    radial-gradient(circle at 52% 100%, rgba(15, 118, 110, 0.08), transparent 28%);
  pointer-events: none;
}

.section-block--features .container {
  position: relative;
  z-index: 1;
}

.features-stage {
  margin-bottom: 22px;
}

.features-support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 28px;
  align-items: stretch;
}

.features-stage__visual,
.features-support__primary,
.features-support__secondary {
  min-width: 0;
}

.features-stage__visual {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.features-stage__eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.features-stage__intro h3 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.features-stage__intro p {
  margin: 0;
  line-height: 1.72;
}

.features-stage__art {
  display: block;
  width: 100%;
  height: auto;
  max-height: 760px;
  padding: 0;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  filter: none;
  position: relative;
  z-index: 0;
}

.features-stage__intro,
.features-stage__list {
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: var(--shadow);
}

.features-stage__intro {
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(11, 99, 206, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  min-height: 100%;
}

.features-stage__intro h3 {
  max-width: 11ch;
}

.features-stage__eyebrow {
  color: var(--brand);
}

.features-stage__intro p {
  color: var(--muted);
}

.features-stage__intro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.features-stage__pill {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(11, 99, 206, 0.08);
  color: var(--brand-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.features-support__primary,
.features-support__secondary {
  display: grid;
  gap: 0;
}

.features-stage__list {
  padding: 24px;
  border-radius: 24px;
  display: grid;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
  min-height: 100%;
}

.features-stage__list-label {
  display: inline-flex;
  margin-bottom: 2px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.features-stage__list-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(16, 24, 40, 0.08);
}

.features-stage__list-item:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.features-stage__list-item i {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(11, 99, 206, 0.12), rgba(11, 99, 206, 0.04));
  color: var(--brand-dark);
}

.features-stage__list-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.features-stage__list-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.section-block--features .feature-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.section-block--features .feature-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 0;
  padding: 20px 18px 18px;
  border-radius: 20px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  grid-column: span 4;
}

.section-block--features .feature-card::after {
  content: "";
  position: absolute;
  inset: auto -28px -48px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 99, 206, 0.08), transparent 70%);
}

.section-block--features .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
  border-color: rgba(11, 99, 206, 0.12);
}

.feature-card__index {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(15, 23, 42, 0.28);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
}

.section-block--features .feature-card i {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  border-radius: 14px;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.12);
}

.section-block--features .feature-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.section-block--features .feature-card p {
  position: relative;
  z-index: 1;
  font-size: 0.94rem;
  line-height: 1.6;
}

.section-block--features .feature-card--layout-hero {
  background:
    radial-gradient(circle at top right, rgba(11, 99, 206, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.section-block--features .feature-card--layout-wide {
  grid-column: span 4;
}

.section-block--features .feature-card--layout-standard:nth-of-type(3n) {
  background:
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff, #fbfdff);
}

.section-block--services {
  position: relative;
}

.section-block--services::before {
  content: "";
  position: absolute;
  inset: 44px 0 auto;
  height: 240px;
  background:
    radial-gradient(circle at 18% 24%, rgba(11, 99, 206, 0.07), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(15, 118, 110, 0.06), transparent 22%);
  pointer-events: none;
}

.section-block--services .container {
  position: relative;
  z-index: 1;
}

.services-shell {
  display: block;
}

.services-shell__intro {
  padding: 34px 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(11, 99, 206, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: var(--shadow);
  min-height: 100%;
}

.services-shell__intro h2 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.services-shell__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.services-shell__intro h3 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.16;
}

.services-shell__intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  max-width: 34ch;
}

.services-shell__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.services-meta {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 24, 40, 0.08);
}

.services-meta strong {
  font-size: 1rem;
}

.services-meta span {
  color: var(--muted);
  line-height: 1.6;
}

.services-shell__timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  align-content: start;
  align-items: start;
}

.services-shell__timeline-head {
  display: grid;
  gap: 8px;
  grid-column: 1 / -1;
  max-width: 520px;
  margin: 0 0 4px;
  padding: 4px 2px 2px;
}

.services-shell__timeline-label {
  display: inline-flex;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.services-shell__timeline-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 36ch;
}

.services-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 22px 22px 20px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  min-height: 100%;
  position: relative;
}

.services-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

.services-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: 26px 26px 0 0;
  background: linear-gradient(90deg, rgba(11, 99, 206, 0.28), transparent 72%);
}

.services-step__rail {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
}

.services-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: #eef4ff;
  color: var(--brand-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.services-step__line {
  width: 2px;
  min-height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(11, 99, 206, 0.28), rgba(11, 99, 206, 0.04));
}

.services-step__phase {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.services-step__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.services-step__content {
  position: relative;
}

.services-step__list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.7;
}

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

.services-step--tone-1 .services-step__index {
  background: rgba(11, 99, 206, 0.12);
}

.services-step--tone-1::before {
  background: linear-gradient(90deg, rgba(11, 99, 206, 0.34), transparent 72%);
}

.services-step--tone-2 .services-step__index {
  background: rgba(239, 68, 68, 0.12);
  color: #b42318;
}

.services-step--tone-2::before {
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.3), transparent 72%);
}

.services-step--tone-2 .services-step__list li::before {
  background: #ef4444;
}

.services-step--tone-3 .services-step__index {
  background: rgba(15, 118, 110, 0.12);
  color: #0f766e;
}

.services-step--tone-3::before {
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.3), transparent 72%);
}

.services-step--tone-3 .services-step__list li::before {
  background: #0f766e;
}

.services-step--tone-4 .services-step__index {
  background: rgba(250, 173, 20, 0.16);
  color: #b45309;
}

.services-step--tone-4::before {
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.34), transparent 72%);
}

.services-step--tone-4 .services-step__list li::before {
  background: #f59e0b;
}

.workflow-card__index {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11, 99, 206, 0.1);
  color: var(--brand-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.testimonial-card__quote {
  margin: 0 0 18px;
  color: var(--text);
  line-height: 1.8;
  font-size: 1.03rem;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  margin-top: 6px;
  color: var(--muted);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 20px;
  align-items: stretch;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  min-height: 100%;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(11, 99, 206, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 255, 0.98));
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: var(--shadow);
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.is-active {
  display: grid;
}

.testimonial-slide__media {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-slide__logo-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.testimonial-slide__logo {
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
}

.testimonial-slide__identity strong,
.testimonial-slide__identity span {
  display: block;
}

.testimonial-slide__identity strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  line-height: 1.15;
}

.testimonial-slide__identity span {
  margin-top: 6px;
  color: var(--muted);
}

.testimonial-slide__quote {
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.85;
}

.testimonial-slide__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 24, 40, 0.08);
  flex-wrap: wrap;
}

.testimonial-slide__company {
  color: var(--muted);
  font-size: 0.96rem;
}

.testimonial-slide__result {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11, 99, 206, 0.08);
  color: var(--brand-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.testimonial-slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
}

.testimonial-slider__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.testimonial-slider__nav:hover,
.testimonial-slider__dot:hover {
  transform: translateY(-1px);
}

.testimonial-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1 1 auto;
}

.testimonial-slider__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 24, 40, 0.14);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.testimonial-slider__dot.is-active {
  width: 34px;
  background: var(--brand);
}

.proof-card {
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.06);
  box-shadow: var(--shadow);
}

.proof-card__eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.proof-card h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}

.faq-card h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

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

.showcase-card--metric {
  display: grid;
  align-content: start;
}

.showcase-card__icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #eef4ff;
  color: var(--brand-dark);
  font-size: 1.2rem;
}

.showcase-card--accent-1 {
  border-top: 4px solid #0b63ce;
}

.showcase-card--accent-2 {
  border-top: 4px solid #ef4444;
}

.showcase-card--accent-3 {
  border-top: 4px solid #0f766e;
}

.showcase-card__metric {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.section-block--audience {
  position: relative;
}

.section-block--audience::before {
  content: "";
  position: absolute;
  inset: 40px 0 auto;
  height: 260px;
  background:
    radial-gradient(circle at 20% 30%, rgba(11, 99, 206, 0.08), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(15, 118, 110, 0.08), transparent 28%);
  pointer-events: none;
}

.section-block--audience .container {
  position: relative;
  z-index: 1;
}

.section-block--audience .section-heading {
  margin-bottom: 36px;
}

.section-block--audience .section-heading p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-block--audience .showcase-grid {
  gap: 22px;
}

.showcase-card--audience {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 0;
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.showcase-card--audience::after {
  content: "";
  position: absolute;
  inset: auto -40px -56px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 99, 206, 0.08), transparent 68%);
}

.showcase-card--audience:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

.showcase-card--audience .showcase-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(11, 99, 206, 0.12), rgba(11, 99, 206, 0.04));
  color: var(--brand-dark);
  box-shadow: inset 0 0 0 1px rgba(11, 99, 206, 0.08);
}

.showcase-card--audience h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.2;
}

.showcase-card--audience p {
  position: relative;
  z-index: 1;
}

.section-block--audience .showcase-card--accent-1 .showcase-card__icon {
  background: linear-gradient(135deg, rgba(11, 99, 206, 0.16), rgba(11, 99, 206, 0.05));
}

.section-block--audience .showcase-card--accent-2 .showcase-card__icon {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.16), rgba(239, 68, 68, 0.05));
  color: #b42318;
  box-shadow: inset 0 0 0 1px rgba(239, 68, 68, 0.1);
}

.section-block--audience .showcase-card--accent-3 .showcase-card__icon {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.16), rgba(15, 118, 110, 0.05));
  color: #0f766e;
  box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.1);
}

.audience-proof {
  margin: 24px auto 0;
  max-width: 620px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.security-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.security-visual,
.security-content {
  min-width: 0;
}

.security-visual__panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(11, 99, 206, 0.14), transparent 26%),
    radial-gradient(circle at bottom right, rgba(15, 118, 110, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: var(--shadow);
}

.security-orbit {
  position: relative;
  min-height: 360px;
  margin-bottom: 20px;
}

.security-orbit::before {
  content: "";
  position: absolute;
  inset: 38px;
  border-radius: 50%;
  border: 1px dashed rgba(11, 99, 206, 0.18);
}

.security-orbit::after {
  content: "";
  position: absolute;
  inset: 76px;
  border-radius: 50%;
  border: 1px dashed rgba(15, 118, 110, 0.16);
}

.security-orbit__core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(100%, 260px);
  padding: 24px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  text-align: center;
  transform: translate(-50%, -50%);
}

.security-orbit__icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #0b63ce, #2d7cff);
  color: #fff;
  font-size: 1.35rem;
}

.security-orbit__core strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
}

.security-orbit__core p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.94rem;
}

.security-orbit__node {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  font-weight: 700;
  color: var(--text);
}

.security-orbit__node i {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #eef4ff;
  color: var(--brand-dark);
}

.security-orbit__node--1 {
  top: 26px;
  right: 54px;
}

.security-orbit__node--2 {
  bottom: 54px;
  right: 34px;
}

.security-orbit__node--3 {
  bottom: 38px;
  left: 44px;
}

.security-signal-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 16px;
}

.security-signal {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 24, 40, 0.08);
}

.security-signal--primary {
  background: linear-gradient(180deg, rgba(11, 99, 206, 0.08), rgba(255, 255, 255, 0.94));
}

.security-signal__label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.security-signal strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  line-height: 1.1;
}

.security-signal p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

.security-content {
  display: grid;
  gap: 18px;
}

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

.security-card--governance {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(255, 255, 255, 0.96));
}

.security-card--governance h3 {
  margin-top: 0;
}

.section-block--split .split-layout {
  align-items: flex-start;
}

.section-block--contact {
  position: relative;
}

.section-block--contact::before {
  content: "";
  position: absolute;
  inset: 24px 0 auto;
  height: 260px;
  background:
    radial-gradient(circle at 12% 28%, rgba(11, 99, 206, 0.08), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.06), transparent 24%);
  pointer-events: none;
}

.section-block--contact .container {
  position: relative;
  z-index: 1;
}

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

.contact-shell__main,
.contact-shell__side {
  min-width: 0;
}

.contact-shell__side {
  display: flex;
}

.contact-shell__heading {
  margin-bottom: 0;
}

.rich-copy p:first-child {
  margin-top: 0;
}

.rich-copy p:last-child {
  margin-bottom: 0;
}

.contact-points {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-point {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-point__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #eef4ff;
}

.contact-point i {
  font-size: 1.1rem;
  color: var(--brand);
}

.contact-point--email .contact-point__icon {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(14, 165, 233, 0.06));
}

.contact-point--email i {
  color: #1d4ed8;
}

.contact-point--phone .contact-point__icon {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(249, 115, 22, 0.08));
}

.contact-point--phone i {
  color: #d97706;
}

.contact-point--whatsapp .contact-point__icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(34, 197, 94, 0.08));
}

.contact-point--whatsapp i {
  color: #15803d;
}

.contact-point__content {
  display: grid;
  gap: 4px;
}

.contact-point__content strong {
  color: var(--text);
  font-size: 1rem;
}

.contact-point__content small {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.contact-mini-card {
  padding: 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: var(--shadow);
}

.contact-mini-card__eyebrow,
.contact-card__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.contact-mini-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
}

.contact-mini-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.92rem;
}

.contact-card {
  margin-top: 20px;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(11, 99, 206, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.contact-card--primary {
  background:
    radial-gradient(circle at top right, rgba(11, 99, 206, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 249, 255, 0.98));
}

.contact-card--primary h3 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 2.3vw, 2rem);
  line-height: 1.12;
}

.contact-card--primary p {
  margin: 0;
  max-width: 42ch;
}

.contact-card__actions {
  margin-top: 22px;
}

.contact-card__list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.contact-card__list li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.7;
}

.contact-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.contact-side-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 28px 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(12, 90, 67, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.contact-side-card__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: #0f766e;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.contact-side-card h3 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 2.1vw, 1.85rem);
  line-height: 1.14;
}

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

.contact-side-card__note {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(12, 90, 67, 0.06);
  border: 1px solid rgba(12, 90, 67, 0.1);
}

.contact-side-card__note strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.contact-side-card__note span {
  color: var(--muted);
  line-height: 1.68;
  font-size: 0.92rem;
}

.marketing-footer {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.86);
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.12), transparent 24%),
    linear-gradient(135deg, #0d1733 0%, #102345 52%, #15445c 100%);
}

.marketing-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.1fr;
  align-items: start;
  gap: 40px;
  padding: 58px 0 42px;
}

.marketing-footer__brand {
  display: grid;
  gap: 20px;
  max-width: 380px;
}

.marketing-footer__brand img {
  width: 170px;
  height: 74px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.marketing-footer__brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
  font-size: 0.98rem;
}

.marketing-footer__socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.marketing-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.05rem;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.marketing-footer__social:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.26);
}

.marketing-footer__column {
  display: grid;
  gap: 18px;
  align-content: start;
}

.marketing-footer__column h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.65rem;
  font-family: "Space Grotesk", sans-serif;
}

.marketing-footer__links {
  display: grid;
  gap: 14px;
}

.marketing-footer__links a,
.marketing-footer__legal a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.marketing-footer__links a:hover,
.marketing-footer__legal a:hover,
.marketing-footer__contact-item:hover {
  color: #ffffff;
}

.marketing-footer__contact {
  display: grid;
  gap: 16px;
}

.marketing-footer__contact-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.75;
}

.marketing-footer__contact-item i {
  margin-top: 4px;
  color: #ffffff;
}

.marketing-footer__contact-item--address {
  align-items: start;
}

.marketing-footer__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.marketing-footer__cta .secondary-btn {
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.marketing-footer__cta .secondary-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

 .marketing-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1150;
  display: grid;
  gap: 12px;
}

.marketing-float__action {
  min-height: 54px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.marketing-float__action:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.22);
}

.marketing-float__action i {
  font-size: 1.1rem;
}

.marketing-float__action--whatsapp {
  background: linear-gradient(135deg, #19c37d, #0ea968);
  color: #ffffff;
}

.marketing-float__action--enquiry {
  background: linear-gradient(135deg, #0b63ce, #0f3f86);
  color: #ffffff;
}

body.demo-modal-open {
  overflow: hidden;
}

.demo-modal[hidden] {
  display: none;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.demo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 48, 0.48);
  backdrop-filter: blur(6px);
}

.demo-modal__dialog {
  position: relative;
  width: min(100%, 640px);
  border-radius: 30px;
  border: 1px solid rgba(14, 30, 65, 0.1);
  background: radial-gradient(circle at top right, rgba(11, 99, 206, 0.1), transparent 38%), #ffffff;
  box-shadow: 0 36px 80px rgba(12, 27, 54, 0.2);
  padding: 34px 32px 28px;
}

.demo-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(11, 99, 206, 0.08);
  color: var(--text-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.demo-modal__header {
  max-width: 460px;
  margin-bottom: 22px;
}

.demo-modal__header h2 {
  margin: 8px 0 10px;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.demo-modal__header p {
  margin: 0;
  color: var(--text-soft);
}

.demo-modal__form {
  display: grid;
  gap: 18px;
}

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

.demo-modal__field {
  display: grid;
  gap: 8px;
}

.demo-modal__field label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-strong);
}

.demo-modal__field input,
.demo-modal__field textarea {
  width: 100%;
  border: 1px solid rgba(14, 30, 65, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  padding: 14px 16px;
  font: inherit;
  color: var(--text-strong);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.demo-modal__field input:focus,
.demo-modal__field textarea:focus {
  outline: none;
  border-color: rgba(11, 99, 206, 0.45);
  box-shadow: 0 0 0 4px rgba(11, 99, 206, 0.08);
}

.demo-modal__field textarea {
  resize: vertical;
  min-height: 112px;
}

.demo-modal__actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.demo-modal__actions .primary-btn,
.demo-modal__actions .secondary-btn {
  width: auto;
}

.demo-modal__message {
  min-height: 22px;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.demo-modal__message.is-success {
  color: #0f8a4b;
}

.demo-modal__message.is-error {
  color: #c2322d;
}

.marketing-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 14, 32, 0.52);
}

.marketing-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.marketing-footer__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.marketing-footer__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .marketing-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 28px;
    padding: 46px 0 34px;
  }

  .marketing-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 18px 0;
  }

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

  .features-support {
    grid-template-columns: 1fr;
  }

  .services-shell {
    display: block;
  }

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

  .workflow-grid,
  .plan-grid,
  .showcase-grid,
  .faq-list,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solutions-graphic__cards {
    grid-template-columns: 1fr;
  }

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

  .solutions-graphic__board {
    padding: 22px;
  }

  .platform-panel {
    padding: 28px;
  }

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

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

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

  .integration-panel__copy {
    padding: 34px 28px;
  }

  .crm-showcase {
    gap: 24px;
  }

  .crm-showcase__copy p {
    max-width: none;
  }

  .crm-showcase__canvas {
    min-height: 620px;
  }

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

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

  .security-orbit {
    min-height: 320px;
  }

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

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

  .section-block--features .feature-card,
  .section-block--features .feature-card--layout-hero,
  .section-block--features .feature-card--layout-wide {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .hero-section {
    padding-top: 48px;
  }

  .offer-topbar__inner {
    flex-direction: column;
    gap: 8px;
  }

  .marketing-header__inner,
  .hero-section__inner,
  .split-layout,
  .trusted-strip__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .marketing-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .marketing-nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .marketing-header__actions {
    width: 100%;
  }

  .demo-modal {
    padding: 16px;
  }

  .marketing-float {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .marketing-float__action {
    min-height: 48px;
    padding: 0 14px;
  }

  .marketing-float__action span {
    font-size: 0.92rem;
  }

  .demo-modal__dialog {
    padding: 28px 18px 20px;
    border-radius: 24px;
  }

  .demo-modal__grid {
    grid-template-columns: 1fr;
  }

  .demo-modal__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .demo-modal__actions .primary-btn,
  .demo-modal__actions .secondary-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .crm-showcase__stage {
    gap: 16px;
  }

  .crm-showcase__canvas {
    min-height: 540px;
    padding: 24px 24px 20px;
  }

  .crm-float-card--report {
    top: 44px;
    left: 28px;
    width: 184px;
  }

  .crm-assist-card {
    left: 24px;
    bottom: 116px;
    width: 220px;
  }

  .crm-shot--animated {
    left: 120px;
    right: 94px;
    top: 70px;
    bottom: 84px;
  }

  .crm-mobile-card {
    right: 20px;
    width: 148px;
  }

  .crm-mobile-card__frame {
    height: 310px;
  }

  .crm-showcase__note {
    right: 20px;
    bottom: 18px;
    width: min(280px, calc(100% - 40px));
    padding: 18px;
  }

  .section-block--audience .section-heading {
    margin-bottom: 28px;
  }

  .platform-panel__heading h2,
  .platform-panel__heading p {
    max-width: none;
  }

  .integration-panel__visual-note {
    max-width: 240px;
  }

  .contact-card,
  .contact-side-card {
    padding: 24px;
    border-radius: 24px;
  }

  .features-stage__visual,
  .features-stage__intro,
  .features-stage__list {
    border-radius: 22px;
  }

  .security-visual__panel {
    padding: 24px;
  }

  .security-orbit__node--1 {
    top: 18px;
    right: 24px;
  }

  .security-orbit__node--2 {
    bottom: 44px;
    right: 16px;
  }

  .security-orbit__node--3 {
    bottom: 24px;
    left: 20px;
  }

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

  .trusted-strip__label {
    min-width: 0;
  }

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

  .trusted-strip__stats,
  .trusted-strip__logo-stage {
    grid-template-columns: 1fr;
  }

  .trusted-stat + .trusted-stat {
    border-left: 0;
    border-top: 1px solid rgba(16, 24, 40, 0.08);
  }

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

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

@media (max-width: 640px) {
  .hero-section {
    padding-top: 36px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand__logo,
  .marketing-footer__brand img {
    width: 124px;
    height: 34px;
  }

  .marketing-footer__column h3 {
    font-size: 1.35rem;
  }

  .marketing-footer__cta {
    flex-direction: column;
  }

  .marketing-footer__cta .primary-btn,
  .marketing-footer__cta .secondary-btn {
    width: 100%;
    justify-content: center;
  }

  .marketing-footer__legal {
    gap: 14px;
  }

  .contact-point {
    grid-template-columns: 40px 1fr;
    padding: 14px 15px;
  }

  .crm-showcase__pills,
  .crm-showcase__actions,
  .crm-showcase__integrations-list {
    width: 100%;
  }

  .crm-showcase__integrations {
    gap: 8px;
  }

  .crm-showcase__integration-chip {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.84rem;
  }

  .crm-showcase__canvas {
    min-height: 500px;
    padding: 18px 18px 16px;
  }

  .crm-float-card--report {
    top: 18px;
    left: 18px;
    width: 146px;
  }

  .crm-assist-card {
    display: none;
  }

  .crm-shot--animated {
    left: 16px;
    right: 16px;
    top: 96px;
    bottom: 148px;
  }

  .crm-mobile-card {
    right: 18px;
    width: 102px;
  }

  .crm-mobile-card__frame {
    height: 212px;
  }

  .crm-showcase__note {
    left: 16px;
    right: 16px;
    bottom: 14px;
    width: auto;
    padding: 16px;
  }

  .contact-point__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .contact-mini-card {
    padding: 16px;
  }

  .feature-grid,
  .workflow-grid,
  .plan-grid,
  .showcase-grid,
  .testimonial-grid,
  .faq-list,
  .product-preview__grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .solutions-graphic__intro {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .solutions-graphic__cards {
    grid-template-columns: 1fr;
  }

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

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

  .platform-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .platform-card {
    padding: 22px;
    border-radius: 20px;
  }

  .integration-panel__visual {
    min-height: 260px;
  }

  .integration-chip {
    min-width: 92px;
    min-height: 48px;
    font-size: 0.9rem;
  }

  .integration-panel__copy {
    padding: 26px 18px 22px;
  }

  .contact-shell {
    gap: 18px;
  }

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

  .contact-side-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .integration-panel__visual-badge {
    top: 14px;
    left: 14px;
  }

  .integration-panel__visual-note {
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 14px;
    border-radius: 16px;
  }

  .trusted-strip__clients {
    grid-template-columns: 1fr;
  }

  .section-block--audience::before {
    inset: 24px 0 auto;
    height: 220px;
  }

  .section-block--features::before {
    inset: 24px 0 auto;
    height: 260px;
  }

  .features-stage {
    margin-bottom: 20px;
  }

  .features-stage__visual,
  .features-stage__intro,
  .features-stage__list,
  .section-block--features .feature-card {
    border-radius: 20px;
  }

  .services-step {
    border-radius: 22px;
  }

  .features-stage__visual {
    border-radius: 0;
  }

  .features-stage__art {
    padding: 0;
  }

  .features-stage__intro h3 {
    font-size: 1.7rem;
  }

  .features-stage__intro {
    padding: 22px 20px;
  }

  .features-stage__intro-pills {
    margin-top: 18px;
  }

  .features-stage__list {
    padding: 20px;
  }

  .section-block--features .feature-card--layout-hero,
  .section-block--features .feature-card--layout-wide {
    grid-column: auto;
  }

  .section-block--features .feature-grid {
    grid-template-columns: 1fr;
  }

  .services-shell__timeline {
    grid-template-columns: 1fr;
  }

  .services-step {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .testimonial-slide__media {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .services-step__rail {
    grid-auto-flow: column;
    justify-content: start;
  }

  .services-step__line {
    width: 48px;
    min-height: 2px;
    align-self: center;
    background: linear-gradient(90deg, rgba(11, 99, 206, 0.28), rgba(11, 99, 206, 0.04));
  }

  .security-visual__panel {
    padding: 20px;
    border-radius: 22px;
  }

  .security-orbit {
    min-height: auto;
    display: grid;
    gap: 14px;
    margin-bottom: 16px;
  }

  .security-orbit::before,
  .security-orbit::after {
    content: none;
  }

  .security-orbit__core,
  .security-orbit__node {
    position: static;
    width: 100%;
    transform: none;
  }

  .security-orbit__core {
    padding: 22px 18px;
  }

  .security-signal-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card--audience {
    padding: 22px 20px;
  }

  .showcase-card--audience h3 {
    font-size: 1.28rem;
  }

  .audience-proof {
    margin-top: 18px;
    font-size: 0.92rem;
  }

  .trusted-strip__logo-ribbon {
    grid-template-columns: 1fr;
  }

  .marketing-header__actions,
  .hero-copy__actions,
  .contact-card__actions {
    width: 100%;
  }

  .primary-btn,
  .secondary-btn,
  .link-btn {
    width: 100%;
  }

  .marketing-footer__links {
    display: grid;
    gap: 10px;
  }
}
