:root {
  color-scheme: light;
  --ink: #070d1f;
  --ink-soft: #1f2a44;
  --muted: #5f6b7f;
  --line: #e7eaf0;
  --paper: #fbfcff;
  --surface-soft: #f7f9fd;
  --blue: #2563eb;
  --blue-soft: #eaf2ff;
  --purple: #a21caf;
  --violet: #7c3aed;
  --green: #17c964;
  --pink: #d946ef;
  --shadow: 0 18px 48px rgba(13, 23, 54, 0.12);
  --shadow-strong: 0 24px 70px rgba(102, 55, 180, 0.22);
  --radius: 8px;
  --shell: 1070px;
  --header-height: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.announcement-hidden .announcement {
  display: none;
}

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

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

button {
  font: inherit;
  letter-spacing: 0;
  cursor: pointer;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 60;
  transform: translateY(-150%);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(100% - 40px, var(--shell));
  margin-inline: auto;
}

.announcement {
  position: relative;
  z-index: 50;
  background: linear-gradient(90deg, #1d6bff 0%, #6044f4 44%, #b313e8 100%);
  color: #fff;
}

.announcement-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding-inline: 42px;
  text-align: center;
}

.announcement p {
  margin: 0;
  font-weight: 700;
  line-height: 1.35;
}

.announcement a {
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.spark {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.spark::before,
.spark::after {
  content: "";
  position: absolute;
  border-radius: 99px;
  background: #fff;
}

.spark::before {
  inset: 8px 1px;
}

.spark::after {
  inset: 1px 8px;
}

.announcement-close {
  position: absolute;
  inset-inline-end: 20px;
  inset-block-start: 50%;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
}

.announcement-close::before,
.announcement-close::after {
  content: "";
  position: absolute;
  inset-inline-start: 9px;
  inset-block-start: 15px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
}

.announcement-close::before {
  transform: rotate(45deg);
}

.announcement-close::after {
  transform: rotate(-45deg);
}

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 40;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(20, 30, 55, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 850;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, #3065ff, #ad18e6);
  font-size: 0.94rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(124, 58, 237, 0.22);
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-inline: auto;
}

.site-nav a,
.login-link,
.language-links a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.login-link:hover,
.login-link:focus-visible,
.language-links a:hover,
.language-links a:focus-visible {
  color: var(--blue);
}

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

.language-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-links span {
  width: 1px;
  height: 18px;
  background: #c9d0dc;
}

.language-links [aria-current="true"] {
  color: var(--blue);
  font-weight: 850;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-inline-start: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 9px 17px;
  font-weight: 780;
  line-height: 1.15;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(90deg, #2266f3, #b116e8);
  box-shadow: 0 14px 30px rgba(89, 64, 230, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 42px rgba(89, 64, 230, 0.3);
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 8px 18px rgba(20, 30, 55, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(37, 99, 235, 0.34);
}

.button-large {
  min-height: 44px;
  padding-inline: 22px;
  font-size: 1rem;
}

.hero {
  background: linear-gradient(180deg, #fbfcff 0%, #ffffff 72%, #fbfcff 100%);
  border-bottom: 1px solid var(--line);
}

.hero-layout {
  min-height: clamp(760px, calc(100svh - var(--header-height) - 48px), 980px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.88fr);
  gap: 78px;
  align-items: center;
  padding-block: 118px 86px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 28px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #1b4e9f;
  padding: 5px 13px;
  font-size: 0.92rem;
  font-weight: 760;
}

.hero-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 0 5px rgba(96, 165, 250, 0.18);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin-block-start: 0;
  color: var(--ink);
  line-height: 1.13;
}

h1 {
  max-width: 560px;
  margin-block-end: 24px;
  font-size: 4.25rem;
  font-weight: 880;
}

h2 {
  margin-block-end: 16px;
  font-size: 2.34rem;
  font-weight: 850;
}

h3 {
  margin-block-end: 10px;
  font-size: 1.12rem;
  font-weight: 820;
}

p {
  margin-block-start: 0;
}

.hero-copy {
  max-width: 540px;
  margin-block-end: 28px;
  color: #354156;
  font-size: 1.18rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-block-end: 34px;
}

.hero-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 20px 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-checks li {
  position: relative;
  color: var(--muted);
  padding-inline-start: 28px;
  font-weight: 650;
}

.hero-checks li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
}

.hero-checks li::after {
  content: "";
  position: absolute;
  inset-inline-start: 6px;
  inset-block-start: 9px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.hero-visual {
  min-width: 0;
}

.dashboard-frame {
  position: relative;
  width: min(100%, 448px);
  margin-inline: auto 0;
  padding: 32px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(217, 70, 239, 0.13)), #f3f7ff;
  box-shadow: var(--shadow-strong);
}

.dashboard-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.dashboard-top {
  min-height: 62px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  color: #fff;
  background: linear-gradient(90deg, #2467f4, #b116e8);
}

.dashboard-top strong {
  text-align: center;
  font-size: 0.95rem;
}

.dashboard-top i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.dashboard-body {
  display: grid;
  gap: 16px;
  padding: 24px;
}

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

.stat-grid article {
  min-height: 74px;
  border-radius: var(--radius);
  background: #f6f8fc;
  padding: 13px;
}

.stat-grid span {
  display: block;
  margin-block-end: 4px;
  color: #1f5ca8;
  font-size: 0.82rem;
  font-weight: 720;
}

.stat-grid article:nth-child(3) span {
  color: #16945e;
}

.stat-grid strong {
  font-size: 1.25rem;
}

.message-card {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 13px;
  min-height: 70px;
  border-radius: var(--radius);
  padding: 12px 16px;
}

.message-card.blue {
  background: #edf6ff;
}

.message-card.pink {
  background: #fbf0ff;
}

.message-card > span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #d946ef);
}

.message-card strong {
  display: block;
  line-height: 1.2;
}

.message-card p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.activity-card {
  min-height: 96px;
  border-radius: var(--radius);
  background: #fafbfe;
  padding: 17px;
}

.activity-card strong {
  display: block;
  margin-block-end: 12px;
  color: #334155;
  font-size: 0.86rem;
}

.activity-card span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #93c5fd, #e9b5f6);
}

.activity-card span + span {
  margin-block-start: 8px;
}

.activity-card span:nth-child(3) {
  opacity: 0.86;
}

.activity-card span:nth-child(4) {
  opacity: 0.72;
}

.trust-section {
  background: #fff;
  padding-block: 64px 70px;
}

.trust-section h2 {
  text-align: center;
  margin-block-end: 30px;
  font-size: 1.95rem;
}

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

.trust-logos span {
  display: grid;
  min-height: 58px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding-block: 86px;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.section-heading {
  max-width: 760px;
  margin-inline: auto;
  margin-block-end: 46px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section-heading p:not(.eyebrow),
.solution-copy p,
.why-panel p,
.pricing-layout p,
.resource-layout p,
.cta-panel p,
.footer-brand p {
  color: var(--muted);
  margin-block-end: 0;
}

.platform-section {
  background: var(--surface-soft);
  border-block: 1px solid var(--line);
}

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

.platform-card,
.flow-panel,
.industry-grid article,
.why-panel,
.pricing-card,
.resource-layout article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 30, 55, 0.05);
}

.platform-card {
  min-height: 258px;
  padding: 26px;
}

.platform-card p,
.industry-grid p,
.pricing-card p {
  color: var(--muted);
  margin-block-end: 0;
}

.platform-card.highlighted {
  background: linear-gradient(135deg, #2563eb, #a21caf);
  color: #fff;
}

.platform-card.highlighted h3,
.platform-card.highlighted p {
  color: #fff;
}

.platform-card.highlighted p {
  color: rgba(255, 255, 255, 0.76);
}

.platform-card.highlighted a {
  display: inline-flex;
  margin-block-start: 22px;
  color: #fff;
  font-weight: 850;
}

.card-icon {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  margin-block-end: 24px;
  border-radius: var(--radius);
  background: var(--blue-soft);
}

.card-icon::before,
.card-icon::after {
  content: "";
  position: absolute;
}

.card-icon.crm::before {
  inset: 12px;
  border: 3px solid var(--blue);
  border-radius: 50%;
}

.card-icon.crm::after {
  width: 22px;
  height: 10px;
  inset: 28px 13px;
  border-radius: 12px 12px 0 0;
  background: var(--violet);
}

.card-icon.calls::before {
  width: 24px;
  height: 24px;
  inset: 12px;
  border: 4px solid var(--green);
  border-radius: 50%;
}

.card-icon.calls::after {
  width: 16px;
  height: 4px;
  inset: 24px 23px;
  border-radius: 99px;
  background: var(--blue);
  transform: rotate(45deg);
}

.card-icon.messaging::before {
  inset: 13px 9px 15px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
}

.card-icon.messaging::after {
  inset-inline-start: 15px;
  inset-block-end: 10px;
  border-style: solid;
  border-width: 8px 8px 0 0;
  border-color: var(--pink) transparent transparent transparent;
}

.card-icon.commerce::before {
  inset: 15px 10px 11px;
  border: 3px solid var(--violet);
  border-top-width: 8px;
  border-radius: 5px;
}

.card-icon.commerce::after {
  width: 17px;
  height: 3px;
  inset: 24px 16px;
  border-radius: 99px;
  background: var(--green);
}

.card-icon.ai::before {
  inset: 10px;
  border: 3px solid var(--pink);
  border-radius: 50%;
}

.card-icon.ai::after {
  width: 24px;
  height: 3px;
  inset: 23px 12px;
  background: var(--blue);
  box-shadow: 0 -8px 0 var(--blue), 0 8px 0 var(--blue);
}

.solutions-section {
  background: #fff;
}

.solutions-layout,
.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 64px;
  align-items: center;
}

.solution-copy h2,
.pricing-layout h2 {
  max-width: 560px;
}

.solution-copy .button {
  margin-block-start: 28px;
}

.flow-panel {
  display: grid;
  gap: 0;
  padding: 10px;
}

.flow-panel article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius);
}

.flow-panel article + article {
  border-top: 1px solid var(--line);
}

.flow-panel span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #a21caf);
  font-weight: 850;
}

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

.industries-section {
  background: var(--surface-soft);
  border-block: 1px solid var(--line);
}

.industry-grid,
.resource-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.industry-grid article,
.resource-layout article {
  padding: 24px;
}

.industry-grid article {
  min-height: 188px;
}

.why-section {
  background: #fff;
}

.why-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
  padding: 44px;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  position: relative;
  min-height: 58px;
  border-radius: var(--radius);
  background: var(--surface-soft);
  padding: 16px 16px 16px 42px;
  color: var(--ink-soft);
  font-weight: 760;
}

.why-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 16px;
  inset-block-start: 21px;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.pricing-section {
  background: linear-gradient(180deg, #fbfcff 0%, #f4f8ff 100%);
  border-block: 1px solid var(--line);
}

.pricing-card {
  padding: 30px;
}

.pricing-card .button {
  margin-block-start: 24px;
}

.resources-section {
  background: #fff;
}

.resource-layout article {
  min-height: 178px;
}

.cta-section {
  background: #fff;
  padding-block: 20px 86px;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.cta-panel {
  border-radius: var(--radius);
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 55%, #a21caf 100%);
  color: #fff;
  padding: 54px 40px;
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.cta-panel .eyebrow,
.cta-panel h2,
.cta-panel p {
  color: #fff;
}

.cta-panel p {
  max-width: 650px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.78);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-block-start: 28px;
}

.site-footer {
  background: #071022;
  color: #fff;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(130px, 0.6fr));
  gap: 34px;
  padding-block: 50px 34px;
}

.footer-brand p {
  max-width: 390px;
  margin-block-start: 18px;
  color: rgba(255, 255, 255, 0.66);
}

.footer-layout nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-layout h3 {
  color: #fff;
  margin-block-end: 4px;
  font-size: 0.96rem;
}

.footer-layout a {
  color: rgba(255, 255, 255, 0.66);
}

.footer-layout a:hover,
.footer-layout a:focus-visible {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 18px 28px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

@media (max-width: 1120px) {
  :root {
    --shell: 930px;
  }

  .site-nav {
    gap: 20px;
  }

  h1 {
    font-size: 3.55rem;
  }

  .hero-layout,
  .solutions-layout,
  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 560px;
  }

  .dashboard-frame {
    margin-inline: 0;
  }

  .platform-grid,
  .industry-grid,
  .resource-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-logos {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    overflow-x: auto;
    padding-block-end: 4px;
  }
}

@media (max-width: 900px) {
  .site-header {
    background: #fff;
    backdrop-filter: none;
  }

  .header-inner {
    gap: 14px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-menu {
    position: fixed;
    inset-block-start: var(--mobile-menu-top, var(--header-height));
    inset-block-end: 0;
    inset-inline: 0;
    display: grid;
    align-content: start;
    gap: 22px;
    padding: 22px 20px 28px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 26px 50px rgba(20, 30, 55, 0.12);
    overflow-y: auto;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 200ms ease, opacity 200ms ease;
  }

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

  .site-nav {
    display: grid;
    gap: 0;
    justify-content: stretch;
    margin: 0;
  }

  .site-nav a {
    padding-block: 13px;
    border-bottom: 1px solid var(--line);
  }

  .header-actions {
    display: grid;
    gap: 15px;
    justify-items: stretch;
  }

  .language-links {
    justify-content: center;
  }

  .login-link {
    display: grid;
    min-height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .why-panel,
  .footer-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .announcement-inner {
    min-height: auto;
    justify-content: flex-start;
    padding: 11px 44px 11px 0;
    text-align: left;
  }

  .announcement p {
    font-size: 0.9rem;
  }

  .announcement a {
    display: none;
  }

  .brand {
    font-size: 1.16rem;
  }

  .hero-layout {
    min-height: auto;
    gap: 42px;
    padding-block: 72px 54px;
  }

  h1 {
    font-size: 2.82rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-checks {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .dashboard-frame {
    width: 100%;
    padding: 16px;
  }

  .dashboard-body {
    padding: 16px;
  }

  .dashboard-top {
    min-height: 54px;
  }

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

  .section {
    padding-block: 64px;
  }

  .section-heading {
    text-align: left;
    margin-block-end: 34px;
  }

  .platform-grid,
  .industry-grid,
  .resource-layout,
  .trust-logos,
  .why-list {
    grid-template-columns: 1fr;
  }

  .trust-logos {
    overflow-x: visible;
  }

  .trust-section h2 {
    text-align: left;
    font-size: 1.58rem;
  }

  .platform-card,
  .industry-grid article,
  .resource-layout article {
    min-height: auto;
    padding: 22px;
  }

  .flow-panel article {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .why-panel {
    padding: 28px 20px;
  }

  .pricing-card {
    padding: 24px;
  }

  .cta-section {
    padding-block-end: 64px;
  }

  .cta-panel {
    padding: 36px 20px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.38rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
