@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap');

:root {
  --green: #20c77a;
  --green-dark: #13955a;
  --green-deep: #0b7545;
  --green-soft: #eafaf2;
  --mint: #f4fff9;
  --ink: #101915;
  --muted: #66736c;
  --border: #dfe9e3;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(20, 68, 45, 0.11);
  --radius-lg: 32px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 8%, rgba(32, 199, 122, .09), transparent 30%),
    linear-gradient(180deg, #fbfffd 0%, #ffffff 34%, #fafffc 100%);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.page-glow {
  position: fixed;
  z-index: -3;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.glow-one {
  width: 480px;
  height: 480px;
  top: 80px;
  right: -230px;
  background: rgba(32, 199, 122, 0.08);
}

.glow-two {
  width: 320px;
  height: 320px;
  left: -200px;
  top: 720px;
  background: rgba(32, 199, 122, 0.06);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(223, 233, 227, .8);
  background: rgba(251, 255, 253, .86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -.02em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(17, 111, 64, .15);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 31px;
}

.nav-links > a:not(.nav-download) {
  color: #4c5c53;
  font-size: .93rem;
  font-weight: 600;
  transition: color .2s ease;
}

.nav-links > a:not(.nav-download):hover {
  color: var(--green-dark);
}

.nav-download {
  padding: 11px 20px;
  color: #fff;
  background: var(--ink);
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}

.nav-download:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 4px;
}

/* Hero */

.hero {
  padding: 84px 0 105px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 70px;
}

.status-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 8px 13px;
  color: var(--green-deep);
  border: 1px solid #cceedd;
  background: rgba(234, 250, 242, .8);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(32, 199, 122, .12);
}

.hero-brand {
  display: flex;
  align-items: flex-start;
  gap: 21px;
}

.hero-icon {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 38px rgba(24, 132, 78, .2);
}

.small-label {
  margin-bottom: 2px;
  color: var(--green-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.hero h1 {
  max-width: 600px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.75rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.06em;
}

.hero h1 span {
  color: var(--green-dark);
}

.hero-description {
  max-width: 625px;
  margin: 28px 0 33px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.google-play-button {
  min-height: 61px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 19px;
  color: #fff;
  background: #101915;
  border: 1px solid #101915;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(16, 25, 21, .13);
  transition: transform .2s ease, box-shadow .2s ease;
}

.google-play-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(16, 25, 21, .17);
}

.google-play-button svg {
  width: 28px;
  height: 32px;
  fill: #fff;
}

.google-play-button span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.google-play-button small {
  font-size: .59rem;
  letter-spacing: .08em;
  margin-bottom: 3px;
}

.google-play-button strong {
  font-size: 1.05rem;
  font-weight: 600;
}

.secondary-button {
  min-height: 61px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 21px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  color: #334139;
  font-size: .9rem;
  font-weight: 700;
  transition: border-color .2s ease, transform .2s ease;
}

.secondary-button:hover {
  border-color: #a8d8be;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  margin-top: 41px;
  gap: 0;
}

.hero-stats div {
  min-width: 115px;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid var(--border);
}

.hero-stats div:last-child {
  border-right: 0;
  margin-right: 0;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: .92rem;
}

.hero-stats span {
  margin-top: 1px;
  color: var(--muted);
  font-size: .76rem;
}

/* Hero visual */

.hero-visual {
  position: relative;
  min-height: 610px;
}

.visual-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(32, 199, 122, .16);
}

.orbit-a {
  width: 525px;
  height: 525px;
  top: 42px;
  right: -18px;
}

.orbit-b {
  width: 425px;
  height: 425px;
  top: 93px;
  right: 31px;
  border-style: dashed;
}

.phone {
  position: absolute;
  overflow: hidden;
  padding: 8px;
  border: 1px solid #dde7e1;
  background: #101915;
  border-radius: 33px;
  box-shadow: 0 30px 70px rgba(29, 65, 45, .18);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 26px;
}

.phone-speaker {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 2;
  width: 54px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255,255,255,.24);
}

.phone-front {
  width: 270px;
  height: 552px;
  top: 8px;
  left: 38%;
  z-index: 3;
  transform: rotate(2.5deg);
}

.phone-back {
  width: 230px;
  height: 472px;
  left: 2%;
  top: 96px;
  z-index: 2;
  transform: rotate(-8deg);
  opacity: .93;
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
  padding: 13px 15px;
  border: 1px solid rgba(221, 235, 227, .9);
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 15px 42px rgba(23, 73, 45, .13);
}

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

.floating-card strong {
  font-size: .81rem;
}

.floating-card span {
  margin-top: 1px;
  color: var(--muted);
  font-size: .68rem;
}

.floating-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  color: var(--green-deep);
  background: var(--green-soft);
  border-radius: 10px;
  font-weight: 800;
}

.card-top {
  top: 59px;
  right: -4px;
}

.card-bottom {
  right: 0;
  bottom: 68px;
}

/* Strip */

.feature-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

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

.strip-item {
  display: flex;
  gap: 17px;
  padding: 32px 34px;
  border-right: 1px solid var(--border);
}

.strip-item:first-child {
  padding-left: 0;
}

.strip-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.strip-number {
  color: var(--green-dark);
  font-family: "Manrope", sans-serif;
  font-size: .72rem;
  font-weight: 800;
}

.strip-item strong {
  font-size: .88rem;
}

.strip-item p {
  max-width: 280px;
  margin-top: 4px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.55;
}

/* Sections */

.section {
  padding: 108px 0;
}

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

.eyebrow {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .17em;
}

.section-heading h2,
.screenshots-heading h2,
.about-content h2,
.cta-left h2 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -.045em;
  line-height: 1.1;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.section-heading p {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: .98rem;
}

/* Features */

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

.feature-card {
  position: relative;
  min-height: 260px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 25px rgba(24, 72, 46, .035);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: #c7e5d4;
  box-shadow: var(--shadow);
}

.feature-card.featured {
  min-height: 540px;
  grid-row: span 2;
  background:
    linear-gradient(145deg, rgba(234, 250, 242, .7), rgba(255,255,255,1) 60%);
}

.feature-symbol {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--green-deep);
  background: var(--green-soft);
  border: 1px solid #d6f1e3;
  border-radius: 13px;
  font-size: 1.15rem;
  font-weight: 800;
}

.feature-tag {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  letter-spacing: -.02em;
}

.feature-card p {
  color: var(--muted);
  font-size: .88rem;
}

.mini-shot {
  position: absolute;
  width: 190px;
  height: 280px;
  left: 50%;
  bottom: -115px;
  padding: 7px;
  transform: translateX(-50%) rotate(-2deg);
  overflow: hidden;
  border-radius: 25px;
  background: #111a16;
  box-shadow: 0 18px 50px rgba(25, 89, 52, .16);
}

.mini-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 19px;
}

/* Screenshots */

.screenshots-section {
  background:
    linear-gradient(180deg, #f4fcf8 0%, #f8fffb 100%);
  border-top: 1px solid #e5f0e9;
  border-bottom: 1px solid #e5f0e9;
}

.screenshots-heading {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: end;
  gap: 60px;
  margin-bottom: 47px;
}

.screenshots-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
}

.screenshots-heading p {
  color: var(--muted);
  font-size: .92rem;
}

.screenshots-scroll {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  gap: 17px;
}

.screenshot-card {
  position: relative;
  margin: 0;
  padding: 7px;
  overflow: hidden;
  border: 1px solid #dbe8e0;
  background: #101915;
  border-radius: 25px;
  box-shadow: 0 16px 40px rgba(26, 75, 47, .09);
  transition: transform .23s ease;
}

.screenshot-card:nth-child(even) {
  margin-top: 34px;
}

.screenshot-card:hover {
  transform: translateY(-7px);
}

.screenshot-card img {
  width: 100%;
  aspect-ratio: 9 / 19;
  object-fit: cover;
  object-position: top center;
  border-radius: 19px;
}

.screenshot-card > span {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 17px;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: #fff;
  background: rgba(13, 28, 20, .72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 700;
}

.swipe-hint {
  display: none;
  margin-top: 19px;
  color: var(--muted);
  text-align: center;
  font-size: .78rem;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.icon-showcase {
  position: relative;
  width: 370px;
  height: 370px;
  display: grid;
  place-items: center;
}

.icon-showcase img {
  position: relative;
  z-index: 3;
  width: 170px;
  height: 170px;
  border-radius: 38px;
  box-shadow: 0 30px 70px rgba(22, 132, 75, .22);
}

.icon-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(32, 199, 122, .23);
}

.ring-one {
  inset: 22px;
}

.ring-two {
  inset: 69px;
  border-style: dashed;
  animation: rotate-ring 22s linear infinite;
}

@keyframes rotate-ring {
  to {
    transform: rotate(360deg);
  }
}

.about-content h2 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.about-content > p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: .94rem;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin-top: 29px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .87rem;
  font-weight: 600;
}

.check-list span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 25px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: .7rem;
}

/* CTA */

.cta-section {
  padding-top: 50px;
}

.cta-card {
  position: relative;
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  padding: 54px 60px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 25%, rgba(255,255,255,.13), transparent 25%),
    linear-gradient(135deg, #0d8e54, #18b86d);
  border-radius: 32px;
  box-shadow: 0 30px 75px rgba(20, 142, 83, .19);
}

.cta-left {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta-left > img {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  border: 5px solid rgba(255,255,255,.16);
  border-radius: 24px;
  box-shadow: 0 16px 35px rgba(7, 72, 40, .18);
}

.cta-left span {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  opacity: .85;
}

.cta-left h2 {
  margin: 6px 0 7px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.cta-left p {
  max-width: 520px;
  color: rgba(255,255,255,.82);
  font-size: .87rem;
}

.google-play-button.light {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.google-play-button.light svg {
  fill: var(--ink);
}

.cta-decoration {
  position: absolute;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}

.decoration-one {
  width: 400px;
  height: 400px;
  right: -120px;
  top: -190px;
}

.decoration-two {
  width: 250px;
  height: 250px;
  right: -40px;
  top: -120px;
}

/* Footer */

.footer {
  padding: 72px 0 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 100px;
  padding-bottom: 48px;
}

.footer-brand p {
  max-width: 370px;
  margin-top: 16px;
  color: var(--muted);
  font-size: .83rem;
}

.footer-links {
  display: flex;
  gap: 90px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 110px;
}

.footer-links strong {
  margin-bottom: 4px;
  font-size: .82rem;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: #78857e;
  font-size: .74rem;
}

/* Responsive */

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

  .hero-visual {
    transform: scale(.88);
    transform-origin: center;
  }

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

  .feature-card.featured {
    grid-row: span 2;
  }

  .screenshots-scroll {
    grid-template-columns: repeat(5, 205px);
    overflow-x: auto;
    padding: 10px 4px 32px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .screenshots-scroll::-webkit-scrollbar {
    display: none;
  }

  .screenshot-card {
    scroll-snap-align: start;
  }

  .swipe-hint {
    display: block;
  }
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    padding: 10px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.98);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a {
    padding: 13px 12px;
  }

  .nav-download {
    margin-top: 5px;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-top: 60px;
  }

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

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

  .status-pill,
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-brand {
    justify-content: center;
    text-align: left;
  }

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

  .hero-visual {
    width: 600px;
    max-width: 100%;
    margin: -20px auto -20px;
  }

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

  .strip-item,
  .strip-item:first-child,
  .strip-item:last-child {
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

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

  .screenshots-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

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

  .check-list {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
  }

  .cta-left {
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

  .nav {
    min-height: 68px;
  }

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

  .hero {
    padding: 47px 0 75px;
  }

  .hero-brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-icon {
    width: 70px;
    height: 70px;
    flex-basis: 70px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 13vw, 3.65rem);
  }

  .hero-description {
    margin-top: 22px;
    font-size: .95rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .google-play-button,
  .secondary-button {
    width: 100%;
    max-width: 290px;
    justify-content: center;
  }

  .hero-stats {
    width: 100%;
    margin-top: 34px;
  }

  .hero-stats div {
    min-width: 0;
    flex: 1;
    padding: 0 11px;
    margin: 0;
  }

  .hero-visual {
    min-height: 525px;
    transform: none;
  }

  .orbit-a {
    width: 410px;
    height: 410px;
    top: 59px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .orbit-b {
    width: 335px;
    height: 335px;
    top: 96px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .phone-front {
    width: 210px;
    height: 430px;
    left: 48%;
    top: 32px;
  }

  .phone-back {
    width: 175px;
    height: 360px;
    left: 8%;
    top: 104px;
  }

  .floating-card {
    min-width: 156px;
    padding: 10px;
  }

  .floating-card strong {
    font-size: .72rem;
  }

  .floating-card span {
    font-size: .61rem;
  }

  .card-top {
    right: -4px;
    top: 54px;
  }

  .card-bottom {
    right: 5px;
    bottom: 32px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

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

  .feature-card.featured {
    min-height: 480px;
    grid-row: auto;
  }

  .screenshots-heading {
    text-align: center;
  }

  .screenshots-scroll {
    grid-template-columns: repeat(5, min(74vw, 260px));
  }

  .screenshot-card:nth-child(even) {
    margin-top: 0;
  }

  .icon-showcase {
    width: 290px;
    height: 290px;
  }

  .icon-showcase img {
    width: 130px;
    height: 130px;
    border-radius: 30px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 42px 22px;
    border-radius: 25px;
  }

  .cta-left > img {
    width: 84px;
    height: 84px;
    flex-basis: 84px;
  }

  .footer-links {
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .hero-visual {
    min-height: 465px;
  }

  .phone-front {
    width: 185px;
    height: 380px;
    left: 47%;
  }

  .phone-back {
    width: 150px;
    height: 307px;
    top: 105px;
  }

  .card-top {
    display: none;
  }

  .card-bottom {
    bottom: 20px;
  }

  .hero-stats span {
    font-size: .66rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 25px;
  }
}
