@font-face {
  font-family: Vazirmatn;
  src: url("/static/home-page/fonts/Vazirmatn-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazirmatn;
  src: url("/static/home-page/fonts/Vazirmatn-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazirmatn;
  src: url("/static/home-page/fonts/Vazirmatn-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazirmatn;
  src: url("/static/home-page/fonts/Vazirmatn-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazirmatn;
  src: url("/static/home-page/fonts/Vazirmatn-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazirmatn;
  src: url("/static/home-page/fonts/Vazirmatn-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --green: #10b981;
  --green-dark: #07865d;
  --green-soft: #e9fbf4;
  --text: #12201a;
  --muted: #64716b;
  --line: #e6ece9;
  --bg: #f8faf9;
  --purple: #7659e8;
  --blue: #3182ce;
  --shadow: 0 24px 70px rgba(18, 32, 26, 0.08);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Vazirmatn, Tahoma, sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
} /* ========================= Header ========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 249, 0.88);
  border-bottom: 1px solid rgba(230, 236, 233, 0.9);
  backdrop-filter: blur(18px);
}
.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 900;
  white-space: nowrap;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.14);
  border: 1px solid var(--line);
}
.brand-mark img {
  width: 75%;
  height: 75%;
  object-fit: contain;
}
.desktop-nav {
  display: flex;
  gap: 30px;
  margin-inline: auto;
}
.desktop-nav a {
  font-size: 12px;
  font-weight: 600;
  color: #5e6b65;
  transition: color 0.2s;
}
.desktop-nav a:hover {
  color: var(--green-dark);
}
.header-link {
  font-size: 12px;
  font-weight: 800;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.header-link i {
  font-size: 10px;
}
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
}
.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  padding: 10px 20px 16px;
}
.mobile-menu a {
  display: block;
  padding: 9px 0;
  font-size: 13px;
  font-weight: 600;
  color: #56635d;
}
.mobile-menu.open {
  display: block;
} /* ========================= Hero ========================= */
.hero {
  position: relative;
  min-height: 650px;
  padding: 78px 0 95px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.09);
  filter: blur(90px);
  right: -260px;
  top: -220px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 12px;
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.12);
}
.hero h1 {
  font-size: clamp(45px, 6vw, 76px);
  line-height: 1.18;
  letter-spacing: -3px;
  margin: 19px 0 17px;
  font-weight: 900;
  max-width: 680px;
}
.hero h1 span,
.section-heading h2 span,
.audience-box h2 span {
  color: var(--green);
}
.hero-text {
  font-size: 15px;
  line-height: 2.15;
  color: var(--muted);
  max-width: 590px;
  margin: 0 0 26px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.button {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button.primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 30px rgba(16, 185, 129, 0.2);
}
.button.primary:hover {
  background: var(--green-dark);
}
.button.secondary {
  background: #fff;
  border: 1px solid var(--line);
  color: #4e5c55;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 23px;
  font-size: 10px;
  color: #84908b;
}
.hero-note i {
  color: var(--green);
  font-size: 12px;
} /* ========================= Hero Visual ========================= */
.hero-visual {
  height: 520px;
  position: relative;
  display: grid;
  place-items: center;
}
.visual-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  filter: blur(55px);
}
.visual-ring {
  position: absolute;
  border: 1px solid rgba(16, 185, 129, 0.13);
  border-radius: 50%;
}
.ring-one {
  width: 390px;
  height: 390px;
}
.ring-two {
  width: 540px;
  height: 540px;
  border-color: rgba(118, 89, 232, 0.08);
}
.logo-card {
  position: relative;
  z-index: 2;
  width: 245px;
  height: 265px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(230, 236, 233, 0.95);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.logo-card-image {
  width: 108px;
  height: 108px;
  border-radius: 30px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.13);
  border: 1px solid var(--line);
  margin-bottom: 15px;
}
.logo-card-image img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}
.logo-card span {
  font-size: 25px;
  font-weight: 900;
}
.logo-card small {
  font-size: 10px;
  color: #8a9690;
  margin-top: 1px;
}
.floating-card {
  position: absolute;
  z-index: 3;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(18, 32, 26, 0.1);
  border-radius: 17px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}
.floating-card span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}
.floating-card b {
  font-size: 10px;
}
.floating-card small {
  font-size: 8px;
  color: #8a9690;
}
.card-top {
  top: 92px;
  right: 15px;
}
.card-bottom {
  bottom: 78px;
  left: 8px;
}
.icon {
  width: 35px;
  height: 35px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 13px;
}
.icon.green {
  background: var(--green-soft);
  color: var(--green-dark);
}
.icon.purple {
  background: #f1edff;
  color: var(--purple);
} /* ========================= Sections ========================= */
.section {
  padding: 100px 0;
}
.about {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.section-kicker {
  display: inline-block;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 9px;
}
.section-heading h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.45;
  letter-spacing: -1.5px;
  margin: 0;
  font-weight: 900;
}
.section-heading p {
  color: var(--muted);
  font-size: 13px;
  margin: 10px auto 0;
}
.about-text p {
  font-size: 16px;
  line-height: 2.2;
  color: var(--muted);
  margin: 0;
  max-width: 650px;
}
.centered {
  text-align: center;
  margin-bottom: 45px;
} /* ========================= Features ========================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 25px;
  min-height: 235px;
  box-shadow: 0 12px 35px rgba(18, 32, 26, 0.035);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(18, 32, 26, 0.08);
}
.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.feature-icon.green {
  background: var(--green-soft);
  color: var(--green-dark);
}
.feature-icon.purple {
  background: #f1edff;
  color: var(--purple);
}
.feature-icon.blue {
  background: #eaf4ff;
  color: var(--blue);
}
.feature-card h3 {
  font-size: 15px;
  margin: 0 0 8px;
  font-weight: 900;
}
.feature-card p {
  font-size: 11px;
  line-height: 2;
  color: var(--muted);
  margin: 0;
} /* ========================= Audience ========================= */
.audience {
  padding-top: 20px;
}
.audience-box {
  border-radius: 30px;
  padding: 45px 50px;
  background: #12201a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.audience-box:after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.16);
  filter: blur(55px);
  left: -100px;
  bottom: -160px;
}
.audience-box h2 {
  font-size: clamp(27px, 3.5vw, 42px);
  line-height: 1.5;
  max-width: 730px;
  margin: 0;
}
.audience-box p {
  color: #aebbb5;
  font-size: 12px;
  max-width: 700px;
  margin: 12px 0 0;
}
.audience-icons {
  display: grid;
  grid-template-columns: repeat(2, 58px);
  gap: 10px;
  position: relative;
  z-index: 1;
}
.audience-icons span {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #8ff0ca;
}
.audience-icons i {
  font-size: 18px;
} /* ========================= Contact ========================= */
.contact {
  background: var(--bg);
  padding-top: 95px;
  padding-bottom: 20px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 25px;
  min-height: 150px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 12px 35px rgba(18, 32, 26, 0.035);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(18, 32, 26, 0.08);
}
.contact-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 16px;
}
.contact-icon.green {
  background: var(--green-soft);
  color: var(--green-dark);
}
.contact-icon.purple {
  background: #f1edff;
  color: var(--purple);
}
.contact-icon.blue {
  background: #eaf4ff;
  color: var(--blue);
}
.contact-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-content h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 900;
}
.contact-content p,
.contact-content a {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 2;
}
.contact-content a {
  transition: color 0.2s;
}
.contact-content a:hover {
  color: var(--green-dark);
}
.trust-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 50px;
  height: 50px;
  margin-top: 2px;
}
.trust-logo-link img {
  display: block;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
} /* ========================= Footer ========================= */
.site-footer {
  margin-top: 45px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-inner {
  min-height: 100px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.footer-inner p {
  font-size: 10px;
  color: #89958f;
  margin: 0;
}
.copyright {
  margin-inline-start: auto;
  font-size: 9px;
  color: #9aa49f;
} /* ========================= Showcase (App Screenshots) ========================= */
.showcase {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.showcase-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 10px;
}
.phone-mockup {
  position: relative;
  width: 190px;
  aspect-ratio: 9 / 19.5;
  flex-shrink: 0;
  background: #12201a;
  border-radius: 32px;
  padding: 9px;
  box-shadow:
    0 30px 60px rgba(18, 32, 26, 0.16),
    0 6px 18px rgba(18, 32, 26, 0.08);
  transform: rotate(var(--tilt, 0deg));
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.phone-mockup:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow:
    0 40px 70px rgba(18, 32, 26, 0.22),
    0 10px 24px rgba(18, 32, 26, 0.1);
  z-index: 2;
}
.phone-mockup:nth-child(1) {
  --tilt: -6deg;
}
.phone-mockup:nth-child(4) {
  --tilt: 6deg;
}
.phone-mockup.featured {
  width: 218px;
  z-index: 1;
}
.phone-mockup.featured:nth-child(2) {
  --tilt: -2deg;
}
.phone-mockup.featured:nth-child(3) {
  --tilt: 2deg;
}
.phone-mockup:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 16px;
  background: #12201a;
  border-radius: 0 0 12px 12px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 23px;
  overflow: hidden;
  background: #fff;
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
} /* ========================= Download ========================= */
.download-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.download-group {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px 24px;
  box-shadow: 0 12px 35px rgba(18, 32, 26, 0.035);
}
.download-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 18px;
}
.download-group-title i {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 15px;
  background: var(--green-soft);
  color: var(--green-dark);
  flex-shrink: 0;
}
/* دو تا بالا کنار هم، یکی پایین تمام‌عرض (گزینه‌ی سوم هر گروه) */
.download-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.download-badges > :nth-child(3) {
  grid-column: 1 / -1;
}
.store-badge {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(18, 32, 26, 0.1);
}
.store-badge img {
  width: 100%;
  height: auto;
  display: block;
}
.store-badge-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 14px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.store-badge-fallback i {
  font-size: 16px;
}
.store-badge-fallback:hover {
  background: var(--green-dark);
} /* ========================= Rules ========================= */
.rules-section {
  background: var(--bg);
}
.rules-panel {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  max-height: 420px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px 34px;
  box-shadow: 0 12px 35px rgba(18, 32, 26, 0.035);
}
.rules-panel-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 110px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
}
.rules-content .rules-h1 {
  font-size: 19px;
  font-weight: 900;
  margin: 4px 0 10px;
  color: var(--text);
}
.rules-content .rules-h2 {
  font-size: 16px;
  font-weight: 800;
  margin: 18px 0 8px;
  color: var(--text);
}
.rules-content .rules-h3 {
  font-size: 14px;
  font-weight: 800;
  margin: 14px 0 6px;
  color: var(--text);
}
.rules-content .rules-li {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 2;
  margin-bottom: 6px;
  padding-right: 4px;
}
.rules-content .rules-p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 2;
  margin-bottom: 10px;
  text-align: justify;
}
.rules-panel-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
} /* ========================= FAQ ========================= */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(18, 32, 26, 0.03);
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: 0 14px 34px rgba(18, 32, 26, 0.06);
}
.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  user-select: none;
}
.faq-question i:first-child {
  color: var(--green);
  font-size: 14px;
}
.faq-chevron {
  margin-right: auto;
  color: #a4afa9;
  font-size: 12px;
  transition: transform 0.2s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--green);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
}
.faq-answer-inner {
  padding: 0 20px 20px 46px;
  font-size: 12px;
  line-height: 2;
  color: var(--muted);
} /* ========================= Tablet ========================= */
@media (max-width: 900px) {
  .desktop-nav {
    gap: 18px;
  }
  .header-link {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero {
    padding-top: 55px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-text {
    margin-inline: auto;
  }
  .hero-actions,
  .hero-note {
    justify-content: center;
  }
  .hero-visual {
    height: 430px;
  }
  .ring-one {
    width: 320px;
    height: 320px;
  }
  .ring-two {
    width: 440px;
    height: 440px;
  }
  .card-top {
    right: calc(50% - 205px);
  }
  .card-bottom {
    left: calc(50% - 200px);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .audience-box {
    padding: 35px;
  }
  .audience-icons {
    display: none;
  }
  .phone-mockup {
    width: 150px;
  }
  .phone-mockup.featured {
    width: 172px;
  }
  .rules-panel {
    padding: 26px 24px;
  }
  .download-groups {
    gap: 14px;
  }
  .download-group {
    padding: 22px 18px;
  }
} /* ========================= Mobile ========================= */
@media (max-width: 650px) {
  .container {
    width: min(100% - 28px, 1120px);
  }
  .header-inner {
    height: 68px;
  }
  .desktop-nav {
    display: none;
  }
  .menu-button {
    display: block;
    margin-inline-start: auto;
  }
  .hero {
    min-height: auto;
    padding: 52px 0 60px;
  }
  .hero h1 {
    font-size: 44px;
    letter-spacing: -2px;
  }
  .hero-text {
    font-size: 13px;
  }
  .hero-visual {
    height: 350px;
    margin-top: 8px;
  }
  .logo-card {
    width: 205px;
    height: 225px;
    border-radius: 26px;
  }
  .logo-card-image {
    width: 88px;
    height: 88px;
  }
  .logo-card span {
    font-size: 22px;
  }
  .ring-one {
    width: 260px;
    height: 260px;
  }
  .ring-two {
    width: 350px;
    height: 350px;
  }
  .floating-card {
    min-width: 160px;
    padding: 9px 10px;
  }
  .card-top {
    top: 48px;
    right: 0;
  }
  .card-bottom {
    bottom: 38px;
    left: 0;
  }
  .floating-card b {
    font-size: 9px;
  }
  .floating-card small {
    font-size: 7px;
  }
  .section {
    padding: 70px 0;
  }
  .section-heading h2 {
    font-size: 31px;
  }
  .about-text p {
    font-size: 13px;
  }
  .audience-box {
    padding: 30px 24px;
    border-radius: 24px;
  }
  .audience-box h2 {
    font-size: 27px;
  } /* Showcase mobile */
  .showcase-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 4px 14px;
    margin: 0 -14px;
    padding-inline: 18px;
  }
  .phone-mockup,
  .phone-mockup:hover {
    width: 140px;
    scroll-snap-align: center;
    transform: none !important;
  }
  .phone-mockup.featured {
    width: 158px;
  } /* Rules mobile */
  .rules-panel {
    padding: 20px 18px;
    max-height: 340px;
    border-radius: 18px;
  }
  .rules-panel-fade {
    height: 90px;
  } /* Download mobile */
  .download-groups {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .download-group {
    padding: 20px 16px;
    border-radius: 18px;
  }
  .download-group-title {
    font-size: 13px;
    margin-bottom: 14px;
  }
  .store-badge {
    border-radius: 12px;
  }
  .store-badge-fallback {
    padding: 14px 10px;
    font-size: 12px;
  } /* FAQ mobile */
  .faq-question {
    padding: 15px 16px;
    font-size: 12px;
    gap: 9px;
  }
  .faq-answer-inner {
    padding: 0 16px 16px 34px;
    font-size: 11px;
  } /* Contact mobile */
  .contact {
    padding-top: 65px;
    padding-bottom: 15px;
  }
  .contact-grid {
    gap: 12px;
  }
  .contact-card {
    min-height: auto;
    padding: 20px;
    border-radius: 18px;
  }
  .contact-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 14px;
  }
  .contact-content h3 {
    font-size: 13px;
  }
  .contact-content p,
  .contact-content a {
    font-size: 10px;
  }
  .footer-inner {
    padding: 25px 0;
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-inner p {
    width: 100%;
    order: 3;
  }
  .copyright {
    margin-inline-start: 0;
  }
  .brand {
    font-size: 17px;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
  }
} /* ========================= Accessibility ========================= */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button,
  .feature-card,
  .contact-card {
    transition: none;
  }
}
