@font-face {
  font-family: "IRANSans";
  src: url("fonts/IranSans/IRANSansWeb.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("fonts/IranSans/IRANSansWeb_Medium.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #202d32;
  --muted: #6d7a80;
  --brand: #ff4d6b;
  --brand-dark: #e83c5b;
  --brand-soft: #fff0f2;
  --surface: #ffffff;
  --background: #fbfcff;
  --line: #e9edf1;
  --blue: #4978f2;
  --blue-soft: #edf3ff;
  --violet-soft: #f4efff;
  --green-soft: #eaf8f1;
  --yellow-soft: #fff6dc;
  --shadow: 0 24px 60px rgba(39, 52, 55, 0.1);
  --shadow-small: 0 12px 30px rgba(39, 52, 55, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: "IRANSans", Tahoma, sans-serif;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-family: "IRANSans", Tahoma, sans-serif;
}

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

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

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

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

.section {
  padding: 105px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(233, 237, 241, 0.8);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}

.main-nav a {
  color: #536168;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--brand);
}

.nav-cta {
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  padding: 10px 20px;
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  background: var(--brand);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 0;
  background:
    linear-gradient(180deg, #fff 0%, #fffafa 68%, #fbfcff 100%);
}

.hero::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0.36;
  background-image: radial-gradient(#c9d0d3 0.75px, transparent 0.75px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
  pointer-events: none;
}

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

.hero-orb-one {
  width: 410px;
  height: 410px;
  top: -200px;
  right: -130px;
  background: rgba(255, 77, 107, 0.1);
}

.hero-orb-two {
  width: 360px;
  height: 360px;
  bottom: 20px;
  left: -190px;
  background: rgba(73, 120, 242, 0.1);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 5px;
  background: currentColor;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.6vw, 4.2rem);
  line-height: 1.42;
  letter-spacing: -1.8px;
}

.hero h1 span {
  position: relative;
  color: var(--brand);
  white-space: nowrap;
}

.hero h1 span::after {
  position: absolute;
  content: "";
  height: 10px;
  right: 0;
  bottom: 4px;
  left: 0;
  z-index: -1;
  border-radius: 20px;
  background: #ffe0e5;
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 2.05;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 14px;
  padding: 12px 27px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 15px 30px rgba(255, 77, 107, 0.24);
}

.button-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 19px 36px rgba(255, 77, 107, 0.32);
}

.button-secondary {
  border: 1px solid var(--line);
  background: #fff;
}

.button-secondary:hover {
  border-color: #cfd6da;
  box-shadow: var(--shadow-small);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  margin: 0;
  padding: 0;
  color: #536168;
  font-size: 0.82rem;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-points span,
.check-list span {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #e9f8ef;
  color: #2ca66b;
  font-size: 0.7rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  position: absolute;
  content: "";
  width: 490px;
  height: 490px;
  border-radius: 48% 52% 46% 54% / 55% 44% 56% 45%;
  background: linear-gradient(145deg, #ffe7eb, #fff5f6);
  transform: rotate(7deg);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 590px);
  filter: drop-shadow(0 30px 38px rgba(39, 52, 55, 0.12));
}

.visual-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
}

.visual-balance {
  top: 90px;
  right: -12px;
  width: 215px;
  padding: 17px 20px;
}

.visual-balance span,
.visual-balance small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

.visual-balance strong {
  display: block;
  margin: 6px 0 2px;
  color: var(--ink);
  font-size: 1rem;
}

.visual-balance b {
  color: #2ca66b;
}

.visual-transaction {
  left: 4px;
  bottom: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
}

.visual-transaction i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #e9f8ef;
  color: #2ca66b;
  font-style: normal;
}

.visual-transaction strong,
.visual-transaction span {
  display: block;
}

.visual-transaction strong {
  font-size: 0.82rem;
}

.visual-transaction span {
  color: var(--muted);
  font-size: 0.68rem;
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 -6px 30px rgba(39, 52, 55, 0.04);
}

.trust-strip div {
  padding: 21px 34px;
  text-align: center;
}

.trust-strip div:not(:last-child) {
  border-left: 1px solid var(--line);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 3px;
  font-size: 0.92rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.75rem;
}

.intro {
  padding-bottom: 70px;
  background: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.section-heading h2,
.section-title h2,
.showcase-content h2,
.download h2 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 3.25vw, 2.75rem);
  line-height: 1.55;
  letter-spacing: -0.8px;
}

.intro-copy {
  padding-top: 22px;
}

.intro-copy p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 1rem;
}

.features {
  background: #f7f9fc;
}

.section-title {
  max-width: 720px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-title .eyebrow {
  justify-content: center;
}

.section-title p {
  margin: 15px auto 0;
  color: var(--muted);
}

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

.feature-card {
  position: relative;
  min-height: 275px;
  overflow: hidden;
  border: 1px solid #edf0f2;
  border-radius: 22px;
  background: #fff;
  padding: 28px 24px;
  box-shadow: 0 10px 24px rgba(39, 52, 55, 0.035);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 90px;
  left: -38px;
  bottom: -42px;
  border-radius: 50%;
  background: var(--card-soft);
}

.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-small);
}

.feature-card-coral,
.feature-card-pink {
  --card-color: #ff4d6b;
  --card-soft: #fff0f2;
}

.feature-card-blue,
.feature-card-sky {
  --card-color: #4978f2;
  --card-soft: #edf3ff;
}

.feature-card-violet,
.feature-card-indigo {
  --card-color: #8264d7;
  --card-soft: #f4efff;
}

.feature-card-green {
  --card-color: #2ca66b;
  --card-soft: #eaf8f1;
}

.feature-card-yellow {
  --card-color: #d79625;
  --card-soft: #fff6dc;
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  background: var(--card-soft);
  color: var(--card-color);
  font-size: 1.45rem;
  font-weight: 700;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.95;
}

.showcase {
  background: #fff;
}

.showcase-alt {
  background: linear-gradient(180deg, #fbfcff, #f6f8fc);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.showcase-content p {
  margin: 22px 0 25px;
  color: var(--muted);
  font-size: 1rem;
}

.showcase-visual {
  position: relative;
  min-height: 475px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 34px;
}

.family-visual {
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.86), transparent 35%),
    linear-gradient(135deg, #fff0f2, #f0f4ff);
}

.family-visual img {
  width: 82%;
  max-height: 430px;
  object-fit: contain;
}

.family-chip {
  position: absolute;
  min-width: 145px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.92);
  padding: 11px 15px;
  box-shadow: var(--shadow-small);
}

.family-chip span,
.family-chip strong {
  display: block;
}

.family-chip span {
  color: var(--brand);
  font-size: 0.68rem;
}

.family-chip strong {
  font-size: 0.78rem;
}

.family-chip-one {
  top: 70px;
  right: 28px;
}

.family-chip-two {
  left: 24px;
  bottom: 70px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  color: #46545a;
  font-size: 0.9rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(-5px);
}

.report-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 27px;
}

.report-highlights div {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  padding: 15px 17px;
}

.report-highlights strong,
.report-highlights span {
  display: block;
}

.report-highlights strong {
  margin-bottom: 2px;
  font-size: 0.82rem;
}

.report-highlights span {
  color: var(--muted);
  font-size: 0.68rem;
}

.report-visual {
  background:
    linear-gradient(145deg, rgba(73, 120, 242, 0.93), rgba(113, 85, 199, 0.94)),
    #4978f2;
}

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

.report-visual::before {
  width: 310px;
  height: 310px;
  top: -160px;
  left: -100px;
}

.report-visual::after {
  width: 230px;
  height: 230px;
  right: -120px;
  bottom: -80px;
}

.report-card {
  position: relative;
  z-index: 1;
  width: min(82%, 410px);
  border-radius: 24px;
  background: #fff;
  padding: 26px;
  box-shadow: 0 30px 65px rgba(23, 32, 73, 0.28);
}

.report-card-head,
.report-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.report-card-head span {
  color: var(--muted);
  font-size: 0.7rem;
}

.report-card-head strong {
  font-size: 0.92rem;
}

.report-card-head b {
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  padding: 6px 10px;
  font-size: 0.7rem;
}

.chart {
  height: 210px;
  display: flex;
  align-items: end;
  justify-content: space-around;
  gap: 12px;
  margin: 28px 0 20px;
  border-bottom: 1px solid var(--line);
}

.chart i {
  position: relative;
  width: 28px;
  height: var(--bar);
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, #ff7890, #ff4d6b);
  box-shadow: 0 8px 15px rgba(255, 77, 107, 0.18);
}

.chart i:nth-child(even) {
  background: linear-gradient(180deg, #7199ff, #4978f2);
  box-shadow: 0 8px 15px rgba(73, 120, 242, 0.18);
}

.chart span {
  position: absolute;
  right: 0;
  bottom: -28px;
  left: 0;
  color: var(--muted);
  font-size: 0.62rem;
  font-style: normal;
  text-align: center;
}

.report-total {
  margin-top: 36px;
  border-radius: 13px;
  background: #f7f9fc;
  padding: 13px 15px;
}

.report-total span {
  color: var(--muted);
  font-size: 0.68rem;
}

.report-total strong {
  font-size: 0.8rem;
}

.download {
  padding-top: 80px;
  background: #fff;
}

.download-box {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
  align-items: center;
  overflow: hidden;
  border-radius: 34px;
  padding: 58px 64px;
  background: var(--ink);
  color: #fff;
}

.download-box::after {
  position: absolute;
  content: "";
  width: 340px;
  height: 340px;
  left: -170px;
  bottom: -220px;
  border-radius: 50%;
  background: rgba(255, 77, 107, 0.2);
}

.eyebrow-light {
  color: #ff8da0;
}

.download h2 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
}

.download p {
  position: relative;
  z-index: 1;
  margin: 15px 0 0;
  color: #bdc7ca;
  font-size: 0.9rem;
}

.download-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.store-button {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.store-button:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.store-button img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: invert(1);
}

.store-button svg {
  width: 28px;
  height: 34px;
  flex: 0 0 auto;
  fill: #fff;
}

.store-button span,
.store-button small {
  display: block;
}

.store-button span {
  font-size: 0.76rem;
  font-weight: 700;
}

.store-button small {
  color: #b9c3c6;
  font-size: 0.6rem;
  font-weight: 400;
}

.reviews {
  background: var(--surface);
}

.rating-panel {
  display: grid;
  grid-template-columns: 0.75fr 1.6fr;
  align-items: stretch;
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
}

.rating-summary,
.review-card {
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(36, 31, 52, 0.07);
}

.rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.rating-summary strong {
  color: var(--ink);
  font-size: 3.4rem;
  line-height: 1;
}

.rating-summary > span:last-child {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.rating-stars {
  margin-top: 12px;
  color: #ffb020;
  letter-spacing: 2px;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-card blockquote {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 2;
}

.review-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.review-card figcaption strong {
  color: var(--ink);
}

.rating-panel > .text-link {
  grid-column: 1 / -1;
  justify-self: center;
}

.faq {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.faq-list summary {
  position: relative;
  padding: 22px 62px 22px 24px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::before {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 77, 107, 0.12);
  color: var(--primary);
  line-height: 26px;
  text-align: center;
  transform: translateY(-50%);
}

.faq-list details[open] summary::before {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 2;
}

.footer {
  padding: 76px 0 24px;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 70px;
  padding-bottom: 42px;
}

.footer-brand p {
  max-width: 390px;
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

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

.footer-links strong {
  margin-bottom: 5px;
  font-size: 0.87rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-links a:hover {
  color: var(--brand);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: #929da1;
  font-size: 0.7rem;
}

@media (max-width: 1050px) {
  .hero-grid {
    gap: 30px;
  }

  .hero-visual {
    min-height: 510px;
  }

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

  .download-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 850px) {
  .main-nav {
    display: none;
  }

  .nav-cta {
    margin-right: auto;
  }

  .hero {
    padding-top: 65px;
  }

  .hero-grid,
  .intro-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .intro-grid,
  .showcase-grid {
    gap: 45px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .showcase-alt .showcase-content {
    order: 2;
  }

  .showcase-alt .showcase-visual {
    order: 1;
  }

  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 76px 0;
  }

  .site-header {
    position: relative;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .nav-cta {
    padding: 9px 13px;
    font-size: 0.72rem;
  }

  .hero h1 {
    font-size: 2.3rem;
    letter-spacing: -1px;
  }

  .hero-lead {
    font-size: 0.93rem;
  }

  .hero-points {
    display: grid;
    justify-content: center;
    text-align: right;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-visual::before {
    width: 340px;
    height: 340px;
  }

  .visual-balance {
    top: 42px;
    right: 0;
    width: 174px;
  }

  .visual-transaction {
    left: 0;
    bottom: 35px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 25px;
  }

  .trust-strip div:not(:last-child) {
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .feature-grid,
  .report-highlights,
  .download-actions,
  .rating-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .showcase-visual {
    min-height: 380px;
    border-radius: 24px;
  }

  .family-chip-one {
    top: 30px;
    right: 12px;
  }

  .family-chip-two {
    left: 12px;
    bottom: 30px;
  }

  .report-card {
    width: 88%;
    padding: 20px;
  }

  .download-box {
    gap: 35px;
    border-radius: 24px;
    padding: 38px 22px;
    text-align: center;
  }

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

  .store-button {
    justify-content: center;
  }

  .footer-grid {
    gap: 28px;
  }

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
