/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  transform: translateY(-30px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 6px;
  border-radius: var(--r-full);
  background: var(--c-orange-bg);
  border: 1px solid rgba(244, 123, 32, 0.12);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-orange);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -2.5px;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--c-orange), #FF6B35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--c-text-2);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Platforms row */
.platforms-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.platforms-row .pr-label {
  font-size: 12px;
  color: var(--c-text-3);
  margin-right: 4px;
}

.platform-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--r-full);
  background: var(--c-glass);
  border: 1px solid var(--c-border);
  font-size: 12px;
  font-weight: 500;
  color: var(--c-text-2);
  transition: var(--t);
}

.platform-chip:hover {
  border-color: var(--c-border-h);
  color: var(--c-text);
}

.platform-chip svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Hero phone */
.hero-vis {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c-orange-glow), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  z-index: 0;
}

.phone {
  width: 280px;
  height: 580px;
  background: var(--c-bg-2);
  border-radius: 36px;
  border: 2px solid var(--c-border-h);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .5), inset 0 0 0 1px rgba(255, 255, 255, .02);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #000;
  border-radius: 0 0 16px 16px;
  z-index: 5;
}

.phone-s {
  width: 100%;
  height: 100%;
  padding: 36px 16px 16px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--c-bg-1), var(--c-bg-0));
}

.ps-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.ps-head .psh-hi {
  font-size: 10px;
  color: var(--c-text-3);
}

.ps-head .psh-name {
  font-size: 14px;
  font-weight: 700;
}

.ps-head .psh-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-orange-bg);
  border: 2px solid var(--c-orange);
}

.ps-score {
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 14px;
  margin-bottom: 10px;
}

.ps-score .pss-l {
  font-size: 9px;
  color: var(--c-text-3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ps-score .pss-v {
  font-family: var(--f-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--c-orange);
}

.ps-score .pss-d {
  font-size: 10px;
  color: var(--c-green);
  margin-top: 1px;
}

.ps-minis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.ps-mini {
  background: var(--c-glass);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 10px;
  text-align: center;
}

.ps-mini .pm-v {
  font-family: var(--f-mono);
  font-size: 16px;
  font-weight: 700;
}

.ps-mini .pm-l {
  font-size: 9px;
  color: var(--c-text-3);
  margin-top: 1px;
}

.ps-match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px;
  background: var(--c-glass);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  margin-bottom: 6px;
  font-size: 11px;
}

.ps-match .pm-mode {
  font-weight: 600;
}

.pm-w {
  color: var(--c-green);
  font-weight: 700;
}

.pm-l2 {
  color: var(--c-red);
  font-weight: 700;
}

/* Floating badges around phone */
.float-badge {
  position: absolute;
  padding: 8px 14px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  backdrop-filter: blur(16px);
  font-size: 11px;
  color: var(--c-text-2);
  white-space: nowrap;
  z-index: 2;
  animation: floatY 4s ease-in-out infinite;
}

.float-badge strong {
  display: block;
  font-family: var(--f-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
}

.fb1 {
  top: 12%;
  left: -80px;
  animation-delay: 0s;
}

.fb2 {
  top: 12%;
  right: -80px;
  animation-delay: 1.2s;
}

.fb3 {
  bottom: 18%;
  left: -50px;
  animation-delay: .6s;
}

.fb4 {
  bottom: 18%;
  right: -50px;
  animation-delay: 1.8s;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

/* ══════════════════════════════════════
   FEATURES
   ══════════════════════════════════════ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 52px;
}

.fc {
  padding: 30px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}

.fc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-orange), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.fc:hover::after {
  opacity: 1;
}

.fc:hover {
  border-color: rgba(244, 123, 32, .12);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .3);
}

.fc-ico {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.fc h3 {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.fc p {
  font-size: 13.5px;
  color: var(--c-text-2);
  line-height: 1.65;
}

.fc-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.t-ai {
  background: var(--c-orange-bg);
  color: var(--c-orange);
}

.t-soc {
  background: var(--c-blue-bg);
  color: var(--c-blue);
}

.t-comp {
  background: var(--c-red-bg);
  color: var(--c-red);
}

.t-train {
  background: var(--c-green-bg);
  color: var(--c-green);
}

/* Big AI feature card */
.fc-big {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 44px;
  background: linear-gradient(135deg, var(--c-bg-2), var(--c-bg-3));
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  margin-top: 14px;
}

.fc-big:hover {
  border-color: rgba(244, 123, 32, .1);
}

.fc-big-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.fc-big-stat .fbs-v1,
.fbs-v2,
.fbs-v3 {
  font-family: var(--f-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-orange);
}

.fc-big-stat .fbs-l {
  font-size: 11px;
  color: var(--c-text-3);
  margin-top: 1px;
}

.cam-box {
  width: 240px;
  height: 300px;
  background: var(--c-bg-0);
  border-radius: var(--r-lg);
  border: 2px solid var(--c-border);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cam-vf {
  width: 140px;
  height: 140px;
  border: 2px solid var(--c-orange);
  border-radius: var(--r-md);
  position: relative;
  animation: scanP 2.5s ease-in-out infinite;
}

.cam-vf::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--c-orange);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--c-orange-glow);
}

.cam-box .cb-label {
  margin-top: 14px;
  font-size: 10px;
  font-weight: 600;
  color: var(--c-orange);
  padding: 3px 10px;
  background: var(--c-orange-bg);
  border-radius: var(--r-full);
}

.cam-box .cb-score {
  margin-top: 6px;
  font-family: var(--f-mono);
  font-size: 24px;
  font-weight: 700;
}

@keyframes scanP {

  0%,
  100% {
    border-color: var(--c-orange);
    box-shadow: 0 0 0 0 var(--c-orange-glow)
  }

  50% {
    border-color: var(--c-orange-l);
    box-shadow: 0 0 20px var(--c-orange-glow)
  }
}

/* ══════════════════════════════════════
   GAME MODES
   ══════════════════════════════════════ */
.modes-g {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.mc {
  padding: 24px 18px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  text-align: center;
  transition: all .25s var(--ease);
}

.mc:hover {
  border-color: rgba(244, 124, 32, 0.267);
  transform: translateY(-3px);
}

.mc-ico {
  font-size: 28px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.mc h4 {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
}

.mc p {
  font-size: 12px;
  color: var(--c-text-3);
  line-height: 1.5;
}

/* ══════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════ */
.how-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.hc {
  text-align: center;
  padding: 36px 24px;
  position: relative;
}

.hc-num {
  font-family: var(--f-mono);
  font-size: 64px;
  font-weight: 700;
  color: rgba(244, 124, 32, 0.151);
  line-height: 1;
  margin-bottom: 14px;
}

.hc h3 {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.hc p {
  font-size: 14px;
  color: var(--c-text-2);
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

.hc:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 50px;
  right: -12px;
  font-size: 18px;
  color: var(--c-text-3);
}

/* ══════════════════════════════════════
   LEAGUES
   ══════════════════════════════════════ */
.leagues-r {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.lc {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  transition: var(--t);
  cursor: default;
}

.lc:hover {
  border-color: var(--c-border-h);
  transform: translateY(-2px);
}

.lc-emb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.le-rookie {
  background: rgba(34, 197, 94, 0.1);
  color: var(--c-green);
}

.le-bronze {
  background: rgba(244, 123, 32, 0.1);
  color: var(--c-orange);
}

.le-gold {
  background: rgba(245, 158, 11, 0.1);
  color: var(--c-gold);
}

.le-diamond {
  background: rgba(59, 130, 246, 0.1);
  color: var(--c-blue);
}

.le-legend {
  background: rgba(239, 68, 68, 0.1);
  color: var(--c-red);
}

.lc .lc-n {
  font-size: 13px;
  font-weight: 700;
}

.lc .lc-r {
  font-size: 10px;
  color: var(--c-text-3);
  font-family: var(--f-mono);
}

/* Stats row */
.stats-r {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.sb {
  text-align: center;
  padding: 26px 14px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
}

.sb-n {
  font-family: var(--f-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--c-orange);
}

.sb-l {
  font-size: 12px;
  color: var(--c-text-2);
  margin-top: 3px;
}

/* ══════════════════════════════════════
   PLATFORMS (APP DOWNLOAD)
   ══════════════════════════════════════ */
.plat-g {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.plat-card {
  padding: 40px 36px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  transition: var(--t);
}

.plat-card:hover {
  border-color: var(--c-border-h);
  transform: translateY(-3px);
}

.plat-card .pc-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.plat-card h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.plat-card p {
  font-size: 14px;
  color: var(--c-text-2);
  line-height: 1.65;
  margin-bottom: 20px;
}

.plat-card .pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.plat-card .pc-features li {
  font-size: 13px;
  color: var(--c-text-2);
  padding-left: 20px;
  position: relative;
}

.plat-card .pc-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-orange);
  font-weight: 700;
  font-size: 12px;
}

.plat-req {
  font-size: 11px;
  color: var(--c-text-3);
  margin-top: 12px;
  font-style: italic;
}

/* ══════════════════════════════════════
   COMPARISON
   ══════════════════════════════════════ */
.cmp-g {
  display: grid;
  grid-template-columns: 1fr 50px 1fr;
  gap: 16px;
  align-items: stretch;
  margin-top: 48px;
}

.cmp-c {
  padding: 32px 26px;
  border-radius: var(--r-xl);
  text-align: left;
}

.cmp-c h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}

.cmp-c ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.cmp-c li {
  font-size: 13.5px;
  color: var(--c-text-2);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.cmp-old {
  background: var(--c-red-bg);
  border: 1px solid rgba(239, 68, 68, .08);
}

.cmp-old h3 {
  color: var(--c-red);
}

.cmp-old li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--c-red);
  font-weight: 700;
  font-size: 12px;
}

.cmp-new {
  background: var(--c-green-bg);
  border: 1px solid rgba(34, 197, 94, .08);
}

.cmp-new h3 {
  color: var(--c-green);
}

.cmp-new li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-green);
  font-weight: 700;
  font-size: 12px;
}

.cmp-vs {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cmp-vs span {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-3);
  padding: 8px 12px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: var(--c-glass);
}

/* ══════════════════════════════════════
   PRICING
   ══════════════════════════════════════ */
.price-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.pc {
  padding: 34px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  position: relative;
  transition: var(--t);
}

.pc:hover {
  border-color: var(--c-border-h);
}

.pc.feat {
  border-color: rgba(244, 123, 32, .15);
  background: linear-gradient(180deg, rgba(244, 123, 32, .03), var(--c-bg-card));
}

.pc.feat::before {
  content: attr(data-badge);
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  background: var(--c-orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: var(--r-full);
  letter-spacing: .3px;
}

.pc-name {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}

.pc-desc {
  font-size: 12px;
  color: var(--c-text-3);
  margin-bottom: 18px;
}

.pc-price {
  font-family: var(--f-mono);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 3px;
}

.pc-per {
  font-size: 12px;
  color: var(--c-text-3);
  margin-bottom: 22px;
}

.pc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.pc li {
  font-size: 13px;
  color: var(--c-text-2);
  padding-left: 20px;
  position: relative;
}

.pc li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-orange);
  font-weight: 700;
  font-size: 12px;
}

/* ══════════════════════════════════════
   FAQ
   ══════════════════════════════════════ */
.faq-list {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fq {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
}

.fq:hover {
  border-color: var(--c-border-h);
}

.fq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  user-select: none;
}

.fq-q .fq-arr {
  font-size: 12px;
  color: var(--c-text-3);
  transition: transform .3s ease, color .3s;
  pointer-events: none;
}

.fq.open .fq-arr {
  transform: rotate(-180deg);
  color: var(--c-orange);
}

.fq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.fq-a-in {
  padding: 0 22px 18px;
  font-size: 13.5px;
  color: var(--c-text-2);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   CTA
   ══════════════════════════════════════ */
.cta-sec {
  padding: 80px 0 120px;
}

.cta-bx {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 44px;
  background: linear-gradient(135deg, rgba(244, 123, 32, .05), rgba(244, 123, 32, .015));
  border: 1px solid rgba(244, 123, 32, .1);
  border-radius: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bx::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-orange), transparent);
}

.cta-bx h2 {
  font-family: var(--f-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.cta-bx>p {
  font-size: 15px;
  color: var(--c-text-2);
  margin-bottom: 28px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-form {
  display: flex;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.cta-form input {
  flex: 1;
  padding: 13px 18px;
  background: var(--c-glass);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 14px;
  outline: none;
  transition: border-color .3s;
}

.cta-form input::placeholder {
  color: var(--c-text-3);
}

.cta-form input:focus {
  border-color: rgba(244, 123, 32, .25);
}

.cta-consent {
  margin-top: 14px;
  font-size: 10.5px;
  color: var(--c-text-3);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.cta-consent a {
  color: var(--c-text-2);
  text-decoration: underline;
}

/* ══════════════════════════════════════
   LEGAL PAGES (EXTRA)
   ══════════════════════════════════════ */
.legal-page {
  padding: 120px 0 80px;
}

.legal-page h1 {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.legal-page .lp-date {
  font-size: 13px;
  color: var(--c-text-3);
  margin-bottom: 36px;
}

.legal-page h2 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--c-text);
}

.legal-page h3 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-page p {
  font-size: 14px;
  color: var(--c-text-2);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-page li {
  font-size: 14px;
  color: var(--c-text-2);
  line-height: 1.7;
  margin-bottom: 4px;
}

.legal-page a {
  color: var(--c-orange);
  text-decoration: underline;
}

/* ══════════════════════════════════════
   RESPONSIVE (LANDING)
   ══════════════════════════════════════ */
@media(max-width:1024px) {
  .hero-g {
    grid-template-columns: 1fr;
    text-align: center
  }

  .hero-sub {
    margin: 0 auto 32px
  }

  .hero-btns,
  .platforms-row {
    justify-content: center
  }

  .hero-vis {
    margin-top: 44px
  }

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

  .fc-big {
    grid-column: span 2
  }

  .modes-g {
    grid-template-columns: repeat(2, 1fr)
  }

  .price-g {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto
  }

  .plat-g {
    grid-template-columns: 1fr
  }
}

@media(max-width:768px) {
  .feat-grid {
    grid-template-columns: 1fr
  }

  .fc-big {
    grid-column: span 1;
    grid-template-columns: 1fr
  }

  .how-g {
    grid-template-columns: 1fr
  }

  .hc::after {
    display: none
  }

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

  .cmp-g {
    grid-template-columns: 1fr
  }

  .cmp-vs {
    display: none
  }

  .modes-g {
    grid-template-columns: 1fr
  }

  .cta-form {
    flex-direction: column
  }

  .float-badge {
    display: none
  }

  .phone {
    width: 230px;
    height: 480px
  }
}