/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #ffffff;
  color: #111827;
  overflow-x: hidden;
  min-height: 100vh;
  /* Top offset for the fixed navbar */
  padding-top: 85px;
}

/* =========================================
   FIXED NAVIGATION BAR
   ========================================= */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.navbar-wrapper.scrolled {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 64px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111827;
}

.brand-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #000;
}

.nav-links svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-login {
  text-decoration: none;
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
}

.btn-open-nav {
  text-decoration: none;
  background-color: #141416;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 9999px;
  transition: background-color 0.2s, transform 0.1s;
}

.btn-open-nav:hover {
  background-color: #27272a;
  transform: translateY(-1px);
}

/* =========================================
   HAMBURGER BUTTON & MOBILE MENU
   ========================================= */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger-btn .bar {
  width: 24px;
  height: 2.5px;
  background-color: #141416;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hamburger active transformation to 'X' */
.hamburger-btn.active .bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger-btn.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Dropdown Menu Container */
.mobile-menu {
  display: none;
  max-height: 0;
  overflow: hidden;
  background-color: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 24px;
}

.mobile-menu.open {
  max-height: 420px;
  padding: 16px 24px 28px;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.mobile-nav-links a {
  text-decoration: none;
  color: #1f2937;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.mobile-nav-links svg {
  width: 16px;
  height: 16px;
}

/* =========================================
   HERO CONTAINER
   ========================================= */
  .hero-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 64px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100vh - 85px);
  gap: 40px;
}

/* =========================================
   LEFT: IMAGE CONTAINER
   ========================================= */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* =========================================
   RIGHT: HERO CONTENT & TYPOGRAPHY
   ========================================= */
.hero-content {
  padding-left: 20px;
}

.hero-headline {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -2.8px;
  color: #141416;
  margin-bottom: 26px;
}

.hero-description {
  font-size: 12px;
  line-height: 1.55;
  color: #6b7280;
  max-width: 480px;
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-cta-label {
  font-size: 13px;
  font-weight: 700;
  color: #141416;
  margin-bottom: 14px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 50px;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f7ba2b;
  color: #141416;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 9999px;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.1s;
}

.btn-cta-primary:hover {
  background-color: #eab308;
  transform: translateY(-1px);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #141416;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 9999px;
  text-decoration: none;
  border: 1.5px solid #e5e7eb;
  transition: border-color 0.2s, background-color 0.2s;
}

.btn-cta-secondary:hover {
  border-color: #d1d5db;
  background-color: #f9fafb;
}

/* Social Proof Section */
.social-proof {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.social-proof-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  margin-left: -10px;
  object-fit: cover;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.stats-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #141416;
}

.growth-triangle {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid #86efac;
  margin-top: -4px;
}

.social-proof-text {
  font-size: 12px;
  line-height: 1.45;
  color: #9ca3af;
  max-width: 270px;
}

/* =========================================
   NAV ICON BUTTON (Telegram, desktop)
   ========================================= */
.nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #e5e7eb;
  color: #141416;
  transition: border-color 0.2s, background-color 0.2s;
}

.nav-icon-btn:hover {
  border-color: #d1d5db;
  background-color: #f9fafb;
}

/* =========================================
   HERO TRUST NOTE
   ========================================= */
.hero-trust {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 420px;
}

.hero-trust i {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #f5b721;
  margin-top: 2px;
}

.hero-trust p {
  font-size: 12px;
  line-height: 1.5;
  color: #9ca3af;
  margin: 0;
}

/* =========================================
   CONTENT SECTIONS (shared)
   ========================================= */
.content-section {
  padding: 88px 64px;
}

.section-tint {
  background-color: #fafafa;
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-narrow {
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f5b721;
  background-color: #fff8e6;
  padding: 6px 14px;
  border-radius: 9999px;
  margin-bottom: 18px;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  color: #141416;
  margin-bottom: 22px;
}

.section-title-sm {
  font-size: 28px;
  margin-bottom: 14px;
}

.section-text {
  font-size: 16px;
  line-height: 1.65;
  color: #4b5563;
  margin-bottom: 20px;
}

.section-text-strong {
  color: #141416;
  font-weight: 600;
}

.section-text-muted {
  font-size: 13px;
  color: #9ca3af;
}

.section-text a,
.step-content p a,
.faq-item p a {
  color: #b45309;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #f2c675;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.section-text a:hover,
.step-content p a:hover,
.faq-item p a:hover {
  color: #92400e;
}

.cta-strip .section-text a {
  color: #f7ba2b;
  text-decoration-color: rgba(247, 186, 43, 0.5);
}

.cta-strip .section-text a:hover {
  color: #ffd166;
}

.callout-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background-color: #fffaf0;
  border: 1px solid #f5e0a8;
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 20px;
}

.callout-box i {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #eab308;
  margin-top: 1px;
}

.callout-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b5417;
  margin: 0;
}

.action-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #141416;
  text-decoration: none;
  border-bottom: 1.5px solid #141416;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}

.action-link i {
  width: 15px;
  height: 15px;
  transition: transform 0.2s;
}

.action-link:hover i {
  transform: translateX(3px);
}

/* =========================================
   ACTION GRID (bento)
   ========================================= */
.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.action-card {
  background-color: #ffffff;
  border: 1px solid #eef0f2;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(20, 20, 22, 0.06);
  border-color: #e5e7eb;
}

.action-card-lg {
  grid-column: span 2;
}

.action-card > i {
  width: 26px;
  height: 26px;
  color: #141416;
  background-color: #fdf3d7;
  padding: 12px;
  border-radius: 14px;
  box-sizing: content-box;
  margin-bottom: 10px;
}

.action-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #141416;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.action-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 14px;
}

.action-card .action-link {
  margin-top: auto;
}

/* =========================================
   DEVICE GRID
   ========================================= */
.device-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.device-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background-color: #fafafa;
  border: 1px solid #eef0f2;
  border-radius: 20px;
  padding: 32px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.device-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(20, 20, 22, 0.06);
}

.device-card i {
  width: 24px;
  height: 24px;
  color: #141416;
  margin-bottom: 6px;
}

.device-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #141416;
}

.device-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
}

/* =========================================
   GAMES SECTION
   ========================================= */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.game-category {
  background-color: #ffffff;
  border: 1px solid #eef0f2;
  border-radius: 20px;
  padding: 28px;
}

.game-category > i {
  width: 22px;
  height: 22px;
  color: #141416;
  background-color: #fdf3d7;
  padding: 11px;
  border-radius: 12px;
  box-sizing: content-box;
  margin-bottom: 14px;
}

.game-category h3 {
  font-size: 17px;
  font-weight: 700;
  color: #141416;
  margin-bottom: 6px;
}

.game-category > p {
  font-size: 13px;
  line-height: 1.55;
  color: #6b7280;
  margin-bottom: 16px;
}

.game-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.game-chips span {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  background-color: #f3f4f6;
  border-radius: 9999px;
  padding: 7px 14px;
}

/* =========================================
   CTA STRIP
   ========================================= */
.cta-strip {
  background-color: #141416;
}

.cta-strip .eyebrow,
.cta-strip .section-title,
.cta-strip p {
  color: #ffffff;
}

.cta-strip .section-text {
  color: #a1a1aa;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
}

.cta-strip-inner .section-text {
  margin-bottom: 0;
}

.cta-strip .hero-cta-group {
  margin-bottom: 0;
  flex-shrink: 0;
}

.cta-strip .btn-cta-secondary {
  border-color: #3f3f46;
  color: #ffffff;
}

.cta-strip .btn-cta-secondary:hover {
  border-color: #52525b;
  background-color: #1f1f23;
}

/* =========================================
   CHECK LISTS
   ========================================= */
.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 24px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #374151;
}

.check-list li i {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  color: #16a34a;
  margin-top: 1px;
}

.check-list-plain li i {
  color: #a1a1aa;
}

.check-list-1col {
  grid-template-columns: 1fr;
}

.check-list-danger li i {
  color: #dc2626;
}

.cta-strip .check-list li {
  color: #d4d4d8;
}

/* =========================================
   TABLE OF CONTENTS CARD (legal pages)
   ========================================= */
.toc-card {
  background-color: #fafafa;
  border: 1px solid #eef0f2;
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 8px;
}

.toc-card h2 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
  margin-bottom: 16px;
}

.toc-list {
  list-style: none;
  counter-reset: toc;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}

.toc-list li {
  counter-increment: toc;
}

.toc-list a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
}

.toc-list a::before {
  content: counter(toc) ".";
  color: #f5b721;
  font-weight: 800;
  flex-shrink: 0;
}

.toc-list a:hover {
  color: #141416;
  text-decoration: underline;
}

/* Legal document heading rhythm */
.legal-heading {
  scroll-margin-top: 100px;
}

/* =========================================
   BACK TO TOP BUTTON WRAP
   ========================================= */
.back-to-top-wrap {
  margin-top: 32px;
  text-align: center;
}

/* =========================================
   TERM GRID (definition cards, e.g. bonus terms)
   ========================================= */
.term-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 8px 0 24px;
}

.term-card {
  background-color: #fafafa;
  border: 1px solid #eef0f2;
  border-radius: 18px;
  padding: 24px;
}

.term-card > i {
  width: 20px;
  height: 20px;
  color: #141416;
  background-color: #fdf3d7;
  padding: 10px;
  border-radius: 12px;
  box-sizing: content-box;
  margin-bottom: 12px;
}

.term-card h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #141416;
  margin-bottom: 6px;
}

.term-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #6b7280;
}

/* =========================================
   SUBSECTION TITLE (h3 within a content-section)
   ========================================= */
.subsection-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #141416;
  margin: 32px 0 14px;
}

/* =========================================
   NUMBERED LIST (custom counters)
   ========================================= */
.numbered-list {
  list-style: none;
  counter-reset: num;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.numbered-list li {
  counter-increment: num;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
}

.numbered-list li::before {
  content: counter(num);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #141416;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* =========================================
   STEPS LIST (Langkah 1-5)
   ========================================= */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 36px;
}

.step-item {
  display: flex;
  gap: 22px;
  padding-bottom: 32px;
  border-bottom: 1px solid #eef0f2;
}

.step-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #fdf3d7;
  color: #141416;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content {
  flex: 1;
  min-width: 0;
}

.step-content h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #141416;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 14px;
  line-height: 1.65;
  color: #4b5563;
  margin-bottom: 14px;
}

.step-content p:last-child {
  margin-bottom: 0;
}

.step-content .check-list {
  margin-bottom: 14px;
}

/* =========================================
   SUBSTEP CARDS (Android / iPhone side-by-side)
   ========================================= */
.substep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}

.substep-card {
  background-color: #fafafa;
  border: 1px solid #eef0f2;
  border-radius: 18px;
  padding: 24px;
}

.substep-card > i {
  width: 20px;
  height: 20px;
  color: #141416;
  margin-bottom: 10px;
}

.substep-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #141416;
  margin-bottom: 10px;
}

.substep-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 12px;
}

.substep-card .numbered-list {
  margin-bottom: 14px;
}

.substep-card .numbered-list li {
  font-size: 13px;
}

.substep-note {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 0;
}

/* =========================================
   FAQ
   ========================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: #fafafa;
  border: 1px solid #eef0f2;
  border-radius: 16px;
  padding: 6px 24px;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 600;
  color: #141416;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #9ca3af;
  transition: transform 0.25s ease;
}

.faq-item[open] summary i {
  transform: rotate(180deg);
}

.faq-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  padding-bottom: 20px;
  margin: 0;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background-color: #fafafa;
  border-top: 1px solid #eef0f2;
  padding: 40px 64px;
}

.footer-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-simple-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-simple-nav a {
  font-size: 14px;
  color: #4b5563;
  text-decoration: none;
}

.footer-simple-nav a:hover {
  color: #141416;
}

.footer-copyright {
  font-size: 12px;
  color: #9ca3af;
}

/* =========================================
   MOBILE STICKY CTA BAR
   ========================================= */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  align-items: center;
  gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid #eef0f2;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.05);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.mobile-sticky-cta.visible {
  transform: translateY(0);
}

.sticky-icon-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 9999px;
  border: 1.5px solid #e5e7eb;
  color: #141416;
  text-decoration: none;
}

.sticky-primary-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  background-color: #f7ba2b;
  color: #141416;
  font-size: 14px;
  font-weight: 700;
  border-radius: 9999px;
  text-decoration: none;
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 1024px) {
  body {
    padding-top: 75px;
  }

  .navbar {
    padding: 16px 24px;
  }

  /* Hide desktop navigation links (Mula Akses Online stays visible) */
  .nav-links {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
    margin-right: 14px;
  }

  .btn-open-nav {
    padding: 10px 18px;
    font-size: 13px;
  }

  /* Show hamburger button & enable mobile menu container */
  .hamburger-btn {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-section {
    grid-template-columns: 1fr;
    padding: 30px 24px 60px;
    gap: 40px;
  }

  .hero-headline {
    font-size: 31px;
  }

  .hero-content {
    padding-left: 0;
    text-align: center;
  }

  .hero-description {
    margin: 0 auto 32px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }

  .hero-cta-group a {
    width: 100%;
  }

  .hero-trust {
    max-width: none;
    text-align: left;
    margin: 0 auto;
  }

  .social-proof {
    align-items: center;
  }

  .content-section {
    padding: 56px 24px;
  }

  .section-title {
    font-size: 28px;
  }

  .callout-box {
    flex-direction: column;
  }

  .action-grid,
  .device-grid,
  .games-grid,
  .term-grid {
    grid-template-columns: 1fr;
  }

  .action-card-lg {
    grid-column: span 1;
  }

  .check-list,
  .toc-list {
    grid-template-columns: 1fr;
  }

  .steps-list {
    gap: 24px;
  }

  .step-item {
    gap: 16px;
    padding-bottom: 24px;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .substep-grid {
    grid-template-columns: 1fr;
  }

  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-strip .hero-cta-group {
    flex-direction: row;
    width: 100%;
  }

  .cta-strip .hero-cta-group a {
    flex: 1;
    width: auto;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 76px;
  }
}