:root {
  --bg: #f6f2ea;
  --surface: #fffaf4;
  --surface-strong: #eee6d8;
  --text: #11131a;
  --muted: #70736f;
  --line: rgba(28, 31, 38, 0.09);
  --black: #11131a;
  --green: #17b98f;
  --blue: #5c6cff;
  --coral: #ff784f;
  --cream: #fff7e8;
  --radius: 30px;
  --shadow: 0 24px 70px rgba(35, 30, 20, 0.09);
  --soft-shadow: 0 16px 44px rgba(35, 30, 20, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 8%, rgba(92, 108, 255, 0.15), transparent 28rem),
    radial-gradient(circle at 8% 18%, rgba(23, 185, 143, 0.13), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 250, 242, 0.74) 42%, rgba(247, 244, 238, 0.98)),
    var(--bg);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(17, 19, 26, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 26, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 12px 14px 12px 18px;
  background: rgba(255, 252, 246, 0.72);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(28, 31, 38, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(35, 30, 20, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-header .brand img {
  display: block;
  width: 118px;
  max-width: 118px;
  height: auto;
  max-height: 40px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
  transition: color 180ms ease;
}

nav a:hover {
  color: var(--text);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.lang-switch a {
  min-width: 34px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-align: center;
}

.lang-switch a.active {
  color: #ffffff;
  background: var(--black);
}

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 104px);
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(440px, 1.16fr);
  gap: 18px;
  align-items: center;
  padding: 34px 0 42px;
}

.hero-copy {
  min-width: 0;
  animation: heroFadeUp 760ms ease both;
}

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

.hero-kicker span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #19c37d;
  box-shadow: 0 0 0 0 rgba(25, 195, 125, 0.42);
  animation: livePulse 1.8s ease-in-out infinite;
}

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

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 247, 232, 0.56)),
    rgba(255, 252, 246, 0.72);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: var(--soft-shadow);
}

.home-hero-stage {
  position: relative;
  justify-self: end;
  width: min(118%, 800px);
  margin-right: -112px;
  animation: heroFadeIn 900ms ease 120ms both;
}

.home-hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 158px);
  object-fit: contain;
  filter: drop-shadow(0 30px 62px rgba(35, 30, 20, 0.18));
  animation: heroFloat 6.5s ease-in-out infinite;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.42;
  animation: glowDrift 7s ease-in-out infinite;
}

.hero-glow-one {
  width: 340px;
  height: 340px;
  right: 106px;
  top: 42px;
  background: rgba(23, 185, 143, 0.22);
}

.hero-glow-two {
  width: 260px;
  height: 260px;
  left: 42px;
  bottom: 46px;
  background: rgba(92, 108, 255, 0.17);
  animation-delay: -2s;
}

.hero-qr-card {
  position: absolute;
  right: 118px;
  bottom: 26px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 12px;
  width: 214px;
  min-height: 78px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 15% 15%, rgba(92, 108, 255, 0.12), transparent 5rem),
    rgba(255, 252, 246, 0.86);
  box-shadow: 0 18px 44px rgba(35, 30, 20, 0.12);
  color: var(--text);
  text-decoration: none;
  backdrop-filter: blur(18px);
  animation: heroFadeUp 820ms ease 360ms both;
}

.hero-qr-card img {
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(17, 19, 26, 0.05);
}

.hero-qr-card span {
  font-size: 0.78rem;
  font-weight: 900;
  text-align: left;
  line-height: 1.2;
}

.hero-qr-card span::before {
  content: "Google Play";
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateX(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.4deg);
  }
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(25, 195, 125, 0.42);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(25, 195, 125, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(25, 195, 125, 0);
  }
}

@keyframes glowDrift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(12px, -10px, 0) scale(1.06);
  }
}

.eyebrow {
  margin: 0 0 14px;
  color: #0d8f71;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 670px;
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 5.9vw, 4.95rem);
  line-height: 0.97;
  letter-spacing: -0.068em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.hero-text {
  max-width: 570px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.65;
}

.hero-actions,
.app-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button.primary {
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(135deg, #11131a 0%, #1a1f28 58%, #18271f 100%),
    var(--black);
  box-shadow: 0 18px 42px rgba(17, 19, 26, 0.18);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 252, 246, 0.78);
  border: 1px solid var(--line);
}

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

.button.primary:hover {
  box-shadow: 0 22px 50px rgba(17, 19, 26, 0.24);
}

.button.secondary:hover {
  border-color: rgba(17, 19, 26, 0.18);
  background: #ffffff;
}

.button.disabled {
  cursor: default;
  opacity: 0.92;
}

.section {
  padding: 78px 0;
  animation: heroFadeUp 720ms ease both;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.apps-stack {
  display: grid;
  gap: 24px;
  row-gap: 24px;
}

.app-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 26px;
  align-items: center;
  margin-top: 0;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 95% 12%, rgba(92, 108, 255, 0.09), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 250, 242, 0.72)),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.app-card-link {
  text-decoration: none;
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.app-card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 82px rgba(35, 30, 20, 0.12);
}

.app-card-link h3,
.app-card-link p,
.app-card-link span {
  text-decoration: none;
}

.app-icon {
  width: 96px;
  height: 96px;
  display: block;
  border-radius: 28px;
  object-fit: cover;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(35, 30, 20, 0.08);
}


.app-label {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.app-content p {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.7;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(238, 232, 220, 0.78);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 750;
}

.app-actions a,
.text-link {
  color: var(--text);
  font-weight: 750;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: start;
}

.split > p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

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

.principle {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 8%, rgba(23, 185, 143, 0.08), transparent 10rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 247, 232, 0.66)),
    var(--surface);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.principle:hover {
  transform: translateY(-3px);
  border-color: rgba(17, 19, 26, 0.14);
  box-shadow: 0 20px 52px rgba(35, 30, 20, 0.10);
}

.principle p,
.contact p {
  color: var(--muted);
  line-height: 1.7;
}

.contact {
  text-align: center;
  padding-bottom: 100px;
}

.email {
  display: inline-block;
  margin-top: 12px;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
}

footer {
  border-top: 1px solid var(--line);
  padding: 24px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Quira page */

.app-hero {
  min-height: 62vh;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 42px;
  align-items: center;
  padding: 74px 0 46px;
}

.fixsend-app-hero {
  position: relative;
  min-height: 68vh;
  padding: 98px 0 78px;
  overflow: hidden;
}

.fixsend-app-hero::before {
  content: "";
  position: absolute;
  inset: -112px calc((100vw - 100%) / -2) -6% calc((100vw - 100%) / -2);
  z-index: -1;
  background: url("fixsend-hero-bg.png?v=2") center top / cover no-repeat;
  opacity: 0.18;
  filter: none;
  pointer-events: none;
}

.fixsend-app-hero::after {
  content: none;
}

.hero-phone-card {
  justify-self: end;
  width: min(100%, 168px);
  min-height: 188px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(23, 185, 143, 0.16), transparent 11rem),
    radial-gradient(circle at bottom left, rgba(92, 108, 255, 0.08), transparent 10rem),
    rgba(255, 252, 246, 0.78);
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.hero-phone-card img {
  width: 92px;
  height: 92px;
  border-radius: 20px;
  margin-bottom: 10px;
  object-fit: cover;
}

.hero-phone-card.monevia-card img {
  padding: 10px;
  background: #ffffff;
  object-fit: contain;
}

.monevia-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.monevia-kpi {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 247, 232, 0.66)),
    rgba(255, 252, 246, 0.82);
  box-shadow: var(--soft-shadow);
}

.monevia-kpi strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: -0.06em;
}

.monevia-kpi span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.play-pill,
.play-cta {
  gap: 9px;
}

.play-mark {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  display: inline-block;
  clip-path: polygon(14% 4%, 92% 50%, 14% 96%);
  background: linear-gradient(135deg, #34a853 0 32%, #4285f4 32% 58%, #fbbc04 58% 76%, #ea4335 76% 100%);
  box-shadow: 0 0 0 1px rgba(17, 24, 39, 0.04);
}

.button .play-mark {
  width: 17px;
  height: 17px;
}

.hero-phone-card h2 {
  font-size: 1.3rem;
  margin-bottom: 3px;
}

.hero-phone-card p {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.84rem;
}

.feature-banner {
  margin: 8px 0 46px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 252, 246, 0.78);
  box-shadow: var(--shadow);
}

.feature-banner img {
  display: block;
  width: 100%;
  border-radius: 32px;
}

.feature-banner.product-photo {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.feature-banner.product-photo img {
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 28px 54px rgba(35, 30, 20, 0.11));
}

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

.core-download-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: center;
  gap: 34px;
}

.qr-download-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(92, 108, 255, 0.08), transparent 10rem),
    rgba(255, 252, 246, 0.86);
  box-shadow: var(--soft-shadow);
  color: var(--text);
  text-decoration: none;
}

.qr-download-card img {
  display: block;
  width: 172px;
  height: 172px;
  border-radius: 18px;
}

.qr-download-card span {
  font-weight: 900;
  color: var(--text);
}

.feature-grid .principle {
  min-height: 170px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 247, 232, 0.62)),
    rgba(255, 252, 246, 0.86);
}

.screenshots-section {
  overflow: visible;
}

.screenshot-carousel-wrap {
  position: relative;
  margin-inline: -64px;
  padding-inline: 64px;
}

.screenshots {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  grid-template-columns: none;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 8px 0 26px;
  scrollbar-width: thin;
}

.screenshots::-webkit-scrollbar {
  height: 0;
}

.screenshot-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  scroll-snap-align: start;
}

.screenshot-button img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
  border-radius: 30px;
  border: 0;
  background: rgba(255, 252, 246, 0.86);
  box-shadow: 0 18px 48px rgba(35, 30, 20, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.screenshot-button:hover img {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(35, 30, 20, 0.13);
}

.scroll-cue {
  position: absolute;
  top: 42%;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 252, 246, 0.94);
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(35, 30, 20, 0.12);
  font-size: 2.1rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.scroll-cue.left {
  left: 8px;
}

.scroll-cue.right {
  right: 8px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(8, 12, 18, 0.72);
  backdrop-filter: blur(12px);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(92vw, 520px);
  max-height: 90vh;
  border-radius: 32px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: #111318;
  background: rgba(255, 255, 255, 0.92);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

/* Legal page */

.legal-page h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.legal-card {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(92, 108, 255, 0.07), transparent 22rem),
    rgba(255, 252, 246, 0.86);
  box-shadow: var(--shadow);
  color: var(--muted);
  line-height: 1.8;
}

.legal-card h2 {
  margin-top: 32px;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text);
}

.legal-card a {
  font-weight: 800;
}

/* Responsive */

@media (max-width: 980px) {
  body,
  main,
  .site-header,
  .section,
  .hero,
  .app-hero,
  .screenshots-section,
  .screenshot-carousel-wrap {
    max-width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
    padding: 44px 0 48px;
    overflow: hidden;
  }

  .home-hero-stage {
    justify-self: center;
    width: min(104%, 680px);
    margin: -4px -2% 0;
  }

  .hero-qr-card {
    right: 36px;
    bottom: 18px;
  }

  .app-hero {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .fixsend-app-hero::before {
    inset: -104px -18px -8% -18px;
    opacity: 0.14;
    background-size: cover;
  }

  .hero-phone-card {
    justify-self: start;
  }

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

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

  .qr-download-card {
    justify-self: start;
  }

  .monevia-kpi-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-carousel-wrap {
    margin-inline: 0;
    padding-inline: 0;
    overflow: hidden;
  }

  .screenshots {
    grid-auto-columns: calc((100% - 18px) / 2);
    width: 100%;
    max-width: 100%;
  }

  .scroll-cue.left {
    left: 6px;
  }

  .scroll-cue.right {
    right: 6px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 18px 20px;
  }

  .site-header .brand img {
    width: 96px;
    max-width: 96px;
    height: auto;
    max-height: 34px;
  }

  nav {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  nav a {
    font-size: 0.86rem;
  }

  .lang-switch a {
    min-width: 30px;
    padding: 5px 8px;
    font-size: 0.72rem;
  }

  main {
    width: 100%;
    padding-inline: 14px;
    overflow: hidden;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4.15rem);
  }

  .app-card,
  .split,
  .principles {
    grid-template-columns: 1fr;
  }

  .app-card {
    gap: 18px;
  }

  .section {
    padding: 54px 0;
  }

  .scroll-cue {
    display: none;
  }
}

@media (max-width: 620px) {
  .app-hero {
    padding: 64px 0 42px;
  }

  .fixsend-app-hero {
    min-height: auto;
    padding: 72px 0 52px;
  }

  .fixsend-app-hero::before {
    inset: -94px -14px -8% -14px;
    opacity: 0.12;
    background-size: cover;
  }

  .hero-phone-card {
    width: 100%;
    max-width: 168px;
    min-height: 188px;
    border-radius: 26px;
  }

  .home-hero-stage {
    width: 108%;
    margin-left: -4%;
    margin-right: -4%;
  }

  .hero-qr-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 260px);
    max-width: 260px;
    margin: -8px auto 0;
  }

  .hero-qr-card img {
    width: 58px;
    height: 58px;
  }

  .hero-badges span {
    font-size: 0.82rem;
  }

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

  .qr-download-card {
    width: 100%;
  }

  .screenshots {
    grid-auto-columns: 82%;
    max-width: 100%;
  }

  .screenshot-carousel-wrap {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .screenshot-button,
  .screenshot-button img,
  .feature-banner,
  .feature-banner img {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .home-hero-stage,
  .home-hero-image,
  .hero-glow,
  .hero-qr-card,
  .hero-kicker span,
  .section {
    animation: none;
  }
}
