:root {
  /* Full layout caps on large screens — keeps the site visually centered */
  --layout-max-width: 1920px;
  --blue-700: #2a31d8;
  --blue-600: #3641f5;
  --blue-500: #465fff;
  --blue-100: #dde9ff;
  --green-500: #12b76a;
  --gray-25: #fcfcfd;
  --gray-50: #f9fafb;
  --gray-100: #f2f4f7;
  --gray-200: #e4e7ec;
  --gray-500: #667085;
  --gray-700: #344054;
  --gray-900: #101828;
  --shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: auto;
  scroll-padding-top: 5rem;
  background: white;
}
body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--gray-900);
  background: white;
  line-height: 1.6;
  position: relative;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body::before,
body::after {
  display: none;
}

/* Desktop: center the whole page in the viewport (readable column + balanced side space) */
@media (min-width: 992px) {
  html {
    background: #fff;
  }
  body {
    max-width: min(100%, var(--layout-max-width));
    margin-left: auto;
    margin-right: auto;
  }
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
}
img {
  max-width: 100%;
  height: auto;
}
.section { padding: 4.8rem 0; position: relative; }
.section-alt { background: #fff; }
.eyebrow { color: var(--blue-600); font-weight: 700; margin-bottom: 0.75rem; }
.lead { color: var(--gray-500); max-width: 62ch; }
h1 { font-size: clamp(2rem, 5.5vw, 3.25rem); line-height: 1.1; margin-bottom: 1rem; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); line-height: 1.2; margin-bottom: 0.7rem; }
h3 { font-size: 1.05rem; line-height: 1.3; }

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px) saturate(1.2);
}
.header.scrolled {
  border-bottom-color: rgba(228, 231, 236, 0.9);
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.04), 0 8px 24px rgba(16, 24, 40, 0.04);
}
.header-content {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; color: inherit; }
.logo-img {
  display: block;
  height: clamp(1.2rem, 2.8vw, 1.45rem);
  width: auto;
}
.logo-img--pricing {
  height: clamp(2rem, 4.5vw, 2.45rem);
  margin-left: auto;
  margin-right: auto;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.125rem;
  flex: 1;
  justify-content: flex-end;
  margin: 0;
}
.desktop-nav a {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.55rem;
  border-radius: 6px;
  transition: color 0.18s ease, background 0.18s ease;
}
.desktop-nav a:hover {
  color: var(--blue-600);
  background: rgba(54, 65, 245, 0.06);
}

.header .btn {
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 9px;
  flex-shrink: 0;
}

.mobile-menu-toggle {
  border: 1px solid var(--gray-200);
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: #fff;
  font-size: 1rem;
  line-height: 1;
  color: var(--gray-700);
}
.mobile-menu { max-height: 0; overflow: hidden; border-top: 1px solid transparent; transition: max-height 0.25s ease; }
.mobile-menu.open { max-height: 22rem; border-top-color: var(--gray-200); }
.mobile-menu-inner { display: grid; gap: 0.35rem; padding: 0.65rem 0 0.85rem; }
.mobile-link {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.35rem 0;
  letter-spacing: 0.01em;
}

@media (max-width: 979px) {
  .header-content {
    gap: 0.5rem;
    min-width: 0;
  }
  .header .btn {
    padding: 0.42rem 0.68rem;
    font-size: 0.8125rem;
    white-space: nowrap;
  }
  .logo-img {
    max-width: min(110px, 44vw);
    height: auto;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0.72rem 1.05rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  touch-action: manipulation;
}
.btn-primary { background: var(--blue-500); color: #fff; }
.btn-primary:hover { background: var(--blue-600); transform: translateY(-1px); }
.btn-outline { background: #fff; border-color: var(--gray-200); color: var(--gray-900); }
.btn-outline:hover { border-color: var(--blue-500); background: #f9fbff; }

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 3.2rem;
  padding-bottom: 2rem;
  background: #fff;
}
.hero::before {
  display: none;
}
.hero::after {
  display: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero-layout {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  min-width: 0;
}
.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}
.hero-title {
  color: var(--blue-600);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.3;
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.hero-focus-text {
  font-size: clamp(1.45rem, 3.1vw, 2.6rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--gray-900);
  max-width: 100%;
  letter-spacing: -0.01em;
}
.hero-focus-text .hero-focus-line {
  display: block;
}
.hero-focus-text .typing-text {
  display: block;
  margin-top: 0.12em;
  color: var(--blue-600);
  white-space: nowrap;
  overflow: hidden;
  width: max-content;
  max-width: 0;
  border-right: 2px solid var(--blue-600);
  animation: heroTyping 4.2s steps(27, end) infinite, heroCaret 0.8s step-end infinite;
}
.hero-bottom-text {
  margin-top: 0.65rem;
  color: var(--gray-500);
  font-size: 1rem;
  font-weight: 700;
}
.hero-actions { margin-top: 0.95rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-banner {
  position: relative;
  z-index: 1;
}
.hero-banner img {
  width: 100%;
  display: block;
  max-width: 760px;
  margin-left: auto;
  object-fit: contain;
}
@media (max-width: 979px) {
  .hero-banner {
    order: -1;
  }
}
.animated-words {
  display: inline-grid;
  vertical-align: bottom;
  color: var(--blue-600);
  min-width: 9ch;
}
.animated-words > span {
  grid-area: 1 / 1;
  opacity: 0;
  animation: swapWords 10s infinite;
}
.animated-words > span:nth-child(2) { animation-delay: 2.5s; }
.animated-words > span:nth-child(3) { animation-delay: 5s; }
.animated-words > span:nth-child(4) { animation-delay: 7.5s; }
.hero-features-strip.section {
  padding-top: clamp(3.25rem, 8vw, 5.5rem);
  padding-bottom: clamp(2.5rem, 4vw, 3.75rem);
  background: #fff;
}
.hero-strip {
  margin-top: 0;
  display: grid;
  gap: 1rem;
}
.hero-strip-card {
  border-radius: 16px;
  padding: 1.35rem 1.1rem 1.25rem;
  border: 1px solid rgba(219, 229, 255, 0.95);
  background: #fff;
  box-shadow:
    0 1px 2px rgba(16, 24, 40, 0.04),
    0 8px 22px rgba(54, 65, 245, 0.07);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  justify-items: center;
  text-align: center;
  height: 100%;
  transform: translateY(10px);
  opacity: 0;
  animation: hero-strip-in 0.7s ease forwards;
}
.hero-strip-card:nth-child(2) { animation-delay: 0.08s; }
.hero-strip-card:nth-child(3) { animation-delay: 0.16s; }
.hero-strip-card:nth-child(4) { animation-delay: 0.24s; }
.hero-strip-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--blue-600), var(--blue-500));
  box-shadow: 0 2px 10px rgba(70, 95, 255, 0.28);
  flex-shrink: 0;
}
.hero-strip-icon svg {
  width: 2rem;
  height: 2rem;
  display: block;
}
.hero-strip-card h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  line-height: 1.32;
}
.hero-strip-card p {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.875rem;
  line-height: 1.55;
}

.section-head { margin-bottom: 1.6rem; }
.section-head p { color: var(--gray-500); max-width: 72ch; font-size: 1.02rem; }
.section-head.center { text-align: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }
.split-grid {
  display: grid;
  gap: 1rem;
}
.bullet-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-top: 0.75rem;
}
.bullet-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--gray-700);
}
.bullet-list li::before {
  content: "•";
  color: var(--blue-500);
  position: absolute;
  left: 0;
}
.pain-card:not(.trust-compare-card) { border-color: #ffd8d8; }
.solution-card:not(.trust-compare-card) { border-color: #cde7d8; }

/* Trust section: old way vs solution — minimal, on-brand */
#trust-strip .trust-solution-grid.trust-compare {
  margin-top: 1.5rem;
  gap: 1.5rem;
}
#trust-strip .trust-compare-card {
  position: relative;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e4e9f2;
  box-shadow: 0 10px 36px rgba(16, 24, 40, 0.08);
}
#trust-strip .trust-compare-card:hover {
  border-color: #d0d5dd;
  box-shadow: 0 14px 42px rgba(16, 24, 40, 0.1);
}
#trust-strip .trust-compare-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
}
#trust-strip .trust-compare-card h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--gray-900);
}
#trust-strip .trust-compare-card--solution {
  border: 2px solid var(--blue-500);
  box-shadow: 0 14px 44px rgba(70, 95, 255, 0.14);
  padding-top: 2rem;
}
#trust-strip .trust-compare-card--solution:hover {
  border-color: var(--blue-600);
  box-shadow: 0 16px 48px rgba(70, 95, 255, 0.18);
}
#trust-strip .trust-compare-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.38rem 0.95rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #1a237e, var(--blue-600));
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(54, 65, 245, 0.4);
  white-space: nowrap;
}
#trust-strip .trust-compare-lead {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--gray-500);
}
#trust-strip .trust-compare-card .bullet-list {
  gap: 0.55rem;
  margin-top: 0;
}

.pillars-grid, .components-grid, .benefits-list, .trust-grid, .footer-grid, .grid-two {
  display: grid;
  gap: 0.9rem;
}

.card {
  border: 1px solid #dbe5ff;
  border-radius: 16px;
  background: #fff;
  padding: 1.15rem;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(16, 24, 40, 0.1);
  border-color: #c9d9ff;
}
.card p { color: var(--gray-500); margin-top: 0.4rem; }
.inline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  margin-right: 0.2rem;
  border-radius: 999px;
  background: #e7efff;
  border: 1px solid #d7e5ff;
  color: var(--blue-600);
}
.inline-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
}
#trust-strip .pillars-grid {
  grid-template-columns: 1fr;
}
#trust-strip {
  margin-top: 0;
  background-image: url("../images/trust-strip-bg-left.png");
  background-repeat: no-repeat;
  background-position: left 6px top 92px;
  background-size: 58% auto;
}
#trust-strip .card {
  padding: 0.95rem 1rem;
}
#trust-strip .trust-compare-card {
  padding: 1.15rem 1.1rem 1.2rem;
}
#trust-strip .trust-compare-card--solution {
  padding-top: 2rem;
}
#trust-strip .card h3 {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1rem;
}
#core-features .highlight-card,
#why-lrwale .highlight-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}
#core-features .highlights-grid {
  grid-template-columns: 1fr;
}
#core-features {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  background-image: url("../images/core-features-bg-right.png");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: min(78%, 860px) auto;
}
#multi-company .card,
#finance-control .card {
  border-left: 4px solid var(--blue-500);
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.highlight-card {
  border: 1px solid #d8e3ff;
  border-radius: 16px;
  padding: 1.15rem;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(16, 24, 40, 0.12);
}
.highlight-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 0.7rem;
  background: #fff;
  border: 1px solid var(--blue-100);
  color: var(--blue-600);
}
.highlight-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  display: block;
}
.highlight-card h3 { margin-bottom: 0.35rem; }
.highlight-card p { color: var(--gray-600, #475467); }
.highlight-card.cta-dark {
  background: #fff;
  color: var(--gray-900);
}
.highlight-card.cta-dark p { color: var(--gray-500); margin-bottom: 0.8rem; }

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.showcase-card {
  border: 1px solid #d8e3ff;
  border-radius: 16px;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.07);
  max-width: 860px;
  width: 100%;
}
.showcase-card.stagger-left {
  justify-self: start;
}
.showcase-card.stagger-right {
  justify-self: end;
}
.showcase-header {
  display: block;
  align-items: start;
  margin-bottom: 0;
}
.showcase-badge {
  display: none;
}
.showcase-header p { color: var(--gray-500); margin-top: 0.25rem; }

#flow.section-flow {
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: #e2e9f2;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52) 0%, rgba(248, 250, 255, 0.46) 45%, rgba(255, 255, 255, 0.5) 100%),
    url("../images/how-it-works-section-bg.png");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
}
.flow-section-head {
  margin-bottom: 2rem;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}
#flow .flow-section-head h2 {
  color: var(--blue-600);
  font-size: clamp(2rem, 4.8vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}
#flow .flow-section-head p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--gray-500);
}
.flow-diagram {
  display: grid;
  max-width: 1240px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(300px, min(52vw, 560px)) minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 1.25rem;
  row-gap: 1.75rem;
  align-items: stretch;
}
.flow-diagram > :nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.flow-diagram > :nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}
.flow-diagram > :nth-child(3) {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: center;
}
.flow-diagram > :nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}
.flow-diagram > :nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}
.flow-diagram > :nth-child(6) {
  grid-column: 1 / -1;
  grid-row: 3;
  justify-self: center;
}
@media (min-width: 900px) {
  .flow-diagram > :nth-child(4),
  .flow-diagram > :nth-child(5) {
    margin-top: 2.25rem;
  }
  .flow-diagram > :nth-child(6) {
    margin-top: -1rem;
  }
}
.flow-diagram-card {
  --flow-card-bg: linear-gradient(165deg, #ffffff 0%, #f7f9ff 42%, #ffffff 100%);
  --flow-card-border: rgba(54, 65, 245, 0.12);
  --flow-card-shadow:
    0 1px 2px rgba(16, 24, 40, 0.04),
    0 4px 14px rgba(16, 24, 40, 0.05);
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 17.75rem;
  min-height: 14.5rem;
  justify-self: center;
  overflow: visible;
  padding: 1.3rem 1.1rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--flow-card-border);
  background: var(--flow-card-bg);
  box-shadow: var(--flow-card-shadow);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
  justify-content: flex-start;
  transition:
    transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.28s ease,
    border-color 0.22s ease;
}
.flow-diagram-card:hover {
  --flow-card-border: rgba(54, 65, 245, 0.2);
  --flow-card-shadow:
    0 2px 4px rgba(16, 24, 40, 0.05),
    0 10px 22px rgba(16, 24, 40, 0.08);
  transform: translateY(-4px);
}
.flow-diagram-card--bottom {
  max-width: min(21rem, 100%);
}
.flow-step-badge {
  align-self: center;
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #1e2b7a, var(--blue-600));
  padding: 0.34rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(54, 65, 245, 0.28);
}
.flow-diagram-card .flow-step-badge {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 2;
  transform: translate(-50%, -50%);
  align-self: unset;
  white-space: nowrap;
}
.flow-diagram-card > img {
  display: block;
  flex-shrink: 0;
  width: 100%;
  height: 8.5rem;
  max-width: 100%;
  margin: 0 auto 0.3rem;
  object-fit: contain;
  object-position: center;
}
/* Steps 3 & 4: larger artwork only — same layout slot as 1 & 2 (scale, not taller box) */
.flow-diagram > :nth-child(4) > img,
.flow-diagram > :nth-child(5) > img {
  transform: scale(1.26);
  transform-origin: center center;
}
.flow-diagram-card h3 {
  font-size: 0.98rem;
  margin: 0;
  color: var(--blue-600);
  font-weight: 800;
  line-height: 1.3;
  flex-shrink: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.flow-step-tagline {
  margin: 0;
  font-size: 0.84rem;
  color: var(--gray-700);
  line-height: 1.4;
  flex-shrink: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.flow-phone-img {
  display: block;
  width: 100%;
  max-width: min(100%, 620px);
  height: auto;
  max-height: min(72vh, 680px);
  object-fit: contain;
}
@media (max-width: 899px) {
  .flow-diagram {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: min(22rem, 100%);
    row-gap: 1.35rem;
    column-gap: 0;
  }
  .flow-diagram > :nth-child(n) {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
  }
  .flow-diagram-card {
    max-width: none;
    min-height: auto;
  }
  .flow-diagram-card--bottom {
    max-width: none;
  }
  .flow-diagram-card > img {
    height: 7.25rem;
  }
  .flow-diagram > :nth-child(4) > img,
  .flow-diagram > :nth-child(5) > img {
    transform: scale(1.22);
  }
}

.flow-steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
}
.flow-step-card {
  position: relative;
  border: 1px solid #d8e4ff;
  border-radius: 14px;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.08);
  transform: translateY(10px);
  opacity: 0;
  animation: flowCardIn 0.6s ease forwards;
}
.flow-step-card:nth-child(2) { animation-delay: 0.08s; }
.flow-step-card:nth-child(3) { animation-delay: 0.16s; }
.flow-step-card:nth-child(4) { animation-delay: 0.24s; }
.flow-step-card:nth-child(5) { animation-delay: 0.32s; }
.flow-step-card:nth-child(6) { animation-delay: 0.4s; }
.flow-step-card h3 {
  margin: 0.2rem 0 0.35rem;
  font-size: 1.03rem;
}
.flow-step-card p {
  color: var(--gray-500);
  margin: 0;
  font-size: 0.92rem;
}
.flow-arrow {
  position: absolute;
  right: -0.72rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  background: var(--blue-500);
  box-shadow: 0 6px 16px rgba(70, 95, 255, 0.35);
  animation: flowArrowPulse 1.2s ease-in-out infinite;
}
.flow-arrow-down {
  right: 50%;
  top: auto;
  bottom: -0.72rem;
  transform: translateX(50%);
  animation: flowArrowPulseDown 1.2s ease-in-out infinite;
}
.flow-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: #fff;
  font-size: 1rem;
}

.benefits-list .card { border-left: 4px solid var(--green-500); }

.demo-form { max-width: 840px; }
.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}
.final-cta-head {
  margin: 0;
  padding-top: 0.35rem;
  text-align: left;
  max-width: 38rem;
}
.final-cta-head h2 {
  font-size: clamp(1.45rem, 3.2vw, 2.05rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--gray-900);
  margin-bottom: 0.55rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}
.final-cta-sub {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--gray-500);
  max-width: 46ch;
}
.final-cta-lead {
  margin: 0.65rem 0 0;
  font-weight: 600;
  color: var(--blue-600);
}
.final-cta-form.demo-form {
  max-width: none;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}
.final-cta-form .demo-form-fields {
  padding: 1.35rem 1.35rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(219, 229, 255, 0.95);
  background: #fff;
  box-shadow:
    0 1px 2px rgba(16, 24, 40, 0.04),
    0 12px 32px rgba(54, 65, 245, 0.08);
}
.final-cta-form .demo-form-row {
  margin-bottom: 0.85rem;
}
.final-cta-form .demo-form-row:last-of-type {
  margin-bottom: 0.95rem;
}
.final-cta-form .field-label {
  gap: 0.4rem;
}
.final-cta-form .field-label input,
.final-cta-form .field-label textarea {
  min-height: 2.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.final-cta-form .field-label textarea {
  min-height: 6.5rem;
  resize: vertical;
}
.final-cta-form .field-label--full {
  margin-top: 0.25rem;
}
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
  align-items: center;
}
.final-cta-submit {
  min-width: 11rem;
}
@media (max-width: 899px) {
  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .final-cta-head {
    text-align: center;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .final-cta-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .final-cta-submit {
    width: 100%;
    min-width: 0;
  }
  #final-cta.final-cta-section {
    min-height: auto;
    padding-top: clamp(3.5rem, 8vw, 5rem) !important;
    padding-bottom: clamp(4rem, 9vw, 5.5rem) !important;
    background-size: 100% 100%, 100% auto;
    background-position: center, center bottom;
  }
}
@media (max-width: 599px) {
  input,
  textarea,
  select {
    font-size: 16px;
  }
}
label { display: grid; gap: 0.35rem; font-weight: 700; font-size: 0.94rem; color: var(--gray-700); }
input, textarea {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font: inherit;
}
input:focus, textarea:focus {
  outline: 2px solid rgba(70, 95, 255, 0.2);
  border-color: var(--blue-500);
}
.form-message { margin-top: 0.55rem; color: var(--blue-700); font-weight: 600; }

.field-error {
  margin: 0.2rem 0 0;
  min-height: 1.2em;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: #c62828;
}
.field-label.field-label--mobile {
  align-content: start;
}

.field-mobile-wrap {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}
.field-mobile-prefix {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 0.65rem 0.5rem 0.65rem 0.75rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
  color: var(--gray-800);
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--gray-200);
  border-right: none;
  border-radius: 12px 0 0 12px;
  user-select: none;
}
.final-cta-form .field-mobile-wrap .field-mobile-prefix {
  min-height: 2.75rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.field-mobile-local {
  flex: 1;
  min-width: 0;
  border-radius: 0 12px 12px 0 !important;
  border-left: none !important;
}
.final-cta-form .field-mobile-wrap:focus-within .field-mobile-prefix {
  border-color: var(--blue-500);
}
.final-cta-form .field-mobile-wrap:focus-within .field-mobile-local {
  border-color: var(--blue-500);
}
.field-mobile-wrap:has(.field-mobile-local.field-input--invalid) .field-mobile-prefix {
  border-color: #c62828;
}
.final-cta-form .field-mobile-wrap:focus-within:has(.field-mobile-local.field-input--invalid) .field-mobile-prefix {
  border-color: #c62828;
}

.final-cta-form .field-label input.field-input--invalid,
input.field-input--invalid {
  border-color: #c62828;
}
.final-cta-form .field-label input.field-input--invalid:focus,
input.field-input--invalid:focus {
  border-color: #c62828;
  outline-color: rgba(198, 40, 40, 0.25);
}

.pricing-section {
  background: #fff;
  border-top: 1px solid var(--gray-200);
}
.pricing-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.75rem;
}
.pricing-brand {
  justify-content: center;
  margin-bottom: 1.25rem;
}
.pricing-title {
  font-size: clamp(1.55rem, 3.8vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--gray-900);
  margin: 0 0 0.65rem;
}
.pricing-title-accent {
  color: var(--blue-600);
}
.pricing-sub {
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--gray-500);
  max-width: 36ch;
}
.pricing-inclusive {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 1.35rem 0 0;
  padding: 0.55rem 1.15rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--blue-700);
  background: linear-gradient(180deg, #eef4ff 0%, #e4edff 100%);
  border: 1px solid #d0defb;
  border-radius: 999px;
}
.pricing-inclusive-icon {
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: var(--blue-500);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}
.pricing-card {
  position: relative;
  padding: 1.65rem 1.5rem 1.5rem;
  border-radius: 20px;
  border: 1px solid #e4e9f2;
  background: #fff;
  box-shadow: 0 10px 36px rgba(16, 24, 40, 0.08);
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  border: 2px solid var(--blue-500);
  padding-top: 2.35rem;
  box-shadow: 0 14px 44px rgba(70, 95, 255, 0.14);
}
.pricing-card--trial {
  border: 2px solid var(--green-500);
  padding-top: 2.35rem;
  box-shadow: 0 14px 40px rgba(18, 183, 106, 0.12);
}
.pricing-trial-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.38rem 0.95rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #047857, var(--green-500));
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(18, 183, 106, 0.35);
  white-space: nowrap;
}
.pricing-trial-icon {
  font-size: 0.85rem;
}
.pricing-amount--free {
  color: #047857;
}
.pricing-popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.38rem 0.95rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #1a237e, var(--blue-600));
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(54, 65, 245, 0.4);
  white-space: nowrap;
}
.pricing-popular-icon {
  font-size: 0.85rem;
}
.pricing-plan-name {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}
.pricing-plan-tagline {
  margin: 0.35rem 0 1rem;
  font-size: 0.92rem;
  color: var(--gray-500);
}
.pricing-price-block {
  margin-bottom: 0.25rem;
}
.pricing-price-block--yearly {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem 1rem;
}
.pricing-price {
  margin: 0;
  line-height: 1.1;
}
.pricing-amount {
  font-size: clamp(2.1rem, 4.5vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
}
.pricing-amount--accent {
  color: var(--blue-600);
}
.pricing-period {
  margin-left: 0.2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-500);
}
.pricing-save-pill {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 10px;
  align-self: center;
}
.pricing-features-label {
  margin: 1.15rem 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-700);
}
.pricing-features {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  flex: 1;
}
.pricing-features li {
  position: relative;
  padding-left: 1.45rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--gray-700);
}
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.08rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--green-500);
}
.pricing-card-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  padding-top: 0.25rem;
}
.pricing-card .btn-outline.pricing-card-cta {
  border-color: var(--blue-500);
  color: var(--blue-600);
  font-weight: 700;
}
.pricing-card .btn-outline.pricing-card-cta:hover {
  background: #f5f8ff;
  border-color: var(--blue-600);
}
.pricing-card-note {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-500);
}
.pricing-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  max-width: 36rem;
  margin: 2.5rem auto 0;
  padding: 0.75rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
}
.pricing-trust-icon {
  color: var(--green-500);
  font-weight: 800;
}
.pricing-footnote {
  margin: 1.25rem auto 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--gray-500);
  max-width: 32rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
.blog-idea-card {
  padding: 1rem 1.1rem;
}
.blog-idea-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}
.resources-cta-wrap {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.seo-keyword-chips {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.seo-keyword-chip {
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  background: #fff;
}

@media (min-width: 760px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1023px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: min(22rem, 100%);
  }
  /* Stack: Most Popular (yearly) → Free trial → Monthly */
  .pricing-card--featured {
    order: -2;
  }
  .pricing-card--trial {
    order: -1;
  }
}

#final-cta.final-cta-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--gray-200);
  min-height: min(88vh, 920px);
  padding-top: clamp(5.25rem, 10vw, 7.5rem) !important;
  padding-bottom: clamp(5.75rem, 11vw, 8.25rem) !important;
  background-color: #eef1f7;
  background-image:
    linear-gradient(
      100deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.93) 38%,
      rgba(255, 255, 255, 0.72) 52%,
      rgba(248, 250, 255, 0.4) 72%,
      rgba(240, 244, 252, 0.2) 100%
    ),
    url("../images/cta-transport-sketch.png");
  background-size: 100% 100%, 100% auto;
  background-position: center, center bottom;
  background-repeat: no-repeat;
}
#final-cta .final-cta-head h2 {
  color: var(--gray-900);
}
#final-cta .final-cta-sub {
  color: var(--gray-500);
}
#final-cta .final-cta-lead {
  color: var(--blue-600);
}
#final-cta .demo-form.final-cta-form {
  border: none;
  background: transparent;
  box-shadow: none;
}
#final-cta label {
  color: var(--gray-700);
}
#final-cta input,
#final-cta textarea {
  border-color: var(--gray-200);
  background: #fff;
}
#final-cta .btn-outline {
  border-color: var(--gray-200);
  color: var(--gray-900);
  background: #fff;
}
#final-cta .btn-outline:hover {
  background: #f9fbff;
}

.footer {
  position: relative;
  overflow-x: hidden;
  background: #fff;
  color: var(--gray-900);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--gray-200);
  overflow: hidden;
}
.footer-grid {
  gap: 1.25rem;
}
.footer-watermark {
  position: absolute;
  left: 50%;
  top: 77%;
  z-index: 0;
  transform: translate(-50%, -50%);
  font-size: clamp(4.75rem, 34vw, 22rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  color: rgba(54, 65, 245, 0.045);
}
.footer .container,
.footer .container-custom,
.footer > .footer-bottom {
  position: relative;
  z-index: 1;
}
.footer h3,
.footer h4 {
  margin-bottom: 0.45rem;
  color: var(--gray-900);
  font-weight: 700;
}
.footer p,
.footer a {
  color: var(--gray-500);
  text-decoration: none;
}
.footer ul a {
  font-weight: 600;
  color: var(--gray-700);
}
.footer ul a:hover {
  color: var(--blue-600);
}
.footer a:hover {
  color: var(--blue-600);
}
.footer ul { list-style: none; display: grid; gap: 0.35rem; }
.footer ul li {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gray-700);
}
.footer-bottom {
  width: 100%;
  max-width: none;
  margin: 2rem 0 0;
  padding: 1rem clamp(1rem, 4vw, 2.5rem) 0;
  box-sizing: border-box;
  border-top: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem 1rem;
  font-size: 0.875rem;
}

.footer .footer-copyright {
  margin: 0;
  color: var(--gray-500);
  text-align: left;
}

.footer .footer-powered {
  margin: 0;
  color: var(--gray-500);
  text-align: center;
}

.footer .footer-powered a {
  font-weight: 600;
  text-decoration: none;
  color: var(--gray-700);
}

.footer .footer-powered a:hover {
  color: var(--blue-600);
}

.footer-bottom-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem 1.1rem;
  justify-self: end;
}

.footer-bottom-nav a {
  color: var(--gray-700);
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom-nav a:hover {
  color: var(--blue-600);
}

.footer-bottom .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  justify-self: end;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .footer .footer-copyright {
    text-align: center;
  }
  .footer-bottom-nav {
    justify-self: center;
    justify-content: center;
  }
  .footer-bottom .footer-legal {
    justify-self: center;
    justify-content: center;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
}
.footer-logo-link {
  line-height: 0;
}
.footer-logo-img {
  display: block;
  height: clamp(1.35rem, 3.2vw, 1.6rem);
  width: auto;
}
.footer-brand .footer-logo-img {
  height: clamp(1.65rem, 4vw, 2.05rem);
}
.footer-brand-tagline {
  margin: 0;
  max-width: none;
  line-height: 1.55;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--blue-100);
  background: #fff;
  color: var(--blue-600);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.footer .social-links a {
  color: var(--blue-600);
  border-color: rgba(54, 65, 245, 0.22);
  background: rgba(221, 233, 255, 0.45);
}
.social-links a:hover {
  color: var(--blue-700);
  transform: translateY(-2px);
  background: var(--blue-100);
  border-color: rgba(54, 65, 245, 0.35);
  box-shadow: 0 4px 14px rgba(42, 49, 216, 0.12);
}
.footer .social-links a:hover {
  color: var(--blue-700);
  background: var(--blue-100);
  border-color: rgba(54, 65, 245, 0.4);
}
.social-links svg.social-icon,
.social-links svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
  flex-shrink: 0;
}
.footer .social-links svg.social-icon,
.footer .social-links svg {
  fill: currentColor;
}

@keyframes hero-strip-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes flowCardIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes flowArrowPulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
  50% { transform: translateY(-50%) scale(1.08); opacity: 0.82; }
}
@keyframes flowArrowPulseDown {
  0%, 100% { transform: translateX(50%) scale(1); opacity: 1; }
  50% { transform: translateX(50%) scale(1.08); opacity: 0.82; }
}
@keyframes swapWords {
  0%, 16% { opacity: 0; transform: translateY(8px); }
  20%, 40% { opacity: 1; transform: translateY(0); }
  44%, 100% { opacity: 0; transform: translateY(-8px); }
}
@keyframes heroTyping {
  0%, 10% { max-width: 0; }
  45%, 70% { max-width: 13.8em; }
  100% { max-width: 0; }
}
@keyframes heroCaret {
  0%, 49% { border-right-color: var(--blue-600); }
  50%, 100% { border-right-color: transparent; }
}
@keyframes bgFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -22px, 0) scale(1.05); }
}
@keyframes heroAuraLoop {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -18px, 0) scale(1.04); }
}
@keyframes heroAuraLoopAlt {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, 14px, 0) scale(1.03); }
}

@media (min-width: 760px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.05rem;
    align-items: stretch;
  }
  .flow-steps { grid-template-columns: repeat(3, 1fr); }
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-list { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: repeat(3, 1fr); }
  #core-features .highlights-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .showcase-grid { grid-template-columns: 1fr; }
  .split-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-two { grid-template-columns: repeat(2, 1fr); }
  .footer-grid {
    grid-template-columns: minmax(15rem, 1.75fr) repeat(3, minmax(0, 1fr));
    gap: 1.5rem 2rem;
    align-items: start;
  }
}

@media (max-width: 759px) {
  .flow-arrow {
    right: 50%;
    top: auto;
    bottom: -0.72rem;
    transform: translateX(50%);
  }
  .flow-arrow-down { display: none; }
  .flow-step-card:last-child .flow-arrow { display: none; }
}

@media (min-width: 760px) {
  .flow-step-card:nth-child(3) .flow-arrow:not(.flow-arrow-down) { display: none; }
  .flow-step-card:nth-child(6) .flow-arrow { display: none; }
}

@media (min-width: 980px) {
  .hero {
    padding-top: 3.8rem;
    padding-bottom: 2.5rem;
    background-image: url("../images/hero-right-composite.png");
    background-repeat: no-repeat;
    background-position: right -90px top 8px;
    background-size: 64% auto;
  }
  .hero-layout {
    min-height: 560px;
    padding-right: 40%;
  }
  .hero-copy {
    max-width: 500px;
    margin-left: -3.4rem;
  }
  .hero-banner {
    display: none;
  }
  .desktop-nav { display: flex; }
  .mobile-menu-toggle, .mobile-menu { display: none; }
  .components-grid { grid-template-columns: repeat(3, 1fr); }
  #core-features .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 1.4rem;
    align-items: start;
  }
  #core-features .section-head,
  #core-features .highlights-grid {
    grid-column: 1;
  }
  #core-features {
    background-position: right 20px center;
    background-size: min(74%, 920px) auto;
    min-height: min(82vh, 780px);
  }
  #trust-strip .pillars-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  #trust-strip {
    background-position: left 12px top 78px;
    background-size: 54% auto;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 3.25rem 0;
  }
  .hero-features-strip.section {
    padding-top: clamp(2.5rem, 7vw, 4rem);
    padding-bottom: clamp(2rem, 5vw, 3rem);
  }
  .hero {
    padding-top: 2.35rem;
    padding-bottom: 1.5rem;
  }
  .hero-focus-text {
    max-width: 100%;
    font-size: clamp(1.18rem, 3.65vw, 1.82rem);
    line-height: 1.22;
    text-wrap: balance;
  }
  .hero-focus-text .typing-text {
    white-space: normal;
    display: inline;
    width: auto;
    max-width: none !important;
    border-right: none !important;
    animation: none !important;
  }
  #trust-strip {
    background-position: left top;
    background-size: min(92vw, 380px) auto;
  }
  #core-features {
    background-position: right -24px center;
    background-size: min(110vw, 480px) auto;
  }
  #flow.section-flow {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
  .flow-phone-img {
    max-height: min(52vh, 440px);
  }
  #final-cta.final-cta-section {
    min-height: auto;
  }
  .footer {
    padding-top: 3.25rem;
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  }
  .pricing-inclusive {
    flex-wrap: wrap;
    text-align: center;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
  .btn {
    min-height: 44px;
  }
  .mobile-menu-toggle {
    min-width: 44px;
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .flow-step-card, .hero-strip-card { animation: none; opacity: 1; transform: none; }
  .flow-diagram-card { transition: none; }
  .flow-diagram-card:hover { transform: none; }
  .flow-diagram > :nth-child(4) > img,
  .flow-diagram > :nth-child(5) > img {
    transform: none;
  }
  .flow-arrow { animation: none; }
  body::before, body::after { animation: none; }
  .hero::before, .hero::after { animation: none; }
  .hero-focus-text .typing-text {
    white-space: normal;
    max-width: none !important;
    border-right: none !important;
    animation: none !important;
  }
}
