@font-face {
  font-family: 'CherryBomb';
  src: url('CherryBombOne-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


:root {

  --bg:           #F5F0E8;
  --bg-card:      #FFFFFF;
  --bg-dark:      #1A1208;
  --orange:       #F5A623;
  --orange-dk:    #D4891A;
  --orange-lt:    #FFF3D6;
  --brown:        #3D2B0A;
  --muted:        #8A7A5A;
  --border:       #E8DFCC;


  --shadow-card:  0 4px 24px rgba(61, 43, 10, 0.08);
  --shadow-lift:  0 12px 40px rgba(61, 43, 10, 0.14);


  --font-logo: 'CherryBomb', 'Nunito', sans-serif;
  --font-d: 'Nunito', sans-serif;
  --font-b: 'Inter', sans-serif;


  --r-sm:  10px;
  --r-md:  18px;
  --r-lg:  28px;
  --r-xl:  40px;


  --max-w: 1080px;


  --t: 0.25s ease;
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--brown);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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


.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}


.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-lt);
  color: var(--orange-dk);
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(245, 166, 35, 0.3);
}


.eyebrow--dark {
  background: rgba(245, 166, 35, 0.12);
  border-color: rgba(245, 166, 35, 0.2);
}


.section-title {
  font-family: var(--font-d);
  font-size: clamp(26px, 4.2vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--brown);
}


.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.65;
}


.orange { color: var(--orange); }


.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 56px;
}


.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--r-md);
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 15px;
  transition: transform var(--t), box-shadow var(--t);
  cursor: pointer;
  border: none;
}

.btn-store:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.btn-store.ios {
  background: var(--bg-dark);
  color: #fff;
}

.btn-store.android {
  background: var(--orange);
  color: var(--bg-dark);
}

.btn-store-label {
  text-align: left;
  line-height: 1.2;
}

.btn-store-label small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.7;
}


.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: box-shadow var(--t);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-logo);
  font-size: 26px;
  font-weight: normal;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}


.logo-badge {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-badge img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--brown);
}

.nav-cta {
  background: var(--orange);
  color: var(--bg-dark);
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  transition: background var(--t), color var(--t);
}

.nav-cta:hover {
  background: var(--orange-dk);
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brown);
}


.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(61, 43, 10, 0.1);
}


.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 62px; left: 0; right: 0;
  z-index: 99;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  gap: 14px;
}

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

.mobile-nav a {
  font-weight: 600;
  color: var(--muted);
  font-size: 16px;
  padding: 4px 0;
}

.mobile-nav a:hover {
  color: var(--brown);
}


.hero {
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}


.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.18), transparent 70%);
  border-radius: 50%;
  top: -100px; right: -150px;
  z-index: 0;
  pointer-events: none;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(34px, 5.2vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--brown);
}


.hero-title .highlight {
  color: var(--orange);
  position: relative;
  display: inline-block;
}


.wave-underline {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 10px;
  overflow: visible;
  display: block;
}

.wave-underline path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation:
    wave-draw 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards,
    wave-pulse 3s ease-in-out 1.4s infinite;
}


@keyframes wave-draw {
  to { stroke-dashoffset: 0; }
}


@keyframes wave-pulse {
  0%, 100% { opacity: 1;    stroke-width: 3; }
  50%       { opacity: 0.55; stroke-width: 2.5; }
}

.hero-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 460px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.stars { color: var(--orange); letter-spacing: 2px; }


.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  width: 256px;
  background: #fff;
  border-radius: 44px;
  box-shadow: 0 32px 80px rgba(61, 43, 10, 0.22), 0 0 0 2px rgba(61, 43, 10, 0.08);
  overflow: hidden;
}


.phone-screen {
  background: var(--bg);
  overflow: hidden;
}

.phone-screen img {
  width: 100%;
  display: block;
}


.mascot-float {
  position: absolute;
  top: -28px; right: -24px;
  width: 88px; height: 88px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(245, 166, 35, 0.5));
  z-index: 2;
}

.mascot-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

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


.stats-band {
  background: var(--bg-dark);
  padding: 44px 0;
}

.stats-band .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-d);
  font-size: 38px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}


.bruxismo {
  padding: 96px 0;
}

.bruxismo .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.bruxismo-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bruxismo-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}


.bcard {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
}

.bcard-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--orange-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.bcard-icon img {
  width: 24px; height: 24px;
  object-fit: contain;
}

.bcard h3 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 3px;
  color: var(--brown);
}

.bcard p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}


.how {
  padding: 96px 0;
  background: var(--bg-dark);
}

.how .section-title { color: #fff; }
.how .section-sub   { color: rgba(255, 255, 255, 0.45); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 30px 26px;
}

.step-num {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.step-num::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--orange);
}

.step-icon {
  font-size: 34px;
  margin-bottom: 14px;
}

.step h3 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}


.features {
  padding: 96px 0;
}

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

.feat {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.feat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(245, 166, 35, 0.4);
}

.feat-icon {
  width: 50px; height: 50px;
  background: var(--orange-lt);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  overflow: hidden;
}

.feat-icon img {
  width: 28px; height: 28px;
  object-fit: contain;
}

.feat h3 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 7px;
  color: var(--brown);
}

.feat p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}


.screens {
  padding: 96px 0;
  background: var(--orange-lt);
}

.screens-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: flex-end;
  padding: 20px 0 32px;

  min-height: 560px;
}


.screen-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;

  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;

  will-change: transform;
}


.screen-wrap.screen-active {
  transform: translateY(-18px) scale(1.045);
}


.screens-row:not(.screens-paused) .screen-wrap:hover,
.screen-wrap.screen-hovered {
  transform: translateY(-22px) scale(1.06);
}


.screen-frame {
  width: 190px;
  background: var(--bg);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(61, 43, 10, 0.16);
  border: 2px solid rgba(61, 43, 10, 0.12);
  transition: box-shadow 0.4s ease;
}

.screen-wrap.screen-active .screen-frame,
.screen-wrap.screen-hovered .screen-frame {
  box-shadow: 0 28px 56px rgba(61, 43, 10, 0.24);
}


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


.screen-cap {
  margin-top: 12px;
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

.screen-wrap.screen-active .screen-cap,
.screen-wrap.screen-hovered .screen-cap {
  color: var(--orange-dk);
}


.gamif {
  padding: 96px 0;
}

.gamif .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.gamif-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}


.streak-ui {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px;
  box-shadow: var(--shadow-card);
}

.streak-label {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}


.streak-days {
  display: flex;
  gap: 7px;
  margin-bottom: 6px;
}

.streak-days span {
  width: 34px;
  text-align: center;
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.streak-dots { display: flex; gap: 7px; }


.sd {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--bg-dark);
}


.sd.miss { background: var(--border); }


.league-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.lcard {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.lcard-icon { font-size: 30px; margin-bottom: 5px; }

.lcard-name {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown);
}

.lcard.gold     { border-color: #FFD700; background: #FFFBE6; }
.lcard.silver   { border-color: #B8BCC8; }
.lcard.platinum { border-color: #7DD6D6; background: #F0FEFF; }


.testi {
  padding: 96px 0;
  background: var(--bg-dark);
}

.testi .section-title { color: #fff; }

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

.tcard {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-lg);
  padding: 24px;
}

.tcard-stars {
  color: var(--orange);
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 2px;
}

.tcard-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 16px;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tcard-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 16px;
  color: var(--bg-dark);
  flex-shrink: 0;
  overflow: hidden;
}


.tcard-av img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.tcard-name {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.tcard-src {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}


.faq {
  padding: 96px 0;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 700;
  color: var(--brown);
  text-align: left;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--orange);
  transition: transform var(--t);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 22px 18px;
}

.faq-a p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-a a {
  color: var(--orange);
  font-weight: 600;
}


.cta-final {
  padding: 100px 0;
  background: var(--orange);
  text-align: center;
  position: relative;
  overflow: hidden;
}


.cta-final::before {
  content: '🦷';
  position: absolute;
  font-size: 200px;
  opacity: 0.07;
  bottom: -30px; right: -20px;
  line-height: 1;
  pointer-events: none;
}

.cta-final .container { position: relative; z-index: 1; }
.cta-final .section-title { color: var(--bg-dark); margin-bottom: 14px; }
.cta-final .section-sub   { color: rgba(26, 18, 8, 0.6); margin: 0 auto 36px; text-align: center; }
.cta-final .store-buttons { justify-content: center; }
.cta-final .btn-store.ios     { background: var(--bg-dark); }
.cta-final .btn-store.android { background: rgba(26, 18, 8, 0.85); color: #fff; }


footer {
  background: var(--bg-dark);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  max-width: 240px;
  margin-top: 10px;
}

.footer-brand .nav-logo { color: #fff; }

.fcol h4 {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 14px;
}

.fcol a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 9px;
  transition: color var(--t);
}

.fcol a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
}


.bcard {
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.bcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(245, 166, 35, 0.35);
}


a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}


@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0); }
  50%       { box-shadow: 0 0 0 8px rgba(245, 166, 35, 0.18); }
}
.btn-store.android {
  animation: btn-pulse 3s ease-in-out infinite;
}
.btn-store.android:hover {
  animation: none;
}


.hero-tip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-lt);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--brown);
  margin-top: 4px;
  max-width: 460px;
}
.hero-tip strong { color: var(--orange-dk); }


.section-divider {
  width: 48px;
  height: 4px;
  background: var(--orange);
  border-radius: 99px;
  margin: 0 auto 32px;
}


.btn-free-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 99px;
  margin-left: 6px;
  vertical-align: middle;
}
.btn-store.android .btn-free-tag {
  background: rgba(26,18,8,0.12);
  color: rgba(26,18,8,0.7);
}


.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.6;
  animation: scroll-bounce 2s ease-in-out infinite;
  pointer-events: none;
}
.scroll-hint svg { color: var(--orange); }

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}


.step:hover {
  border-color: rgba(245, 166, 35, 0.2);
  background: rgba(255,255,255,0.07);
  transition: border-color var(--t), background var(--t);
}


.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }


  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { align-items: center; }
  .hero-desc { text-align: center; }
  .hero-visual { display: none; }
  .store-buttons { justify-content: center; }


  .bruxismo .container   { grid-template-columns: 1fr; }
  .gamif .container      { grid-template-columns: 1fr; }
  .how-steps             { grid-template-columns: 1fr; }
  .features-grid         { grid-template-columns: 1fr; }
  .testi-grid            { grid-template-columns: 1fr; }


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


  .footer-grid           { grid-template-columns: 1fr 1fr; }
  .footer-brand          { grid-column: 1 / -1; }


  .screens-row {
    overflow-x: auto;
    padding: 20px 24px 28px;
    justify-content: flex-start;
    min-height: auto;
  }
}


@media (max-width: 520px) {
  .stats-band .container { grid-template-columns: 1fr 1fr; }
  .league-cards          { grid-template-columns: 1fr 1fr; }
  .footer-grid           { grid-template-columns: 1fr; }


  .btn-store { width: 100%; justify-content: center; }
  .store-buttons { flex-direction: column; align-items: stretch; }
}
