@font-face {
  font-family: "Vazirmatn";
  src: url("/assets/fonts/Vazirmatn-Regular.ttf") format("truetype");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #7bc043;
  --teal: #0fa383;
  --slate: #5c6b67;
  --mint: #cfead7;
  --amber: #f5b23d;
  --cloud: #f2f5f3;
  --ink: #182622;
  --paper: #fbfcfa;
  --white: #ffffff;
  --line: rgba(92, 107, 103, 0.18);
  --shadow: 0 24px 70px rgba(24, 38, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px 48px;
  background: rgba(251, 252, 250, 0.9);
  border-bottom: 1px solid rgba(92, 107, 103, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-wordmark {
  width: 92px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--slate);
  font-size: 0.94rem;
}

.nav-links a,
.nav-cta {
  transition: color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.nav-links a:hover,
.nav-cta:hover {
  color: var(--teal);
  transform: translateY(-1px);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid rgba(15, 163, 131, 0.35);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  padding: 128px 48px 104px;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(207, 234, 215, 0.45), rgba(251, 252, 250, 0) 44%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 74px 0 0;
  z-index: -1;
  opacity: 0.9;
  background:
    linear-gradient(90deg, rgba(92, 107, 103, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(92, 107, 103, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.74) 52%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: 54px;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
}

.hero-content {
  max-width: 760px;
}

.hero-logo {
  width: 212px;
  height: auto;
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 800;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 3.75rem;
  line-height: 1.25;
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.18rem;
  line-height: 1.45;
  font-weight: 800;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.55;
  font-weight: 800;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 34px;
  color: var(--slate);
  font-size: 1.13rem;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 25px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.btn svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  flex: 0 0 auto;
}

.btn-primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 16px 36px rgba(15, 163, 131, 0.24);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(92, 107, 103, 0.2);
  box-shadow: 0 16px 36px rgba(24, 38, 34, 0.08);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(15, 163, 131, 0.2);
  border-radius: 999px;
  color: var(--slate);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.hero-showcase {
  position: relative;
  min-height: 548px;
  perspective: 1200px;
}

.product-board {
  position: absolute;
  top: 36px;
  left: 0;
  right: 72px;
  padding: 24px;
  border: 1px solid rgba(92, 107, 103, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  transform: rotateY(-8deg) rotateX(3deg);
  animation: float-board 6s ease-in-out infinite;
}

.board-header,
.expert-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--slate);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(123, 192, 67, 0.16);
}

.meal-card,
.meal-grid > div {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.meal-card {
  margin-top: 22px;
  padding: 22px;
}

.meal-card.active {
  background: linear-gradient(135deg, rgba(207, 234, 215, 0.56), #fff);
}

.meal-card span,
.meal-grid span,
.expert-note span,
.expert-status span {
  display: block;
  color: var(--slate);
  font-size: 0.86rem;
}

.meal-card strong,
.meal-grid strong,
.expert-status strong {
  display: block;
  margin: 4px 0;
  color: var(--ink);
}

.meal-card small {
  color: var(--teal);
  font-size: 0.88rem;
}

.meal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.meal-grid > div {
  padding: 18px;
}

.nutrition-line {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.nutrition-line span {
  height: 9px;
  width: var(--w);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--green));
}

.floating-review {
  position: absolute;
  top: 342px;
  right: 0;
  width: 210px;
  padding: 18px;
  border-radius: 14px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 20px 44px rgba(24, 38, 34, 0.24);
  animation: float-review 5s ease-in-out infinite;
}

.floating-review span,
.floating-review strong {
  display: block;
}

.floating-review span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.mini-phone {
  position: absolute;
  left: 26px;
  bottom: 10px;
  width: 230px;
  padding: 16px;
  border: 8px solid #111917;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    #121817;
  box-shadow: 0 24px 52px rgba(24, 38, 34, 0.24);
  transform: rotate(-5deg);
}

.mini-phone-bar {
  width: 58px;
  height: 5px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.mini-bubble {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #fff;
  font-size: 0.78rem;
  line-height: 1.55;
}

.mini-bubble.bot {
  background: #2d3438;
}

.mini-bubble.user {
  width: fit-content;
  margin-right: auto;
  background: #8f43ee;
}

.scroll-cue {
  position: absolute;
  right: 50%;
  bottom: 26px;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(92, 107, 103, 0.38);
  border-radius: 999px;
}

.scroll-cue::after {
  content: "";
  position: absolute;
  right: 50%;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  transform: translateX(50%);
  animation: cue 1.7s ease-in-out infinite;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1160px;
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.proof-item {
  padding: 30px;
  border-left: 1px solid var(--line);
}

.proof-item:last-child {
  border-left: 0;
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  font-size: 1.25rem;
  color: var(--ink);
}

.proof-item span {
  color: var(--slate);
}

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 48px;
}

.intro-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 64px;
  align-items: center;
}

.section-copy p,
.section-heading p,
.seo-section p {
  color: var(--slate);
}

.section-copy.wide {
  max-width: 910px;
}

.phone-frame {
  position: relative;
  max-width: 390px;
  min-height: 640px;
  margin-right: auto;
  border: 10px solid #101513;
  border-radius: 38px;
  background: #080a0a;
  box-shadow: 0 28px 80px rgba(24, 38, 34, 0.28);
  overflow: hidden;
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background:
    linear-gradient(135deg, transparent 0 35%, rgba(123, 192, 67, 0.14) 35% 36%, transparent 36%),
    linear-gradient(45deg, transparent 0 46%, rgba(15, 163, 131, 0.16) 46% 47%, transparent 47%);
  background-size: 92px 92px;
}

.phone-status,
.chat-topbar,
.chat-screen,
.chat-composer {
  position: relative;
  z-index: 1;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px 8px;
  color: #fff;
  font-size: 0.82rem;
}

.chat-topbar {
  display: grid;
  grid-template-columns: 42px 1fr 44px;
  align-items: center;
  gap: 12px;
  margin: 0 14px 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.chat-topbar strong,
.chat-topbar span {
  display: block;
  text-align: center;
}

.chat-topbar span {
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.2;
}

.chat-topbar img {
  padding: 3px;
  border-radius: 50%;
  background: #fff;
}

.back-mark {
  font-size: 2rem;
  line-height: 1;
}

.chat-screen {
  display: flex;
  flex-direction: column;
  gap: 7px;
  height: 492px;
  padding: 0 14px 14px;
  overflow: hidden;
}

.message {
  width: fit-content;
  max-width: 91%;
  padding: 9px 12px;
  border-radius: 12px;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.75;
}

.message.bot,
.message.action {
  margin-left: auto;
  background: rgba(55, 45, 57, 0.96);
}

.message.action {
  width: 100%;
  text-align: center;
  background: rgba(52, 51, 64, 0.96);
  font-weight: 800;
}

.message.user {
  margin-right: auto;
  background: linear-gradient(135deg, #a83df1, #6d54f3);
}

.message.latest {
  box-shadow: 0 0 0 2px rgba(123, 192, 67, 0.12);
}

.message time {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  line-height: 1.2;
}

.chat-composer {
  display: grid;
  grid-template-columns: 92px 1fr 46px;
  gap: 8px;
  align-items: center;
  margin: 0 14px 16px;
}

.chat-composer span,
.chat-composer div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.chat-composer span:first-child {
  background: #2f97f5;
  font-weight: 800;
}

.chat-composer div {
  justify-content: flex-start;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.54);
}

.feature-section {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
  background:
    linear-gradient(180deg, var(--cloud), #fff);
}

.feature-section .section-heading,
.feature-grid {
  max-width: 1160px;
  margin: 0 auto;
  padding-right: 48px;
  padding-left: 48px;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 36px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 268px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(24, 38, 34, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 54px rgba(24, 38, 34, 0.12);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  font-weight: 800;
}

.feature-card:nth-child(2) .feature-icon,
.feature-card:nth-child(4) .feature-icon {
  background: rgba(245, 178, 61, 0.28);
}

.feature-card:nth-child(3) .feature-icon {
  color: #fff;
  background: var(--teal);
}

.feature-card p {
  color: var(--slate);
}

.nutritionist-section {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
  background: var(--ink);
}

.nutritionist-panel {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 56px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 48px;
  color: #fff;
}

.nutritionist-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.nutritionist-copy .eyebrow {
  color: var(--amber);
}

.review-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.review-points span {
  min-height: 76px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.nutritionist-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(15, 163, 131, 0.32), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.expert-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.expert-avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--amber);
  font-weight: 800;
  font-size: 1.4rem;
}

.expert-profile strong,
.expert-profile span {
  display: block;
}

.expert-profile span {
  color: rgba(255, 255, 255, 0.64);
}

.expert-note {
  margin: 24px 0;
  padding: 20px;
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
}

.expert-note p {
  margin: 6px 0 0;
  color: var(--ink);
}

.expert-status {
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.expert-status span {
  color: rgba(255, 255, 255, 0.62);
}

.expert-status strong {
  color: #fff;
}

.steps-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

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

.steps-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 38px rgba(24, 38, 34, 0.06);
}

.steps-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 800;
}

.steps-list p {
  margin-bottom: 0;
  color: var(--slate);
}

.seo-section {
  max-width: none;
  background:
    linear-gradient(90deg, rgba(15, 163, 131, 0.08), transparent 42%),
    var(--cloud);
}

.seo-section .section-copy {
  margin: 0 auto;
  padding-right: 48px;
  padding-left: 48px;
}

.plan-section {
  max-width: 1160px;
}

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

.plan-card,
.plan-empty {
  position: relative;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.plan-card.highlighted {
  border-color: rgba(15, 163, 131, 0.42);
  box-shadow: 0 18px 48px rgba(15, 163, 131, 0.12);
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(245, 178, 61, 0.3);
  font-size: 0.88rem;
  font-weight: 800;
}

.plan-price {
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 1.6rem;
  font-weight: 800;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  color: var(--slate);
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-right: 20px;
}

.plan-card li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.plan-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-weight: 800;
}

.plan-empty p {
  margin-bottom: 0;
  color: var(--slate);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--slate);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto 72px;
  padding: 46px 48px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 163, 131, 0.26), transparent),
    var(--ink);
  border-radius: 18px;
}

.final-cta h2 {
  margin-bottom: 0;
}

.final-cta .eyebrow {
  color: var(--amber);
}

.final-cta .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 112px;
  padding: 24px 48px;
  color: var(--slate);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin-bottom: 0;
}

@keyframes float-board {
  0%,
  100% {
    transform: rotateY(-8deg) rotateX(3deg) translateY(0);
  }
  50% {
    transform: rotateY(-8deg) rotateX(3deg) translateY(-12px);
  }
}

@keyframes float-review {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes cue {
  0%,
  100% {
    top: 9px;
    opacity: 1;
  }
  50% {
    top: 24px;
    opacity: 0.35;
  }
}

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

@media (max-width: 1080px) {
  .hero-inner,
  .intro-section,
  .nutritionist-panel,
  .steps-section {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 520px;
  }

  .phone-frame {
    margin: 0 auto;
  }

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

  .review-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 12px 24px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 112px 24px 88px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .proof-band {
    grid-template-columns: 1fr;
    margin-right: 24px;
    margin-left: 24px;
  }

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

  .proof-item:last-child {
    border-bottom: 0;
  }

  .section,
  .feature-section .section-heading,
  .feature-grid,
  .seo-section .section-copy,
  .nutritionist-panel {
    padding-right: 24px;
    padding-left: 24px;
  }

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

  .final-cta {
    margin-right: 24px;
    margin-left: 24px;
    padding: 34px 24px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 64px;
  }

  .brand-wordmark {
    width: 78px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 16px;
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 74px;
  }

  .hero-logo {
    width: 176px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.58rem;
  }

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

  .hero-actions,
  .final-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
    min-height: 52px;
  }

  .hero-showcase {
    min-height: 650px;
  }

  .product-board {
    right: 0;
    left: 0;
    transform: none;
  }

  .floating-review {
    top: 390px;
    right: 18px;
  }

  .mini-phone {
    left: 10px;
    bottom: 0;
  }

  .proof-band {
    margin-top: -24px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .feature-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .phone-frame {
    max-width: 100%;
    min-height: 610px;
    border-width: 8px;
    border-radius: 32px;
  }

  .message {
    font-size: 0.86rem;
  }

  .chat-screen {
    height: 468px;
  }

  .steps-list li {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 20px;
  }

  .steps-list span {
    width: 40px;
    height: 40px;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}
