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

html {
  scroll-behavior: smooth;
}

:root {
  --neon: #00b8ff;
  --neon-bright: #40d4ff;
  --neon-glow: rgba(0, 184, 255, 0.45);
  --deep: #030810;
  --surface: rgba(4, 14, 38, 0.7);
  --border: rgba(0, 184, 255, 0.18);
  --white: #e8f5ff;
  --muted: rgba(232, 245, 255, 0.5);
}

body {
  background: var(--deep);
  color: var(--white);
  font-family: "Exo 2", sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── ANIMATED BACKGROUND ── */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 100% 55% at 50% -5%,
      rgba(0, 80, 200, 0.22) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 50% 50% at 85% 85%,
      rgba(0, 60, 160, 0.14) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 40% 40% at 15% 75%,
      rgba(0, 40, 120, 0.1) 0%,
      transparent 55%
    ),
    #030810;
}

/* floating diamond shards */
.shards {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.shard {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--neon);
  opacity: 0;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: floatShard linear infinite;
  filter: blur(0.5px);
}

.shard:nth-child(1) {
  left: 8%;
  animation-duration: 14s;
  animation-delay: 0s;
  width: 4px;
  height: 4px;
  opacity: 0.35;
}

.shard:nth-child(2) {
  left: 20%;
  animation-duration: 18s;
  animation-delay: 3s;
  width: 7px;
  height: 7px;
  opacity: 0.25;
}

.shard:nth-child(3) {
  left: 35%;
  animation-duration: 12s;
  animation-delay: 1s;
  width: 3px;
  height: 3px;
  opacity: 0.4;
}

.shard:nth-child(4) {
  left: 52%;
  animation-duration: 16s;
  animation-delay: 5s;
  width: 5px;
  height: 5px;
  opacity: 0.3;
}

.shard:nth-child(5) {
  left: 68%;
  animation-duration: 20s;
  animation-delay: 2s;
  width: 8px;
  height: 8px;
  opacity: 0.2;
}

.shard:nth-child(6) {
  left: 80%;
  animation-duration: 13s;
  animation-delay: 7s;
  width: 4px;
  height: 4px;
  opacity: 0.38;
}

.shard:nth-child(7) {
  left: 92%;
  animation-duration: 17s;
  animation-delay: 4s;
  width: 6px;
  height: 6px;
  opacity: 0.28;
}

.shard:nth-child(8) {
  left: 44%;
  animation-duration: 15s;
  animation-delay: 9s;
  width: 3px;
  height: 3px;
  opacity: 0.42;
}

.shard:nth-child(9) {
  left: 73%;
  animation-duration: 22s;
  animation-delay: 1.5s;
  width: 5px;
  height: 5px;
  opacity: 0.22;
}

.shard:nth-child(10) {
  left: 27%;
  animation-duration: 11s;
  animation-delay: 6s;
  width: 4px;
  height: 4px;
  opacity: 0.36;
}

@keyframes floatShard {
  0% {
    transform: translateY(110vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.4;
  }

  90% {
    opacity: 0.2;
  }

  100% {
    transform: translateY(-10vh) rotate(360deg);
    opacity: 0;
  }
}

/* ── WRAPPER ── */
.wrap {
  position: relative;
  z-index: 1;
}

/* ── TOPBAR ── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(3, 8, 16, 0.8);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 200;
}

.logo {
  font-family: "Orbitron", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-decoration: none;
  color: var(--white);
  text-shadow:
    0 0 24px var(--neon),
    0 0 50px rgba(0, 180, 255, 0.25);
}

.logo em {
  color: var(--neon-bright);
  font-style: normal;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-right a {
  color: var(--muted);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.topbar-right a:hover {
  color: var(--neon-bright);
}

.topbar-btn {
  background: linear-gradient(135deg, #0055cc, #0099ee);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 30px;
  padding: 9px 24px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(0, 140, 255, 0.35);
  transition: all 0.2s;
}

.topbar-btn:hover {
  background: linear-gradient(135deg, #0066dd, #00aaff);
  box-shadow: 0 0 34px rgba(0, 180, 255, 0.5);
  transform: translateY(-1px);
}

/* ── POLITICA ── */
.politica {
  padding: 20px 50px;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
}

.politica h1,
.politica h2,
.politica .item {
  position: relative;
  z-index: 1;
}

.politica ul{
  margin-bottom: 20px;
  list-style: none;
}

.politica li{
  font-size: 1rem;
  color: rgba(232, 245, 255, 0.6);
  margin: 0 0 5px;
  font-weight: 300;
}

/* ══════════════════════════════════════════
   HERO  –  background = image 3, full-bleed
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/bcgr-img.png")
    center/cover no-repeat;
  filter: brightness(0.55) saturate(1.3);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(3, 8, 16, 0.5) 0%,
      rgba(3, 8, 16, 0.15) 40%,
      rgba(3, 8, 16, 0.75) 100%
    ),
    linear-gradient(
      90deg,
      rgba(3, 8, 16, 0.6) 0%,
      transparent 50%,
      rgba(3, 8, 16, 0.3) 100%
    );
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 80px 48px;
}

/* Left: offer text */
.hero-text {
}

.hero-eyebrow {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon-bright);
  border: 1px solid rgba(0, 184, 255, 0.35);
  background: rgba(0, 60, 150, 0.25);
  padding: 5px 18px;
  border-radius: 20px;
  margin-bottom: 26px;
  animation: fadeUp 0.7s ease both;
  box-shadow: 0 0 18px rgba(0, 184, 255, 0.15);
}

.hero-offer {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -1px;
  animation: fadeUp 0.8s ease 0.08s both;
  text-shadow: 0 0 80px rgba(0, 180, 255, 0.3);
}

.hero-offer .pct {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2.5px var(--neon-bright);
  filter: drop-shadow(0 0 22px var(--neon));
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 1;
}

.hero-offer .welcome {
  display: block;
  color: var(--white);
}

.hero-offer .bonus-word {
  display: block;
  background: linear-gradient(90deg, #00aaff, #40d4ff, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0, 180, 255, 0.5));
  background-size: 200%;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }
}

.hero-desc,
.politica p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(232, 245, 255, 0.6);
  margin: 28px 0 40px;
  font-weight: 300;
  letter-spacing: 0.3px;
  animation: fadeUp 0.9s ease 0.16s both;
  max-width: 440px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.24s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0055cc 0%, #0099ff 100%);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow:
    0 0 40px rgba(0, 140, 255, 0.5),
    0 4px 20px rgba(0, 80, 200, 0.4);
  transition: all 0.25s;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 0 60px rgba(0, 180, 255, 0.7),
    0 6px 28px rgba(0, 100, 255, 0.5);
  background: linear-gradient(135deg, #0066dd, #00bbff);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(0, 184, 255, 0.4);
  color: var(--neon-bright);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-secondary:hover {
  background: rgba(0, 120, 200, 0.15);
  border-color: var(--neon);
  box-shadow: 0 0 24px rgba(0, 180, 255, 0.2);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Right: portrait banner */
.hero-banner-wrap {
  animation: fadeUp 1s ease 0.32s both;
  position: relative;
}

.hero-banner-wrap::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(0, 184, 255, 0.5),
    transparent 50%,
    rgba(0, 80, 200, 0.3)
  );
  z-index: 0;
  animation: borderPulse 3s ease-in-out infinite alternate;
}

@keyframes borderPulse {
  from {
    opacity: 0.5;
  }

  to {
    opacity: 1;
    box-shadow: 0 0 60px rgba(0, 180, 255, 0.4);
  }
}

.hero-banner-img {
  width: 100%;
  border-radius: 20px;
  display: block;
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 80px rgba(0, 120, 255, 0.35),
    0 20px 60px rgba(0, 0, 0, 0.6);
}

/* ── TRUST STRIP ── */
.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(0, 14, 40, 0.6);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.trust-item {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 20px;
  border-right: 1px solid var(--border);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  transition:
    background 0.2s,
    color 0.2s;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item:hover {
  background: rgba(0, 80, 180, 0.1);
  color: var(--neon-bright);
}

.trust-icon {
  font-size: 1.3rem;
  filter: drop-shadow(0 0 6px var(--neon));
}

/* ══════════════════════════════════════════
   LANDSCAPE BANNER SECTION
═══════════════════════════════════════════ */
.offer-section {
  padding: 90px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.offer-section .sec-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 14px;
  display: block;
}

.offer-section .sec-title
.politica h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 48px;
  text-shadow: 0 0 40px rgba(0, 180, 255, 0.2);
}

.offer-section .sec-title span {
  color: var(--neon-bright);
}

.landscape-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 184, 255, 0.2);
  box-shadow:
    0 0 60px rgba(0, 100, 200, 0.2),
    0 20px 60px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  cursor: pointer;
}

.landscape-banner:hover {
  transform: translateY(-6px) scale(1.005);
  box-shadow:
    0 0 100px rgba(0, 160, 255, 0.35),
    0 28px 70px rgba(0, 0, 0, 0.5);
}

.landscape-banner img {
  width: 100%;
  display: block;
}

.landscape-banner .over-cta {
  position: absolute;
  bottom: 32px;
  right: 40px;
  background: linear-gradient(135deg, #0055cc, #0099ff);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 50px;
  box-shadow: 0 0 30px rgba(0, 140, 255, 0.5);
  text-decoration: none;
  transition: all 0.2s;
}

.landscape-banner:hover .over-cta {
  box-shadow: 0 0 50px rgba(0, 180, 255, 0.7);
  background: linear-gradient(135deg, #0066dd, #00bbff);
}

/* ── HOW IT WORKS ── */
.how-section {
  padding: 80px 48px;
  background: rgba(0, 10, 32, 0.5);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how-inner .sec-label {
  display: block;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 12px;
}

.how-inner .sec-title {
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 56px;
}

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

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 30px;
  text-align: center;
  overflow: hidden;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
}

.step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.step:hover {
  border-color: rgba(0, 184, 255, 0.45);
  box-shadow: 0 0 50px rgba(0, 120, 255, 0.15);
  transform: translateY(-5px);
}

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

.step-num {
  font-family: "Orbitron", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 184, 255, 0.25);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.step-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 0 10px var(--neon));
}

.step h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--neon-bright);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── SUBSCRIBE ── */
.subscribe-section {
  padding: 100px 48px;
}

.sub-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.sub-eyebrow {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 16px;
}

.sub-inner h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.sub-inner h2 span {
  color: var(--neon-bright);
}

.sub-inner > p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 44px;
}

.input-group {
  display: flex;
  gap: 0;
  border-radius: 60px;
  overflow: hidden;
  border: 1px solid rgba(0, 184, 255, 0.3);
  box-shadow:
    0 0 40px rgba(0, 100, 200, 0.2),
    0 0 0 4px rgba(0, 60, 120, 0.15);
  margin-bottom: 22px;
  background: rgba(0, 20, 60, 0.5);
}

.input-group input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 18px 28px;
  color: var(--white);
  font-family: "Exo 2", sans-serif;
  font-size: 0.95rem;
}

.input-group input::placeholder {
  color: rgba(232, 245, 255, 0.28);
}

.input-group button {
  background: linear-gradient(135deg, #0055cc, #0099ff);
  border: none;
  outline: none;
  cursor: pointer;
  padding: 18px 36px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.2s;
  white-space: nowrap;
}

.input-group button:hover {
  background: linear-gradient(135deg, #0066dd, #00bbff);
  box-shadow: 0 0 24px rgba(0, 180, 255, 0.4);
}

.ck-wrap {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  margin-bottom: 0;
  padding: 0 6px;
}

.ck-wrap input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid rgba(0, 184, 255, 0.45);
  border-radius: 6px;
  background: rgba(0, 20, 60, 0.6);
  cursor: pointer;
  position: relative;
  margin-top: 1px;
  transition: all 0.2s;
}

.ck-wrap input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #0055cc, #00aaff);
  border-color: var(--neon-bright);
  box-shadow: 0 0 14px rgba(0, 180, 255, 0.5);
}

.ck-wrap input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  color: #fff;
  font-weight: 800;
}

.ck-wrap label {
  font-size: 0.8rem;
  color: rgba(232, 245, 255, 0.42);
  line-height: 1.55;
  cursor: pointer;
}

.ck-wrap label a {
  color: var(--neon-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 184, 255, 0.3);
}

.ck-wrap label a:hover {
  color: #fff;
}

/* ── SUCCESS ── */
#success-box {
  display: none;
  background: rgba(0, 50, 35, 0.55);
  border: 1px solid rgba(0, 210, 100, 0.3);
  border-radius: 18px;
  padding: 40px;
  animation: popIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

#success-box.show {
  display: block;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

#success-box .big-check {
  font-size: 3rem;
  display: block;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 20px rgba(0, 220, 100, 0.7));
}

#success-box h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #00e888;
  margin-bottom: 8px;
  text-shadow: 0 0 24px rgba(0, 220, 130, 0.6);
}

#success-box p {
  color: rgba(232, 245, 255, 0.55);
  font-size: 0.88rem;
}

/* ── FOOTER ── */
footer {
  padding: 48px 48px 28px;
  border-top: 1px solid var(--border);
  background: rgba(0, 4, 16, 0.85);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}

.footer-logo {
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--white);
  text-shadow: 0 0 20px var(--neon);
}

.footer-logo em {
  color: var(--neon-bright);
  font-style: normal;
}

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

.footer-links a {
  color: rgba(232, 245, 255, 0.35);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--neon-bright);
}

.age-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 190, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Orbitron", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 200, 50, 0.65);
}

.footer-copy {
  max-width: 1200px;
  margin: 0 auto;
  color: rgba(232, 245, 255, 0.18);
  font-size: 0.72rem;
  letter-spacing: 0.8px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 184, 255, 0.07);
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 24px;
    gap: 40px;
  }

  .hero-text .hero-desc {
    max-width: 100%;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-banner-wrap {
    max-width: 380px;
    margin: 0 auto;
  }

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

  .offer-section,
  .how-section,
  .subscribe-section {
    padding: 60px 24px;
  }

  .topbar {
    padding: 14px 24px;
  }

  .topbar-right a {
    display: none;
  }

  footer {
    padding: 40px 24px 22px;
  }
}

@media (max-width: 600px) {
  .trust-strip {
    display: none;
  }

  .hero-offer .pct {
    font-size: 5.5rem;
  }

  .input-group {
    flex-direction: column;
    border-radius: 16px;
  }

  .input-group button {
    border-radius: 0 0 16px 16px;
  }

  .landscape-banner .over-cta {
    bottom: 16px;
    right: 16px;
    padding: 10px 22px;
    font-size: 0.9rem;
  }
}
