:root {
  --bg: #08080a;
  --bg-soft: #0d0d10;
  --surface: #111114;
  --surface-2: #17171b;
  --surface-3: #1e1e23;
  --text: #f8f8fa;
  --muted: #a6a6b0;
  --muted-2: #787883;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.15);
  --gold: #ffbd4a;
  --gold-bright: #ffd36d;
  --orange: #ff7a18;
  --violet: #8358ff;
  --green: #25d366;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 6%, rgba(131, 88, 255, 0.09), transparent 30rem),
    var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

::selection {
  color: #0a0a0c;
  background: var(--gold);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  inset-inline-start: 1rem;
  top: -5rem;
  padding: 0.7rem 1rem;
  border-radius: 0 0 0.75rem 0.75rem;
  color: #111;
  background: var(--gold);
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(8, 8, 10, 0.88);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell,
.hero-shell,
.trust-shell,
.section-shell,
.footer-shell {
  width: min(calc(100% - 2.5rem), var(--max-width));
  margin-inline: auto;
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  isolation: isolate;
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 189, 74, 0.45);
  border-radius: 13px;
  color: #0b0b0d;
  background: linear-gradient(140deg, var(--gold-bright), var(--orange));
  box-shadow: 0 10px 28px rgba(255, 122, 24, 0.22);
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1;
}

.brand-mark::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 30%;
  bottom: -8%;
  left: -30%;
  background: rgba(255, 255, 255, 0.44);
  transform: rotate(-18deg);
  filter: blur(5px);
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  direction: ltr;
  justify-self: end;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.015em;
}

.brand-copy strong span {
  color: var(--gold);
}

.brand-copy small {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  margin-inline: auto;
}

.main-nav a {
  position: relative;
  color: #c8c8ce;
  font-size: 0.91rem;
  font-weight: 650;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.48rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transition: width 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 43px;
  padding: 0.6rem 0.95rem;
  border: 1px solid rgba(37, 211, 102, 0.38);
  border-radius: 13px;
  color: #effff5;
  background: rgba(37, 211, 102, 0.1);
  font-size: 0.84rem;
  font-weight: 750;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.nav-whatsapp svg {
  width: 19px;
  color: var(--green);
  fill: currentColor;
  stroke: none;
}

.nav-whatsapp:hover,
.nav-whatsapp:focus-visible {
  border-color: rgba(37, 211, 102, 0.65);
  background: rgba(37, 211, 102, 0.17);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-inline-start: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  margin: 4px auto;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 770px;
  padding: 126px 0 76px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 8, 10, 0.08), var(--bg) 96%),
    radial-gradient(circle at 80% 30%, rgba(255, 153, 31, 0.07), transparent 26rem);
}

.hero::before {
  content: "";
  position: absolute;
  right: -15%;
  bottom: 4%;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 189, 74, 0.4), transparent);
  transform: rotate(-7deg);
  box-shadow:
    0 -18px 65px rgba(255, 122, 24, 0.15),
    0 18px 65px rgba(131, 88, 255, 0.13);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(6px);
}

.hero-glow-one {
  top: -14rem;
  left: -11rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(131, 88, 255, 0.16);
  background: radial-gradient(circle, rgba(131, 88, 255, 0.12), transparent 68%);
}

.hero-glow-two {
  right: 21%;
  bottom: -16rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(255, 189, 74, 0.12);
  background: radial-gradient(circle, rgba(255, 122, 24, 0.1), transparent 66%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.eyebrow {
  width: fit-content;
  padding: 0.4rem 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 189, 74, 0.22);
  border-radius: 999px;
  background: rgba(255, 189, 74, 0.07);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(255, 189, 74, 0.11);
}

.hero h1 {
  max-width: 660px;
  margin: 1.25rem 0 1.15rem;
  font-size: clamp(3rem, 6.2vw, 5.7rem);
  font-weight: 950;
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(108deg, #fff4cd 2%, var(--gold-bright) 42%, var(--orange) 87%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 590px;
  margin: 0;
  color: #b9b9c1;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.9;
}

.hero-offer {
  width: min(100%, 520px);
  min-height: 86px;
  margin-top: 1.55rem;
  padding: 0.85rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.82rem;
  border: 1px solid rgba(255, 189, 74, 0.24);
  border-radius: var(--radius-md);
  background:
    linear-gradient(120deg, rgba(255, 189, 74, 0.12), rgba(255, 122, 24, 0.04)),
    rgba(17, 17, 20, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.offer-icon {
  width: 47px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #111;
  background: linear-gradient(145deg, var(--gold-bright), var(--orange));
}

.offer-icon svg {
  width: 25px;
}

.hero-offer div:nth-child(2) {
  display: grid;
}

.hero-offer div:nth-child(2) span {
  color: var(--muted);
  font-size: 0.76rem;
}

.hero-offer div:nth-child(2) strong {
  margin-top: 0.06rem;
  font-size: 1.02rem;
  line-height: 1.5;
}

.hero-offer > b {
  color: var(--gold-bright);
  font-size: 1.7rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.hero-offer b small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  min-height: 50px;
  padding: 0.76rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.3;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.button svg,
.inline-link svg,
.text-link svg {
  width: 18px;
  transition: transform 0.2s ease;
}

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

.button:hover svg,
.inline-link:hover svg,
.text-link:hover svg {
  transform: translateX(-3px);
}

.button-primary {
  color: #0c0c0e;
  background: linear-gradient(135deg, var(--gold-bright), var(--orange));
  box-shadow: 0 14px 34px rgba(255, 122, 24, 0.19);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 42px rgba(255, 122, 24, 0.29);
}

.button-ghost {
  border-color: var(--line-strong);
  color: #f4f4f5;
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 189, 74, 0.34);
  background: rgba(255, 189, 74, 0.07);
}

.hero-notes {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem 1.15rem;
  color: #92929c;
  font-size: 0.78rem;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}

.hero-notes svg {
  width: 16px;
  color: var(--gold);
  stroke-width: 2.3;
}

.hero-proof {
  width: fit-content;
  margin-top: 1.15rem;
  padding: 0.55rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.72rem;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #a8a8b1;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.7rem;
  font-weight: 650;
}

.hero-proof strong {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-proof b {
  direction: ltr;
  margin-inline-end: 0.28rem;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.hero-proof i {
  width: 1px;
  height: 18px;
  background: var(--line-strong);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.visual-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.16;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background: #111;
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.55),
    0 0 0 10px rgba(255, 255, 255, 0.015),
    -26px 30px 75px rgba(131, 88, 255, 0.09);
}

.visual-frame::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 189, 74, 0.11);
  pointer-events: none;
}

.visual-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -30%;
  bottom: -30%;
  left: -42%;
  width: 28%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 196, 85, 0.1),
    rgba(255, 255, 255, 0.14),
    transparent
  );
  transform: skewX(-16deg);
  animation: stadiumLightSweep 7s ease-in-out infinite;
  pointer-events: none;
}

.visual-frame img,
.visual-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
  background: #0b0b0d;
}

.visual-frame video {
  transform: scale(1.025);
}

.visual-shade {
  z-index: 1;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(270deg, rgba(6, 6, 8, 0.26), transparent 52%),
    linear-gradient(0deg, rgba(6, 6, 8, 0.42), transparent 42%);
}

@keyframes stadiumLightSweep {
  0%,
  18% {
    left: -42%;
    opacity: 0;
  }

  35% {
    opacity: 0.75;
  }

  62%,
  100% {
    left: 116%;
    opacity: 0;
  }
}

.visual-badge {
  position: absolute;
  z-index: 4;
  right: 1.15rem;
  bottom: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.62rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(8, 8, 10, 0.7);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.visual-badge-icon {
  width: 38px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #111;
  background: var(--gold);
}

.visual-badge-icon svg {
  width: 19px;
}

.visual-badge > span:last-child {
  display: grid;
  line-height: 1.35;
}

.visual-badge small {
  color: var(--muted);
  font-size: 0.65rem;
}

.visual-badge strong {
  font-size: 0.85rem;
}

.floating-card {
  position: absolute;
  z-index: 4;
  min-width: 176px;
  padding: 0.65rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.64rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(15, 15, 18, 0.83);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.floating-card-top {
  top: 8%;
  left: -1.5rem;
}

.floating-card-bottom {
  right: -1.2rem;
  bottom: 15%;
}

.floating-card > span:last-child {
  display: grid;
  line-height: 1.35;
}

.floating-card small {
  color: var(--muted);
  font-size: 0.63rem;
}

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

.card-icon,
.quality-pill {
  width: 38px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--gold);
  background: rgba(255, 189, 74, 0.1);
}

.card-icon svg {
  width: 20px;
}

.quality-pill {
  color: #111;
  background: linear-gradient(135deg, var(--gold-bright), var(--orange));
  font-size: 0.72rem;
  font-weight: 950;
}

.trust-strip {
  position: relative;
  z-index: 4;
  border-block: 1px solid var(--line);
  background: rgba(13, 13, 16, 0.78);
}

.trust-shell {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  position: relative;
  padding: 1.4rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.76rem;
}

.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  width: 1px;
  height: 42%;
  background: var(--line);
}

.trust-icon {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 189, 74, 0.17);
  border-radius: 13px;
  color: var(--gold);
  background: rgba(255, 189, 74, 0.06);
}

.trust-icon svg {
  width: 21px;
}

.trust-item > span:last-child {
  display: grid;
  line-height: 1.5;
}

.trust-item strong {
  font-size: 0.88rem;
}

.trust-item small {
  color: var(--muted);
  font-size: 0.7rem;
}

.section {
  position: relative;
  padding: 108px 0;
}

.section-heading {
  margin-bottom: 2.25rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section-heading h2,
.feature-intro h2,
.device-panel h2,
.faq-intro h2,
.cta-card h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.section-heading > p,
.feature-intro > p,
.device-panel > div:first-child > p,
.faq-intro > p,
.cta-card > div:nth-child(2) > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.section-heading.centered {
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  display: grid;
  justify-items: center;
  text-align: center;
}

.section-heading.centered p {
  margin-top: 0.7rem;
}

.catalog-label {
  margin: 0 0 1.2rem;
  padding: 0.72rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.catalog-product {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 800;
}

.catalog-product-icon {
  width: 38px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #101012;
  background: linear-gradient(135deg, var(--gold-bright), var(--orange));
  font-size: 1rem;
  font-weight: 950;
}

.catalog-label > span:last-child {
  color: var(--muted);
  font-size: 0.75rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.price-card {
  position: relative;
  min-height: 395px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.025), transparent 42%),
    var(--surface);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.price-card:nth-child(n + 4) {
  grid-column: span 3;
}

.price-card::after {
  content: "";
  position: absolute;
  top: -7rem;
  left: -7rem;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: rgba(255, 189, 74, 0.06);
  filter: blur(8px);
  pointer-events: none;
}

.price-card:hover {
  border-color: rgba(255, 189, 74, 0.25);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.25);
  transform: translateY(-6px);
}

.price-card-featured {
  border-color: rgba(255, 189, 74, 0.38);
  background:
    radial-gradient(circle at 0 0, rgba(255, 122, 24, 0.13), transparent 44%),
    linear-gradient(150deg, rgba(255, 189, 74, 0.07), transparent 52%),
    #141310;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 211, 109, 0.12);
}

.popular-label {
  position: absolute;
  top: 0;
  left: 1.25rem;
  padding: 0.43rem 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 0 0 11px 11px;
  color: #0c0c0e;
  background: linear-gradient(135deg, var(--gold-bright), var(--orange));
  font-size: 0.67rem;
  font-weight: 900;
}

.popular-label svg {
  width: 14px;
  fill: currentColor;
  stroke-width: 0;
}

.plan-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.plan-icon {
  width: 47px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.025);
}

.plan-icon svg {
  width: 24px;
}

.plan-head > div {
  display: grid;
}

.plan-head span {
  color: var(--muted);
  font-size: 0.7rem;
}

.plan-head h3 {
  margin: 0.08rem 0 0;
  font-size: 1.08rem;
}

.price {
  margin: 1.55rem 0 1.25rem;
  display: flex;
  align-items: end;
  gap: 0.45rem;
}

.price strong {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.price-card-featured .price strong {
  color: var(--gold-bright);
}

.price span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.bonus {
  width: fit-content;
  margin-top: 1rem;
  padding: 0.28rem 0.55rem;
  border: 1px solid rgba(255, 189, 74, 0.2);
  border-radius: 999px;
  color: var(--gold-bright);
  background: rgba(255, 189, 74, 0.06);
  font-size: 0.67rem;
  font-weight: 850;
}

.bonus + .price {
  margin-top: 0.8rem;
}

.plan-list {
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  color: #b6b6be;
  font-size: 0.78rem;
  list-style: none;
}

.plan-list li {
  position: relative;
  padding-inline-start: 1.35rem;
}

.plan-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 0.04rem;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 189, 74, 0.09);
  font-size: 0.61rem;
  font-weight: 900;
}

.plan-button {
  min-height: 46px;
  margin-top: auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  color: #f7f7f8;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.83rem;
  font-weight: 850;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.plan-button:hover,
.plan-button:focus-visible {
  border-color: rgba(255, 189, 74, 0.45);
  color: #0b0b0c;
  background: linear-gradient(135deg, var(--gold-bright), var(--orange));
  transform: translateY(-2px);
}

.price-card-featured .plan-button {
  border-color: transparent;
  color: #0b0b0c;
  background: linear-gradient(135deg, var(--gold-bright), var(--orange));
  box-shadow: 0 12px 28px rgba(255, 122, 24, 0.16);
}

.package-help {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.025);
}

.package-help > div {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.help-icon {
  width: 38px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: var(--gold);
  background: rgba(255, 189, 74, 0.08);
  font-weight: 900;
}

.package-help > div > span:last-child {
  display: grid;
  line-height: 1.45;
}

.package-help strong {
  font-size: 0.84rem;
}

.package-help small {
  color: var(--muted);
  font-size: 0.71rem;
}

.inline-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--gold);
  font-size: 0.79rem;
  font-weight: 850;
}

.features {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 50%, rgba(131, 88, 255, 0.1), transparent 30rem),
    var(--bg-soft);
}

.feature-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 4rem;
}

.feature-intro h2 {
  max-width: 450px;
}

.feature-intro > p {
  margin-top: 1rem;
  line-height: 1.9;
}

.feature-intro .text-link {
  margin-top: 1.2rem;
}

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

.feature-card {
  min-height: 235px;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 52%),
    rgba(17, 17, 20, 0.78);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.feature-card:nth-child(2),
.feature-card:nth-child(4),
.feature-card:nth-child(6) {
  transform: translateY(1.25rem);
}

.feature-card:nth-child(2):hover,
.feature-card:nth-child(4):hover,
.feature-card:nth-child(6):hover {
  transform: translateY(calc(1.25rem - 5px));
}

.feature-card:hover {
  border-color: rgba(131, 88, 255, 0.3);
  transform: translateY(-5px);
}

.feature-icon,
.step-icon {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(131, 88, 255, 0.2);
  border-radius: 15px;
  color: #a78bfa;
  background: rgba(131, 88, 255, 0.08);
}

.feature-icon svg,
.step-icon svg {
  width: 25px;
}

.feature-card h3 {
  margin: 1.1rem 0 0.42rem;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.75;
}

.devices {
  padding-block: 76px;
}

.device-panel {
  padding: clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
  border: 1px solid rgba(255, 189, 74, 0.16);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 122, 24, 0.12), transparent 24rem),
    linear-gradient(135deg, #141310, #101013 68%);
  box-shadow: var(--shadow);
}

.device-panel h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}

.device-panel > div:first-child > p {
  margin-top: 0.75rem;
  font-size: 0.88rem;
}

.device-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.device-list > div {
  min-width: 0;
  min-height: 118px;
  padding: 1rem 0.55rem;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 17px;
  color: #d8d8dd;
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.device-list > div:hover {
  border-color: rgba(255, 189, 74, 0.32);
  transform: translateY(-4px);
}

.device-list svg {
  width: 30px;
  color: var(--gold);
}

.device-list span {
  font-size: 0.72rem;
  font-weight: 750;
}

.confidence {
  padding-top: 42px;
}

.confidence-panel {
  position: relative;
  padding: clamp(1.7rem, 4.5vw, 3.2rem);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0 100%, rgba(131, 88, 255, 0.12), transparent 26rem),
    linear-gradient(135deg, rgba(255, 189, 74, 0.07), transparent 48%),
    var(--surface);
  box-shadow: var(--shadow);
}

.confidence-panel::before {
  content: "";
  position: absolute;
  top: -6rem;
  left: 34%;
  width: 1px;
  height: calc(100% + 12rem);
  background: linear-gradient(transparent, rgba(255, 189, 74, 0.24), transparent);
  transform: rotate(18deg);
}

.confidence-copy,
.confidence-points {
  position: relative;
  z-index: 1;
}

.confidence-copy h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(2rem, 3.7vw, 3.15rem);
  line-height: 1.22;
  letter-spacing: -0.04em;
}

.confidence-copy > p {
  max-width: 530px;
  margin: 1rem 0 0;
  color: var(--muted);
}

.confidence-copy .button {
  margin-top: 1.4rem;
}

.confidence-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.confidence-points > div {
  min-height: 138px;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.028);
}

.confidence-points > div > span {
  width: 34px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  color: var(--gold);
  background: rgba(255, 189, 74, 0.08);
  font-size: 0.65rem;
  font-weight: 900;
}

.confidence-points p {
  margin: 0;
  display: grid;
  line-height: 1.55;
}

.confidence-points strong {
  color: #f3f3f5;
  font-size: 0.83rem;
}

.confidence-points small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.7;
}

.steps {
  background: var(--bg-soft);
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.steps-grid::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 4rem;
  right: 16%;
  left: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 189, 74, 0.34), transparent);
}

.step-card {
  position: relative;
  z-index: 1;
  min-height: 250px;
  padding: 1.55rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.step-number {
  position: absolute;
  top: 0.8rem;
  left: 1rem;
  color: rgba(255, 255, 255, 0.04);
  font-size: 4.5rem;
  font-weight: 950;
  line-height: 1;
}

.step-icon {
  position: relative;
  z-index: 1;
  color: var(--gold);
  border-color: rgba(255, 189, 74, 0.18);
  background: rgba(255, 189, 74, 0.07);
}

.step-card h3 {
  position: relative;
  z-index: 1;
  margin: 1.15rem 0 0.42rem;
  font-size: 1.08rem;
}

.step-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.81rem;
}

.reviews {
  overflow: hidden;
}

.reviews::before {
  content: "";
  position: absolute;
  right: -14rem;
  top: 8rem;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: rgba(255, 122, 24, 0.07);
  filter: blur(35px);
}

.review-summary {
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 2rem;
}

.review-summary h2 {
  margin: 0.4rem 0 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.rating-panel {
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 189, 74, 0.17);
  border-radius: 19px;
  background: rgba(255, 189, 74, 0.05);
}

.rating-number {
  display: flex;
  align-items: end;
  gap: 0.35rem;
}

.rating-number strong {
  color: var(--gold-bright);
  font-size: 2.6rem;
  font-weight: 950;
  line-height: 1;
}

.rating-number span {
  color: var(--muted);
  font-size: 0.75rem;
}

.stars {
  direction: ltr;
  color: var(--gold);
  font-size: 1.12rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.rating-copy {
  margin-top: 0.42rem;
  color: var(--muted);
  font-size: 0.72rem;
}

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

.review-card {
  min-height: 255px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 55%),
    var(--surface);
}

.review-card-extra {
  display: none;
}

.reviews-grid.show-all .review-card-extra {
  display: flex;
}

.reviews-more {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.reviews-toggle {
  min-width: 190px;
  cursor: pointer;
}

.review-card .stars {
  font-size: 0.9rem;
}

.review-card blockquote {
  margin: 1rem 0 1.4rem;
  color: #d1d1d6;
  font-size: 0.91rem;
  line-height: 1.9;
}

.review-person {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.review-avatar {
  width: 40px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--gold);
  background: rgba(255, 189, 74, 0.08);
  font-size: 0.84rem;
  font-weight: 900;
}

.review-person > span:last-child {
  display: grid;
  line-height: 1.4;
}

.review-person strong {
  font-size: 0.8rem;
}

.review-person small {
  color: var(--muted);
  font-size: 0.66rem;
}

.stats-row {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  padding: 1.05rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.022);
  text-align: center;
}

.stat-card strong {
  color: var(--gold-bright);
  font-size: 1.7rem;
  font-weight: 950;
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.75rem;
}

.subscriber-stat[hidden] {
  display: none;
}

.faq {
  background:
    radial-gradient(circle at 15% 50%, rgba(131, 88, 255, 0.09), transparent 27rem),
    var(--bg-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 4rem;
}

.faq-intro {
  position: sticky;
  top: 116px;
}

.faq-intro > p {
  margin-top: 0.9rem;
}

.faq-intro .button {
  margin-top: 1.35rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface);
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(255, 189, 74, 0.22);
}

.faq-item summary {
  min-height: 67px;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #ededf0;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  position: relative;
  width: 30px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.faq-item summary span::before,
.faq-item summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  border-radius: 99px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-item summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
  font-size: 0.81rem;
  line-height: 1.85;
}

.final-cta {
  padding-block: 76px 104px;
}

.cta-card {
  position: relative;
  min-height: 245px;
  padding: clamp(1.8rem, 5vw, 3.4rem);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
  border: 1px solid rgba(255, 189, 74, 0.26);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(130deg, rgba(255, 189, 74, 0.13), rgba(255, 122, 24, 0.035) 46%, rgba(131, 88, 255, 0.08)),
    #121113;
  box-shadow: var(--shadow);
}

.cta-card::before {
  content: "";
  position: absolute;
  top: -45%;
  left: 32%;
  width: 1px;
  height: 190%;
  background: rgba(255, 189, 74, 0.19);
  transform: rotate(31deg);
  box-shadow:
    40px 0 70px rgba(255, 122, 24, 0.16),
    -40px 0 70px rgba(131, 88, 255, 0.12);
}

.cta-glow {
  position: absolute;
  right: -8rem;
  bottom: -14rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: rgba(255, 122, 24, 0.08);
  filter: blur(18px);
}

.cta-card > div:not(.cta-glow) {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  max-width: 650px;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
}

.cta-card > div:nth-child(2) > p {
  margin-top: 0.75rem;
}

.cta-actions {
  display: grid;
  justify-items: start;
  gap: 0.7rem;
}

.button-whatsapp {
  min-width: 205px;
  color: #07120b;
  background: linear-gradient(135deg, #62eb92, var(--green));
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.16);
}

.button-whatsapp svg {
  width: 21px;
  fill: currentColor;
  stroke: none;
}

.cta-actions > span {
  direction: ltr;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.site-footer {
  padding: 2.1rem 0;
  border-top: 1px solid var(--line);
  background: #070709;
}

.footer-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.footer-shell > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.footer-shell nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.footer-shell nav a {
  color: #a7a7af;
  font-size: 0.74rem;
  transition: color 0.2s ease;
}

.footer-shell nav a:hover {
  color: var(--gold);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  color: #686872;
  font-size: 0.68rem;
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  z-index: 950;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: 0 15px 32px rgba(0, 0, 0, 0.32);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.floating-whatsapp svg {
  width: 29px;
  fill: currentColor;
  stroke: none;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.38),
    0 0 0 7px rgba(37, 211, 102, 0.12);
  transform: translateY(-4px) scale(1.02);
}

.floating-label {
  position: absolute;
  right: calc(100% + 0.65rem);
  width: max-content;
  padding: 0.35rem 0.58rem;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #eee;
  background: rgba(12, 12, 14, 0.9);
  font-size: 0.68rem;
  font-weight: 750;
  opacity: 0;
  pointer-events: none;
  transform: translateX(5px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.floating-whatsapp:hover .floating-label {
  opacity: 1;
  transform: translateX(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid rgba(255, 189, 74, 0.45);
  outline-offset: 3px;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 1.15rem;
  }

  .hero-shell {
    gap: 2rem;
  }

  .floating-card-top {
    left: -0.6rem;
  }

  .floating-card-bottom {
    right: -0.6rem;
  }

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

  .trust-item:nth-child(2)::after {
    display: none;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .price-card,
  .price-card:nth-child(n + 4) {
    grid-column: auto;
  }

  .price-card-featured {
    grid-row: span 1;
  }

  .feature-layout,
  .faq-layout {
    gap: 2.5rem;
  }

  .device-panel {
    grid-template-columns: 1fr;
  }

  .confidence-panel {
    grid-template-columns: 1fr;
  }

  .review-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .nav-shell {
    min-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 999;
    top: 70px;
    right: 1rem;
    left: 1rem;
    padding: 0.85rem;
    display: grid;
    gap: 0.2rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(13, 13, 16, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
    backdrop-filter: blur(18px);
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 0.8rem 0.9rem;
    border-radius: 11px;
  }

  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  .main-nav a::after {
    display: none;
  }

  .nav-whatsapp {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 72px;
  }

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

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

  .eyebrow,
  .hero-offer {
    margin-inline: auto;
  }

  .hero-lead {
    margin-inline: auto;
  }

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

  .hero-proof {
    margin-inline: auto;
  }

  .hero-visual {
    width: min(100%, 620px);
    margin: 0.8rem auto 0;
  }

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

  .feature-intro {
    max-width: 620px;
  }

  .faq-intro {
    position: static;
  }

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

  .review-card {
    min-height: 225px;
  }

  .cta-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-shell {
    grid-template-columns: 1fr auto;
  }

  .footer-shell > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .hero-shell,
  .trust-shell,
  .section-shell,
  .footer-shell {
    width: min(calc(100% - 1.3rem), var(--max-width));
  }

  .brand-mark {
    width: 39px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .hero {
    padding-top: 103px;
  }

  .hero h1 {
    margin-top: 1rem;
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .hero-lead {
    font-size: 0.94rem;
  }

  .hero-offer {
    grid-template-columns: auto 1fr;
    text-align: right;
  }

  .hero-offer > b {
    grid-column: 2;
    margin-top: -0.35rem;
    justify-self: start;
    font-size: 1.5rem;
  }

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

  .hero-actions .button {
    padding-inline: 0.7rem;
    font-size: 0.78rem;
  }

  .hero-notes {
    gap: 0.55rem 0.75rem;
    font-size: 0.7rem;
  }

  .hero-proof {
    max-width: 100%;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.63rem;
  }

  .visual-frame {
    border-radius: 23px;
  }

  .floating-card {
    min-width: 147px;
    padding: 0.53rem 0.58rem;
  }

  .floating-card-top {
    top: 7%;
    left: -0.15rem;
  }

  .floating-card-bottom {
    right: -0.15rem;
    bottom: 11%;
  }

  .card-icon,
  .quality-pill {
    width: 33px;
  }

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

  .visual-badge {
    right: 0.7rem;
    bottom: 0.7rem;
    padding: 0.5rem;
  }

  .visual-badge-icon {
    width: 33px;
  }

  .trust-shell {
    width: 100%;
  }

  .trust-item {
    padding: 1.05rem 0.65rem;
    gap: 0.5rem;
  }

  .trust-icon {
    width: 37px;
  }

  .trust-item strong {
    font-size: 0.76rem;
  }

  .trust-item small {
    font-size: 0.63rem;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    display: grid;
    align-items: start;
    gap: 0.65rem;
  }

  .section-heading h2,
  .feature-intro h2,
  .faq-intro h2 {
    font-size: 2rem;
  }

  .section-heading > p {
    font-size: 0.84rem;
  }

  .catalog-label {
    align-items: flex-start;
  }

  .catalog-label > span:last-child {
    max-width: 125px;
    text-align: left;
  }

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

  .price-card {
    min-height: 365px;
  }

  .package-help {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .feature-card {
    min-height: 205px;
  }

  .feature-card:nth-child(2),
  .feature-card:nth-child(4),
  .feature-card:nth-child(6),
  .feature-card:nth-child(2):hover,
  .feature-card:nth-child(4):hover,
  .feature-card:nth-child(6):hover {
    transform: none;
  }

  .devices {
    padding-block: 54px;
  }

  .device-panel {
    gap: 1.6rem;
    border-radius: 24px;
  }

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

  .confidence {
    padding-top: 18px;
  }

  .confidence-panel {
    gap: 1.7rem;
    border-radius: 24px;
  }

  .confidence-copy h2 {
    font-size: 2rem;
  }

  .confidence-points {
    grid-template-columns: 1fr;
  }

  .confidence-points > div {
    min-height: auto;
  }

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

  .steps-grid::before {
    display: none;
  }

  .step-card {
    min-height: 215px;
  }

  .rating-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .stat-card {
    justify-content: space-between;
  }

  .cta-card {
    border-radius: 24px;
  }

  .cta-actions {
    width: 100%;
  }

  .button-whatsapp {
    width: 100%;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-shell nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-shell > p {
    grid-column: auto;
    grid-row: auto;
  }

  .copyright {
    grid-column: auto;
    width: 100%;
  }

  .floating-whatsapp {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 54px;
    height: 54px;
  }

  .floating-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Full-bleed sports hero, inspired by the supplied layout while keeping Store25 original. */
.hero {
  min-height: min(900px, 100svh);
  padding: 126px 0 64px;
  align-items: end;
  background: #070709;
}

.hero::before {
  z-index: 1;
  right: -8%;
  bottom: 2.5rem;
  width: 56%;
  opacity: 0.7;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 18%;
  background: linear-gradient(0deg, var(--bg), transparent);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #08080a url("assets/tiger-hero.webp") center / cover no-repeat;
}

.hero-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
}

.hero-media-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.28), rgba(5, 5, 7, 0.08) 42%, rgba(5, 5, 7, 0.86) 100%),
    linear-gradient(180deg, rgba(5, 5, 7, 0.52), transparent 27%, rgba(5, 5, 7, 0.1) 48%, rgba(5, 5, 7, 0.94) 100%);
}

.hero-shell {
  grid-template-columns: 1fr;
  align-items: end;
}

.hero-copy {
  max-width: 690px;
  padding: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(9, 9, 12, 0.86), rgba(9, 9, 12, 0.5));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
}

.hero-lead {
  color: #d0d0d5;
}

.hero-offer,
.hero-proof {
  background: rgba(9, 9, 12, 0.64);
}

.device-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.device-list > div {
  min-height: 108px;
}

.confidence-points > div {
  min-height: 130px;
}

@media (max-width: 840px) {
  .hero {
    min-height: 860px;
    padding: 100px 0 48px;
  }

  .hero-media-shade {
    background:
      linear-gradient(180deg, rgba(5, 5, 7, 0.38), transparent 28%, rgba(5, 5, 7, 0.28) 49%, rgba(5, 5, 7, 0.97) 84%, var(--bg) 100%);
  }

  .hero-copy {
    max-width: 620px;
    margin-inline: auto;
    padding: 1.25rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(8, 8, 10, 0.2), rgba(8, 8, 10, 0.82));
  }

  .hero h1 {
    font-size: clamp(2.7rem, 10vw, 4.2rem);
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 820px;
    padding: 92px 0 34px;
  }

  .hero-media video {
    object-position: 47% center;
  }

  .hero-copy {
    padding: 1rem 0.82rem;
    border-color: rgba(255, 255, 255, 0.07);
  }

  .hero h1 {
    margin-bottom: 0.8rem;
    font-size: clamp(2.45rem, 12vw, 3.55rem);
  }

  .hero-offer {
    margin-top: 1.05rem;
  }

  .hero-actions {
    margin-top: 1.1rem;
  }

  .hero-notes {
    margin-top: 0.95rem;
  }

.hero-proof {
  margin-top: 0.8rem;
}

  .device-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hero-credit {
  position: absolute;
  z-index: 4;
  left: max(1rem, calc((100% - var(--max-width)) / 2));
  bottom: 1rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.58rem;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.hero-credit:hover,
.hero-credit:focus-visible {
  color: #fff;
}

.trademark-note {
  grid-column: 1 / -1;
  color: var(--muted-2);
  font-size: 0.62rem;
  text-align: center;
}

.content-stats {
  position: relative;
  z-index: 3;
  padding: 30px 0 18px;
  background: var(--bg);
}

.content-stats-shell {
  width: min(calc(100% - 2.5rem), var(--max-width));
  margin-inline: auto;
  padding: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  border: 1px solid rgba(255, 189, 74, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 189, 74, 0.09), transparent 22rem),
    rgba(17, 17, 20, 0.92);
  box-shadow: var(--shadow);
}

.content-stats-shell > div {
  min-height: 108px;
  display: grid;
  place-items: center;
  align-content: center;
  border-inline-start: 1px solid var(--line);
  text-align: center;
}

.content-stats-shell > div:last-of-type {
  border-inline-start: 0;
}

.content-stats strong {
  direction: ltr;
  color: var(--gold-bright);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 950;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.content-stats span {
  margin-top: 0.25rem;
  color: #f4f4f5;
  font-size: 0.85rem;
  font-weight: 800;
}

.content-stats small {
  grid-column: 1 / -1;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 0.69rem;
  text-align: center;
}

.about {
  background:
    radial-gradient(circle at 12% 50%, rgba(131, 88, 255, 0.08), transparent 26rem),
    var(--bg-soft);
}

.about-panel {
  padding: clamp(1.7rem, 5vw, 3.6rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 189, 74, 0.07), transparent 48%), var(--surface);
  box-shadow: var(--shadow);
}

.about-copy h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.22;
  letter-spacing: -0.04em;
}

.about-copy p {
  max-width: 650px;
  margin: 1rem 0 0;
  color: var(--muted);
}

.about-values {
  display: grid;
  gap: 0.75rem;
}

.about-values span {
  min-height: 72px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.about-values b {
  width: 36px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  color: #111;
  background: linear-gradient(135deg, var(--gold-bright), var(--orange));
  font-size: 0.68rem;
}

.about-values strong {
  font-size: 0.84rem;
}

.policies {
  background: var(--bg-soft);
}

.policy-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.policy-item {
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.policy-item[open] {
  border-color: rgba(255, 189, 74, 0.22);
}

.policy-item summary {
  min-height: 76px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: #f6f6f7;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 850;
  list-style: none;
}

.policy-item summary::-webkit-details-marker {
  display: none;
}

.policy-item summary span {
  position: relative;
  width: 30px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  border-radius: 9px;
  background: rgba(255, 189, 74, 0.08);
}

.policy-item summary span::before,
.policy-item summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}

.policy-item summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease;
}

.policy-item[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.policy-item > div {
  padding: 0 1rem 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
}

.policy-item p {
  margin: 1rem 0 0;
}

.policy-item ul {
  margin: 0.8rem 0 0;
  padding: 0 1.1rem 0 0;
}

.policy-item li + li {
  margin-top: 0.55rem;
}

@media (max-width: 920px) {
  .about-panel,
  .policy-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .content-stats-shell {
    width: min(calc(100% - 1.3rem), var(--max-width));
    padding: 0.85rem 0.6rem;
    gap: 0.35rem;
    border-radius: 19px;
  }

  .content-stats-shell > div {
    min-height: 86px;
  }

  .content-stats strong {
    font-size: clamp(1.3rem, 7vw, 1.85rem);
  }

  .content-stats span {
    font-size: 0.72rem;
  }

  .content-stats small {
    padding-inline: 0.4rem;
    font-size: 0.6rem;
  }

  .about-panel {
    gap: 1.5rem;
    border-radius: 24px;
  }

  .about-copy h2 {
    font-size: 2rem;
  }

  .policy-item {
    border-radius: 17px;
  }

  .hero-credit {
    left: 0.75rem;
    bottom: 0.45rem;
    max-width: 55%;
    font-size: 0.48rem;
  }
}

/* Actual Tiger app preview */
.app-showcase {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 189, 74, 0.1), transparent 25rem),
    radial-gradient(circle at 8% 58%, rgba(131, 88, 255, 0.08), transparent 28rem),
    var(--bg-soft);
}

.app-showcase-panel {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 189, 74, 0.16);
  border-radius: 34px;
  background:
    linear-gradient(128deg, rgba(255, 189, 74, 0.08), transparent 42%),
    linear-gradient(180deg, #16150f, #0b0b0d 70%);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.app-showcase-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -12rem -17rem auto;
  width: 36rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 189, 74, 0.13);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 189, 74, 0.12), transparent 67%);
}

.app-showcase-copy {
  padding: clamp(2rem, 5vw, 4.4rem);
}

.app-real-badge {
  width: fit-content;
  margin-bottom: 1.35rem;
  padding: 0.42rem 0.68rem;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border: 1px solid rgba(37, 211, 102, 0.23);
  border-radius: 999px;
  color: #a6edbf;
  background: rgba(37, 211, 102, 0.07);
  font-size: 0.75rem;
  font-weight: 800;
}

.app-real-badge svg {
  width: 15px;
}

.app-showcase-copy .section-kicker {
  display: block;
}

.app-showcase-copy h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(2.25rem, 4.5vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.app-showcase-copy > p {
  max-width: 500px;
  margin: 1rem 0 0;
  color: #b9b9c1;
}

.app-capabilities {
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.app-capabilities span {
  padding: 0.42rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d6d6db;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.75rem;
  font-weight: 720;
}

.app-phones-visual {
  position: relative;
  min-width: 0;
  min-height: 100%;
  margin: 0;
  padding: clamp(1.3rem, 3vw, 2.4rem) clamp(1rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(11, 11, 13, 0.9), transparent 28%),
    radial-gradient(circle at center, rgba(255, 189, 74, 0.12), transparent 62%);
}

.app-phones-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  height: auto;
  border-radius: 24px;
  filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.44));
}

.app-visual-label {
  position: absolute;
  z-index: 2;
  top: 1.35rem;
  left: 1.35rem;
  padding: 0.44rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 11px;
  color: #e9e9eb;
  background: rgba(8, 8, 10, 0.76);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  font-size: 0.75rem;
  font-weight: 800;
}

.app-gallery-heading {
  margin: 3.2rem 0 1.3rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.app-gallery-heading h3 {
  margin: 0.3rem 0 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.app-gallery-heading p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.app-screens {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.app-screen-card {
  position: relative;
  isolation: isolate;
  aspect-ratio: 0.46;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #090909;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.app-screen-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.app-screen-card:hover,
.app-screen-card:focus-visible {
  z-index: 2;
  border-color: rgba(255, 189, 74, 0.38);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.34);
  transform: translateY(-7px);
}

.app-screen-card span {
  position: absolute;
  z-index: 2;
  top: 0.65rem;
  right: 0.65rem;
  padding: 0.34rem 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  color: #fff;
  background: rgba(7, 7, 8, 0.78);
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
  font-weight: 800;
}

.app-screen-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-image-note {
  margin: 1rem 0 0;
  color: var(--muted-2);
  font-size: 0.75rem;
}

@media (max-width: 920px) {
  .app-showcase-panel {
    grid-template-columns: 1fr;
  }

  .app-phones-visual {
    min-height: 420px;
    padding-top: 0;
  }

  .app-phones-visual img {
    width: min(100%, 720px);
  }

  .app-visual-label {
    top: 0.5rem;
  }
}

@media (max-width: 840px) {
  .app-gallery-heading {
    align-items: start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .app-screens {
    width: calc(100% + 0.65rem);
    padding: 0.35rem 0 1rem 0.65rem;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(225px, 39vw);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 189, 74, 0.4) rgba(255, 255, 255, 0.04);
  }

  .app-screen-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  .app-showcase {
    padding-top: 72px;
  }

  .app-showcase-panel {
    min-height: 0;
    border-radius: 24px;
  }

  .app-showcase-copy {
    padding: 1.45rem 1.15rem 1rem;
  }

  .app-real-badge {
    margin-bottom: 1rem;
  }

  .app-showcase-copy h2 {
    font-size: clamp(2.15rem, 12vw, 3.15rem);
  }

  .app-showcase-copy > p {
    font-size: 0.88rem;
  }

  .app-capabilities {
    margin: 1.15rem 0;
    gap: 0.4rem;
  }

  .app-capabilities span {
    padding: 0.35rem 0.55rem;
    font-size: 0.75rem;
  }

  .app-phones-visual {
    min-height: 270px;
    padding: 0 0.45rem 1rem;
  }

  .app-phones-visual img {
    border-radius: 16px;
  }

  .app-visual-label {
    top: 0.2rem;
    left: 0.7rem;
    font-size: 0.75rem;
  }

  .app-gallery-heading {
    margin-top: 2.3rem;
  }

  .app-screens {
    grid-auto-columns: minmax(215px, 72vw);
  }

  .app-screen-card {
    border-radius: 18px;
  }
}
