:root {
  --ink: #102b2c;
  --ink-soft: #496363;
  --green: #0f7a67;
  --green-dark: #0a5c50;
  --mint: #dff3eb;
  --mint-light: #f2faf6;
  --cream: #fbfaf5;
  --paper: #ffffff;
  --line: #dce7e2;
  --navy: #102f31;
  --amber: #f2b84b;
  --shadow: 0 24px 70px rgba(19, 65, 60, 0.12);
  --radius: 22px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

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

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 7.6vw, 4.7rem);
  font-weight: 750;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 5vw, 3.35rem);
  font-weight: 740;
}

h3 {
  font-size: 1.25rem;
}

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

.section {
  padding: 88px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--green-dark);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #26ad7f;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(38, 173, 127, 0.13);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button:focus-visible,
.main-nav a:focus-visible,
.text-link:focus-visible,
.use-case-card a:focus-visible,
.faq-item button:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.button-primary {
  color: white;
  background: var(--green);
  box-shadow: 0 10px 28px rgba(15, 122, 103, 0.22);
}

.button-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 13px 30px rgba(15, 122, 103, 0.28);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: #bdcfca;
}

.button-secondary:hover {
  background: white;
}

.button-small {
  min-height: 43px;
  padding: 11px 17px;
  border-radius: 9px;
  font-size: 0.9rem;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(197, 216, 208, 0.75);
  background: rgba(251, 250, 245, 0.9);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: white;
  background: var(--green);
  border-radius: 9px;
}

.brand-mark span {
  width: 3px;
  height: 11px;
  background: currentColor;
  border-radius: 2px;
}

.brand-mark span:nth-child(2) {
  height: 17px;
}

.brand-mark span:nth-child(3) {
  height: 8px;
}

.menu-toggle {
  position: relative;
  z-index: 3;
  display: grid;
  width: 43px;
  height: 43px;
  padding: 10px;
  place-content: center;
  gap: 5px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  inset: 72px 0 auto;
  display: flex;
  padding: 24px 20px 30px;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 30px rgba(16, 43, 44, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.main-nav > a:not(.button) {
  padding: 11px 10px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-cta {
  margin-top: 8px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 86px;
  background: linear-gradient(145deg, #fbfaf5 40%, #eef8f3 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 55px;
  align-items: center;
}

.hero-copy {
  position: relative;
}

.hero-subtitle {
  max-width: 670px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2.5vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-trust {
  display: flex;
  margin-top: 26px;
  flex-direction: column;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-trust svg {
  width: 18px;
  height: 18px;
  padding: 2px;
  color: var(--green);
  background: var(--mint);
  border-radius: 50%;
  stroke-width: 2.5;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-orb-one {
  top: 80px;
  right: -130px;
  width: 440px;
  height: 440px;
  background: rgba(180, 229, 209, 0.3);
}

.hero-orb-two {
  bottom: -130px;
  left: 37%;
  width: 280px;
  height: 280px;
  background: rgba(248, 219, 157, 0.2);
}

.call-demo {
  position: relative;
  width: 100%;
  max-width: 485px;
  margin-inline: auto;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid white;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.call-demo::before,
.call-demo::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.call-demo::before {
  inset: -13px 25px 13px -13px;
  background: rgba(196, 232, 217, 0.55);
  border-radius: 30px;
}

.call-demo::after {
  right: -24px;
  bottom: -22px;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(#89bca9 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.6;
}

.call-demo-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid #e9efec;
  gap: 12px;
}

.call-avatar {
  display: grid;
  width: 43px;
  height: 43px;
  color: white;
  background: var(--green);
  border-radius: 50%;
  place-items: center;
}

.call-avatar svg {
  width: 21px;
}

.call-label,
.caller {
  margin: 0;
  line-height: 1.25;
}

.call-label {
  color: var(--green);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.caller {
  margin-top: 4px;
  font-weight: 750;
}

.call-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
}

.call-timer span {
  width: 7px;
  height: 7px;
  background: #2bb487;
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}

.conversation {
  display: flex;
  padding: 22px 0;
  flex-direction: column;
  gap: 12px;
}

.message {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 13px;
  color: #365454;
  font-size: 0.83rem;
  line-height: 1.5;
}

.ai-message {
  align-self: flex-start;
  background: #eef6f2;
  border-bottom-left-radius: 4px;
}

.client-message {
  align-self: flex-end;
  background: #f7f0df;
  border-bottom-right-radius: 4px;
}

.message-name {
  display: block;
  margin-bottom: 3px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
}

.active-message {
  position: relative;
  padding-bottom: 26px;
}

.typing-wave {
  position: absolute;
  bottom: 9px;
  left: 14px;
  display: flex;
  height: 9px;
  align-items: center;
  gap: 2px;
}

.typing-wave i {
  width: 2px;
  height: 4px;
  background: #46a78b;
  border-radius: 2px;
  animation: wave 900ms ease-in-out infinite;
}

.typing-wave i:nth-child(2),
.typing-wave i:nth-child(4) { animation-delay: 150ms; }
.typing-wave i:nth-child(3) { animation-delay: 300ms; }

.call-result {
  display: flex;
  padding: 13px;
  align-items: center;
  gap: 11px;
  background: #f6faf8;
  border: 1px solid #dfebe6;
  border-radius: 12px;
}

.call-result svg {
  width: 31px;
  height: 31px;
  padding: 6px;
  color: var(--green);
  background: var(--mint);
  border-radius: 8px;
}

.call-result strong,
.call-result span {
  display: block;
}

.call-result strong {
  font-size: 0.77rem;
}

.call-result span {
  color: var(--ink-soft);
  font-size: 0.69rem;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 5px rgba(43, 180, 135, 0.15); }
}

@keyframes wave {
  50% { height: 9px; }
}

.section-heading {
  max-width: 720px;
  margin-bottom: 45px;
}

.section-heading > p:last-child,
.section-intro {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

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

.problem-section {
  background: white;
}

.problem-grid {
  display: grid;
  gap: 15px;
}

.problem-card {
  position: relative;
  min-height: 280px;
  padding: 26px;
  background: var(--cream);
  border: 1px solid #ebece6;
  border-radius: var(--radius);
}

.featured-problem {
  background: var(--mint-light);
  border-color: #dcefe7;
}

.card-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #b4c1bc;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  border-radius: 13px;
  place-items: center;
}

.icon-box svg {
  width: 24px;
}

.icon-box.red { color: #ad4e4e; background: #fbe8e4; }
.icon-box.amber { color: #9a690b; background: #f9edcc; }
.icon-box.purple { color: #795995; background: #eee5f5; }

.problem-card h3 {
  margin-bottom: 11px;
}

.problem-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.solution-section {
  overflow: hidden;
  background: #f2f8f5;
}

.solution-grid {
  display: grid;
  gap: 65px;
  align-items: center;
}

.solution-visual {
  position: relative;
  display: grid;
  width: min(100%, 440px);
  height: 400px;
  margin-inline: auto;
  place-items: center;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(35, 130, 108, 0.17);
  border-radius: 50%;
}

.ring-one {
  width: 245px;
  height: 245px;
}

.ring-two {
  width: 355px;
  height: 355px;
  border-style: dashed;
}

.solution-phone {
  position: relative;
  z-index: 2;
  display: grid;
  width: 125px;
  height: 125px;
  color: white;
  background: var(--green);
  border: 14px solid white;
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(15, 122, 103, 0.24);
  place-items: center;
}

.solution-phone svg {
  width: 43px;
}

.phone-pulse {
  position: absolute;
  inset: -30px;
  border: 1px solid rgba(15, 122, 103, 0.2);
  border-radius: 50%;
}

.floating-tag {
  position: absolute;
  z-index: 3;
  display: flex;
  padding: 10px 13px;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  background: white;
  border: 1px solid #e0ebe6;
  border-radius: 10px;
  box-shadow: 0 13px 30px rgba(26, 82, 71, 0.1);
  font-size: 0.75rem;
  font-weight: 700;
}

.floating-tag span {
  display: grid;
  width: 21px;
  height: 21px;
  color: var(--green);
  background: var(--mint);
  border-radius: 50%;
  place-items: center;
}

.tag-one { top: 55px; left: 0; }
.tag-two { right: 0; bottom: 66px; }
.tag-three { bottom: 30px; left: 5px; }

.solution-copy h2 {
  max-width: 620px;
}

.feature-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  gap: 20px;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
}

.feature-check {
  display: grid;
  width: 27px;
  height: 27px;
  margin-top: 1px;
  color: var(--green);
  background: #d9efe7;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
  place-items: center;
}

.feature-list strong {
  display: block;
  margin-bottom: 4px;
}

.feature-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.use-cases {
  background: white;
}

.heading-row {
  max-width: none;
}

.heading-row > p {
  max-width: 430px;
}

.use-case-grid {
  display: grid;
  gap: 16px;
}

.use-case-card {
  display: flex;
  min-height: 345px;
  padding: 27px;
  flex-direction: column;
  border-radius: var(--radius);
  transition: transform 200ms ease;
}

.use-case-card:hover {
  transform: translateY(-4px);
}

.case-mint { background: #eaf6f0; }
.case-amber { background: #fbf2df; }
.case-blue { background: #e9f1f7; }
.case-violet { background: #f1ecf6; }

.case-icon {
  display: grid;
  width: 47px;
  height: 47px;
  margin-bottom: 29px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 13px;
  place-items: center;
}

.case-icon svg {
  width: 24px;
}

.case-image {
  display: block;
  width: 100%;
  height: 150px;
  margin-bottom: 25px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
}

.case-label {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.use-case-card h3 {
  margin-bottom: 10px;
  font-size: 1.38rem;
}

.use-case-card > p:not(.case-label) {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.use-case-card a {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 0.87rem;
  font-weight: 800;
}

.steps-section {
  color: white;
  background: var(--navy);
}

.light-heading .eyebrow {
  color: #76d2b9;
}

.light-heading > p:last-child {
  color: #b8ccca;
}

.steps-list {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  gap: 40px;
  list-style: none;
}

.steps-list li {
  position: relative;
  padding-left: 72px;
}

.step-number {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 42px;
  height: 42px;
  color: #8ed7c4;
  border: 1px solid #3f6867;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  place-items: center;
}

.step-icon {
  display: none;
}

.steps-list h3 {
  margin-bottom: 10px;
  color: white;
  font-size: 1.13rem;
}

.steps-list p {
  margin-bottom: 0;
  color: #b8ccca;
  font-size: 0.88rem;
}

.benefits-section {
  background: var(--cream);
}

.benefits-grid {
  display: grid;
  gap: 48px;
}

.benefits-copy > p:not(.eyebrow) {
  max-width: 480px;
  color: var(--ink-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-weight: 800;
}

.benefits-list {
  display: grid;
  gap: 13px;
}

.benefits-list article {
  display: grid;
  padding: 22px;
  align-items: center;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  background: white;
  border: 1px solid #e6ebe7;
  border-radius: 16px;
}

.benefit-value {
  color: var(--green);
  font-size: 1.72rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-align: center;
}

.benefits-list h3 {
  margin-bottom: 5px;
  font-size: 1.04rem;
}

.benefits-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.faq-section {
  background: white;
}

.faq-grid {
  display: grid;
  gap: 45px;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  width: 100%;
  padding: 23px 2px;
  align-items: center;
  color: var(--ink);
  background: none;
  border: 0;
  grid-template-columns: 1fr auto;
  gap: 20px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  border: 1px solid #bed1ca;
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  content: "";
  background: var(--green);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

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

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

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  max-width: 660px;
  margin: -8px 40px 23px 2px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.final-cta {
  padding: 30px 0 90px;
  background: white;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 55px 25px;
  color: white;
  background: var(--green);
  border-radius: 27px;
  text-align: center;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 735px;
  margin-inline: auto;
}

.cta-content .eyebrow {
  justify-content: center;
  color: #c9f1e5;
}

.cta-content h2 {
  color: white;
}

.cta-content > p:not(.eyebrow) {
  max-width: 630px;
  margin: 0 auto 27px;
  color: #d8eee8;
}

.button-light {
  color: var(--green-dark);
  background: white;
  box-shadow: 0 10px 28px rgba(0, 45, 36, 0.18);
}

.button-light:hover {
  background: #f5fffb;
}

.cta-content small {
  display: block;
  margin-top: 14px;
  color: #c8e5de;
}

.cta-rings,
.cta-rings::before,
.cta-rings::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.cta-rings {
  top: -160px;
  right: -100px;
  width: 440px;
  height: 440px;
}

.cta-rings::before {
  inset: 60px;
}

.cta-rings::after {
  inset: 130px;
  background: rgba(255, 255, 255, 0.04);
}

.site-footer {
  color: #bcd0ce;
  background: #0c292b;
}

.footer-main {
  display: grid;
  padding-top: 58px;
  padding-bottom: 45px;
  gap: 34px;
}

.footer-brand {
  color: white;
}

.footer-main > div:first-child p {
  max-width: 410px;
  margin: 17px 0 0;
  font-size: 0.88rem;
}

.footer-main nav {
  display: grid;
  gap: 10px;
  font-size: 0.88rem;
}

.footer-main nav a:hover,
.site-footer a:hover {
  color: white;
}

.footer-contact span,
.footer-contact a {
  display: block;
}

.footer-contact span {
  margin-bottom: 6px;
  color: #769593;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact a {
  color: white;
  font-weight: 750;
}

.footer-bottom {
  display: flex;
  padding-top: 20px;
  padding-bottom: 24px;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #244345;
  color: #718f8d;
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

@media (min-width: 600px) {
  .hero-actions,
  .hero-trust {
    flex-direction: row;
  }

  .problem-grid,
  .use-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
  }

  .heading-row > div {
    max-width: 660px;
  }

  .heading-row > div h2 {
    margin-bottom: 0;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 820px) {
  .section {
    padding: 118px 0;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav > a:not(.button) {
    padding: 8px 0;
  }

  .nav-cta {
    margin: 0 0 0 4px;
  }

  .hero {
    padding: 105px 0 115px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
    gap: 65px;
  }

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

  .solution-grid {
    grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
    gap: 85px;
  }

  .steps-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .steps-list::before {
    position: absolute;
    top: 51px;
    right: 11%;
    left: 11%;
    height: 1px;
    content: "";
    background: #355759;
  }

  .steps-list li {
    padding: 0;
    text-align: center;
  }

  .step-number {
    z-index: 2;
    top: -17px;
    left: 50%;
    width: 32px;
    height: 32px;
    background: var(--navy);
    transform: translateX(-50%);
  }

  .step-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 74px;
    height: 74px;
    margin: 16px auto 28px;
    color: #7bd2bc;
    background: #173b3d;
    border: 1px solid #31585a;
    border-radius: 19px;
    place-items: center;
  }

  .step-icon svg {
    width: 30px;
  }

  .benefits-grid,
  .faq-grid {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 100px;
  }

  .faq-intro {
    position: sticky;
    top: 120px;
    align-self: start;
  }

  .footer-main {
    grid-template-columns: 1.5fr 0.7fr 0.7fr;
  }
}

@media (min-width: 1050px) {
  .use-case-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .call-demo {
    transform: rotate(1deg);
  }

  .call-demo:hover {
    transform: rotate(0deg);
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero {
    padding-top: 58px;
  }

  .call-demo {
    padding: 17px;
  }

  .call-timer {
    font-size: 0.7rem;
  }

  .message {
    max-width: 94%;
    font-size: 0.78rem;
  }

  .solution-visual {
    height: 340px;
    transform: scale(0.88);
  }

  .benefits-list article {
    grid-template-columns: 60px 1fr;
    padding: 18px;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
