:root {
  --blue: #0A1E4F;
  --blue-deep: #07173A;
  --blue-mid: #122E6E;
  --red: #E63946;
  --red-bright: #FF2D2D;
  --white: #FFFFFF;
  --bone: #F4F2EC;
  --line: rgba(255,255,255,0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--blue); color: var(--white); }
body {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.display {
  font-family: 'Bebas Neue', 'Archivo Narrow', sans-serif;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 0.86;
  text-transform: uppercase;
}

.handwrite { font-family: 'Caveat', cursive; }

/* ---------- shared ---------- */
.wrap { max-width: 1440px; margin: 0 auto; padding: 0 56px; }
.tech-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 50%, transparent 100%);
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 20px; left: 0; right: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
  gap: 24px;
  transition: top .25s ease;
}
.nav.scrolled { top: 12px; }
.nav.scrolled .nav-pills {
  background: rgba(10,30,79,0.85);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.nav.scrolled .nav-cta {
  background: rgba(10,30,79,0.85);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.logo-bubble {
  position: relative;
  background: var(--white);
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 26px 26px 26px 4px;
  display: inline-flex; align-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  width: max-content;
  transition: transform .2s;
}
.logo-bubble:hover { transform: translateY(-1px); }
.logo-bubble::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 14px; height: 14px; background: var(--white);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.logo-bubble img {
  height: 56px; width: auto; display: block;
}
.footer-top .brand .logo-bubble img { height: 64px; }
@media (max-width: 900px) {
  .logo-bubble img { height: 44px; }
  .footer-top .brand .logo-bubble img { height: 52px; }
}

.nav-pills {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 6px;
  display: flex; gap: 2px;
  justify-self: center;
}
.nav-pills a {
  color: var(--white);
  text-decoration: none;
  font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.01em;
  padding: 10px 18px;
  border-radius: 999px;
  transition: background .25s, color .25s;
}
.nav-pills a:hover { background: rgba(255,255,255,0.12); }
.nav-pills a.active { background: var(--white); color: var(--blue); }

.nav-cta {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 13.5px; font-weight: 600;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, background .2s, border-color .2s;
}
.nav-cta:hover { background: var(--white); color: var(--blue); border-color: var(--white); transform: translateY(-1px); }
.nav-cta .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 3px rgba(230,57,70,0.25); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 60px;
  overflow: hidden;
}

.hashtag {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Archivo', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}
.hashtag::before {
  content: ''; width: 32px; height: 1.5px; background: var(--red);
}

.hero-headline {
  font-size: clamp(80px, 16vw, 260px);
  color: var(--white);
  position: relative;
  z-index: 2;
}
.hero-headline .hash { color: var(--red); }
.hero-headline .line { display: block; }
.hero-headline .line:nth-child(2) { padding-left: 0; }

.hero-meta {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: 50px;
  padding: 0 8px;
  position: relative; z-index: 3;
}
.hero-meta .lead {
  max-width: 380px;
  font-size: 16px; line-height: 1.55;
  color: rgba(255,255,255,0.8);
}
.hero-meta .lead strong { color: var(--white); font-weight: 700; }

/* sticker CTA */
.sticker {
  position: relative;
  width: 168px; height: 168px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: grid; place-items: center;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 1;
  cursor: pointer;
  border: none;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(230,57,70,0.35), 0 0 0 6px rgba(255,255,255,0.06);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  animation: stickerSpin 18s linear infinite;
}
.sticker:hover { transform: scale(1.08) rotate(8deg); }
.sticker .arrow {
  position: absolute; right: 18px; bottom: 18px;
  width: 26px; height: 26px;
}
@keyframes stickerSpin { to { transform: rotate(360deg); } }
.sticker:hover { animation-play-state: paused; }

/* floating player cards */
.float {
  position: absolute;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  padding: 14px 18px 14px 14px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  z-index: 4;
  transition: transform .4s ease;
}
.float:hover { transform: translateY(-6px) scale(1.03) !important; }

.float .chip-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
  position: relative;
}
.float .chip-avatar::after {
  content: ''; position: absolute; inset: 4px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.45);
}
.float .meta { display: flex; flex-direction: column; line-height: 1.1; }
.float .nick { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 0.02em; }
.float .stat { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 2px; font-weight: 500; }
.float .stat .num { color: var(--red); font-weight: 700; }

.float-1 { top: 16%; left: 4%; transform: rotate(-3deg); animation: floatA 7s ease-in-out infinite; }
.float-2 { top: 6%; right: 8%;  transform: rotate(2deg);  animation: floatB 9s ease-in-out infinite; }
.float-3 { bottom: 30%; right: 4%; transform: rotate(-2deg); animation: floatA 8s ease-in-out infinite reverse; }
.float-4 { bottom: 12%; left: 10%; transform: rotate(3deg); animation: floatB 10s ease-in-out infinite reverse; }

@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-14px) rotate(-3deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

/* floating chips/cards (decorative) */
.deco-chip {
  position: absolute; width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ff5d68, var(--red) 60%, #a01825);
  box-shadow: inset 0 -6px 12px rgba(0,0,0,0.3), 0 12px 30px rgba(230,57,70,0.35);
  z-index: 1;
}
.deco-chip::before, .deco-chip::after {
  content: ''; position: absolute; inset: 8px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.5);
}
.deco-chip::after {
  inset: 22px; border: none;
  background: rgba(255,255,255,0.95);
}

.deco-card {
  position: absolute;
  width: 78px; height: 110px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.4);
  display: grid; place-items: center;
  color: var(--red);
  font-family: 'Bebas Neue', sans-serif; font-size: 36px;
  z-index: 1;
}
.deco-card.black { color: var(--blue); }
.deco-card .pip { font-size: 20px; }

/* ---------- section: como funciona ---------- */
.section { position: relative; padding: 140px 0; }
.section-light { background: var(--bone); color: var(--blue); }
.section-light .section-eyebrow { color: var(--red); }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 22px;
}
.section-eyebrow::before { content: ''; width: 32px; height: 1.5px; background: currentColor; }

.section-title {
  font-size: clamp(56px, 8vw, 124px);
  margin-bottom: 14px;
  max-width: 14ch;
}

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 80px;
  position: relative;
}
.step {
  background: var(--white);
  color: var(--blue);
  border-radius: 28px;
  padding: 32px 28px 36px;
  position: relative;
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
  transition: transform .35s ease;
}
.section-light .step {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 30px 70px rgba(10,30,79,0.18);
}
.step:hover { transform: translateY(-8px); }
.step .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 96px; line-height: 1;
  color: var(--red);
  margin-bottom: 14px;
}
.step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; letter-spacing: 0.01em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.step p { font-size: 15px; line-height: 1.55; opacity: 0.75; }
.step .icon {
  position: absolute; top: 28px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(230,57,70,0.10);
  display: grid; place-items: center;
  color: var(--red);
}

.step-arrow {
  position: absolute; top: 30%; pointer-events: none; z-index: 5;
  width: 110px; height: 90px;
  color: var(--red);
}
.step-arrow.a1 { left: calc(33.33% - 64px); }
.step-arrow.a2 { left: calc(66.66% - 64px); transform: scaleY(-1); }

body[data-arrows="off"] .step-arrow,
body[data-arrows="off"] .scribble { display: none; }

/* ---------- app section ---------- */
.app-section { padding: 160px 0; position: relative; overflow: hidden; }
.app-section .row {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 80px; align-items: center;
}
.app-section .copy h2 {
  font-size: clamp(56px, 7vw, 110px);
  line-height: 0.88;
  margin-bottom: 22px;
}
.app-section .copy h2 em {
  font-style: normal;
  color: var(--red);
}
.app-section .copy p {
  font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 460px;
  margin-bottom: 32px;
}

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.feature-list li {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.feature-list li:last-child { border-bottom: 1px solid var(--line); }
.feature-list li .badge {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--red);
  display: grid; place-items: center;
  color: var(--white); font-weight: 700; font-size: 12px;
  flex-shrink: 0;
}

/* phone mockup */
.phone-stack { position: relative; height: 640px; }
.phone {
  position: absolute;
  width: 320px; height: 640px;
  background: #0F2454;
  border-radius: 40px;
  border: 8px solid #1c1c1e;
  box-shadow: 0 60px 100px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
}
.phone .notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 26px; background: #000; border-radius: 14px; z-index: 5;
}
.phone-1 { left: 20%; top: 0; transform: rotate(-6deg); z-index: 1; }
.phone-2 { right: 0; top: 30px; transform: rotate(4deg); z-index: 2; }

/* phone screen image (real screenshot) */
.phone-screen {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: #000;
}

/* ---------- stats section ---------- */
.stats-section {
  position: relative;
  padding: 120px 0 140px;
  text-align: center;
  background: var(--bone);
  color: var(--blue);
  overflow: hidden;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 70px;
  position: relative; z-index: 2;
}
.stat-card {
  text-align: left;
  padding: 36px 32px;
  border-top: 2px solid var(--blue);
  position: relative;
}
.stat-card .big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 11vw, 180px);
  line-height: 0.9;
  color: var(--red);
  letter-spacing: -0.01em;
}
.stat-card .label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
  color: var(--blue);
}
.stat-card .desc { font-size: 14px; margin-top: 8px; opacity: 0.65; max-width: 28ch; }

/* ---------- final cta ---------- */
.final-cta {
  position: relative;
  padding: 180px 0 200px;
  text-align: center;
  overflow: hidden;
}
.final-cta h2 {
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.86;
}
.final-cta h2 .red { color: var(--red); }
.final-cta .sticker-wrap {
  margin-top: 60px;
  display: flex; justify-content: center;
}

/* ---------- footer ---------- */
.footer {
  background: var(--blue-deep);
  padding: 80px 0 30px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-top .brand .logo-bubble { background: var(--red); color: var(--white); }
.footer-top .brand .logo-bubble::after { background: var(--red); }
.footer-top .brand p { margin-top: 18px; opacity: 0.6; max-width: 32ch; font-size: 14px; }
.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 0.06em;
  margin-bottom: 14px; color: rgba(255,255,255,0.5);
}
.footer-col a {
  display: block; color: var(--white); text-decoration: none;
  padding: 6px 0; font-size: 14px;
  transition: color .2s, transform .2s;
}
.footer-col a:hover { color: var(--red); transform: translateX(3px); }
.footer-bottom {
  padding-top: 30px;
  display: flex; justify-content: space-between;
  font-size: 12px; opacity: 0.5;
}

.union-brasil {
  margin-top: 50px;
  display: flex; align-items: center; gap: 22px;
  flex-wrap: wrap;
}
.union-brasil img {
  height: 86px; width: auto;
  display: block;
  opacity: 0.9;
  flex-shrink: 0;
}
.union-brasil .ub-text {
  font-size: 13px; line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
}
.union-brasil .ub-text strong {
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 0.04em;
  display: block; margin-bottom: 4px;
}
@media (max-width: 700px) {
  .union-brasil img { height: 70px; }
}

.responsible-gaming {
  margin-top: 36px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex; align-items: flex-start; gap: 18px;
  background: rgba(255,255,255,0.03);
  font-size: 13px; line-height: 1.5;
  color: rgba(255,255,255,0.7);
}
.responsible-gaming .age-badge {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red);
  display: grid; place-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; color: var(--white);
  letter-spacing: 0.04em;
}
.responsible-gaming a {
  color: var(--white); text-decoration: underline;
}
.responsible-gaming a:hover { color: var(--red); }

/* socials */
.socials { display: flex; gap: 10px; margin-top: 24px; }
.socials a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  color: var(--white);
  text-decoration: none;
  transition: background .25s, transform .25s;
}
.socials a:hover { background: var(--red); transform: translateY(-3px) rotate(-4deg); }

/* hand-drawn arrows */
.scribble {
  position: absolute; pointer-events: none;
  color: var(--red);
  z-index: 3;
}

/* counter stagger */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* marquee */
.marquee {
  background: var(--red);
  color: var(--white);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.marquee-track {
  display: inline-flex; gap: 28px;
  animation: marquee 35s linear infinite;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 28px; }
.marquee-track .dot { width: 10px; height: 10px; background: var(--white); border-radius: 50%; display: inline-block; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   INNER PAGES (shared layout for /mesas, /faq, /rakeback, etc.)
   ============================================================ */

/* page hero — smaller than landing hero, used as page header */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
}
.page-hero h1 {
  font-size: clamp(56px, 10vw, 140px);
  line-height: 0.9;
  max-width: 16ch;
}
.page-hero h1 .red { color: var(--red); }
.page-hero .lead {
  margin-top: 28px;
  max-width: 620px;
  font-size: 18px; line-height: 1.55;
  color: rgba(255,255,255,0.78);
}

/* generic prose section (text content with blue bg) */
.page-section {
  position: relative;
  padding: 80px 0 120px;
}
.page-section.light {
  background: var(--bone);
  color: var(--blue);
}
.page-section.light .prose { color: var(--blue); }
.page-section.light .prose strong { color: var(--blue); }

.prose {
  max-width: 760px;
  font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,0.85);
}
.prose h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.01em;
  margin-top: 60px;
  margin-bottom: 18px;
  color: var(--white);
}
.page-section.light .prose h2 { color: var(--blue); }
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  margin-top: 32px;
  margin-bottom: 10px;
  color: var(--white);
}
.page-section.light .prose h3 { color: var(--blue); }
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { margin: 18px 0 18px 22px; }
.prose li { margin-bottom: 10px; }
.prose strong { color: var(--white); font-weight: 700; }
.prose a { color: var(--red); text-decoration: underline; }

/* card grid for inner pages (mesas, etc.) */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 50px 0 30px;
}
.info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 28px;
  transition: transform .3s, border-color .3s;
}
.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230,57,70,0.4);
}
.page-section.light .info-card {
  background: var(--white);
  border-color: rgba(10,30,79,0.10);
  box-shadow: 0 18px 50px rgba(10,30,79,0.08);
}
.info-card .ic-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.info-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.info-card p {
  font-size: 15px; line-height: 1.55;
  opacity: 0.75;
}
.info-card .ic-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 12px;
  font-size: 12px; font-weight: 600;
  background: rgba(230,57,70,0.15);
  color: var(--red);
  border-radius: 999px;
}

/* rakeback tiers */
.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 50px 0 30px;
}
.tier {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 24px;
  text-align: center;
}
.tier.featured {
  background: linear-gradient(180deg, rgba(230,57,70,0.18), rgba(230,57,70,0.06));
  border-color: rgba(230,57,70,0.5);
}
.tier .tier-pct {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: var(--red);
}
.tier .tier-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  margin-top: 6px;
}
.tier .tier-range {
  font-size: 13px;
  opacity: 0.65;
  margin-top: 8px;
}

/* FAQ accordion */
.faq-list { margin: 40px 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.page-section.light .faq-item {
  border-bottom-color: rgba(10,30,79,0.10);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.01em;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--red); }
.faq-item summary::after {
  content: '+';
  font-family: 'Archivo', sans-serif;
  font-weight: 300;
  font-size: 32px;
  color: var(--red);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer {
  padding: 0 0 26px;
  font-size: 16px; line-height: 1.65;
  opacity: 0.78;
  max-width: 760px;
}

/* page-level CTA banner */
.page-cta {
  margin-top: 80px;
  padding: 60px 48px;
  background: linear-gradient(135deg, var(--red), #b32028);
  border-radius: 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.page-cta h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--white);
}
.page-cta p {
  margin-top: 10px;
  opacity: 0.9;
  font-size: 16px;
  color: var(--white);
}
.page-cta .pcta-btn {
  background: var(--white);
  color: var(--red);
  padding: 18px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: transform .2s;
}
.page-cta .pcta-btn:hover { transform: translateY(-2px); }

@media (max-width: 900px) {
  .wrap { padding: 0 24px; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 30px; }
  .steps, .stats-grid, .footer-top, .app-section .row { grid-template-columns: 1fr; }
  .nav { grid-template-columns: 1fr auto; padding: 0 16px; }
  .nav-pills { display: none; }
  .float { display: none; }
  .deco-chip, .deco-card { display: none; }
  .step-arrow { display: none; }
  .phone-stack { height: 720px; }
  .page-hero { padding: 130px 0 60px; }
  .page-cta { flex-direction: column; align-items: flex-start; padding: 36px 24px; }
}
