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

:root {
  --bg:         #0D0D0D;
  --card-bg:    #161616;
  --primary:    #FFD700;
  --primary2:   #CC9900;
  --text:       #ffffff;
  --text-muted: #cdc2a8;
  --border:     rgba(255, 215, 0, 0.22);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── HEADER ─── */

.header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, rgba(10, 8, 2, 0.98) 0%, rgba(20, 15, 3, 0.98) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.30);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0 40px;
}

.logo img {
  height: 50px;
  width: auto;
}

/* ── DESKTOP NAV ── */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.80);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 7px 22px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

/* ── HEADER ACTIONS (right side desktop) ── */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

/* ── LIVE CHAT LINK ── */
.btn-livechat {
  display: inline-flex;
  align-items: center;
  color: #f97316;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.8px;
  padding: 7px 22px;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.btn-livechat:hover {
  color: #ea6c0a;
  background: rgba(249, 115, 22, 0.10);
}

/* ── LOGIN BUTTON ── */
.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid #FFD700;
  background: #FFD700;
  color: #0A0A0A;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 7px 16px;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-login:hover {
  background: #FFE566;
  border-color: #FFE566;
  color: #0A0A0A;
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.45);
}

/* ── HAMBURGER BUTTON ── */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}

.hamburger-btn:hover {
  border-color: rgba(255, 255, 255, 0.70);
  background: rgba(255, 255, 255, 0.22);
}

.hamburger-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ── SIDEBAR OVERLAY ── */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.sidebar-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── SIDEBAR ── */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 260px;
  background: var(--card-bg);
  border-left: 1px solid var(--border);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  padding: 20px 0 32px;
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 20px;
  border-bottom: 1px solid var(--border);
}

.sidebar-logo {
  height: 32px;
  width: auto;
  opacity: 0.85;
}

.sidebar-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}

.sidebar-close:hover { color: var(--text); }

.sidebar-nav {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-left: 3px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.sidebar-link:hover {
  color: var(--primary);
  background: rgba(255, 215, 0, 0.08);
  border-left-color: var(--primary);
}

.sidebar-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.75;
}

/* ── LIVE CHAT SIDEBAR LINK ── */
.sidebar-link--chat {
  margin-top: 10px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
  color: #f97316;
  font-weight: 700;
}

.sidebar-link--chat svg {
  opacity: 1;
}

.sidebar-link--chat:hover {
  color: #ea6c0a;
  background: rgba(249, 115, 22, 0.10);
  border-left-color: #f97316;
}

/* ── HERO ── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 40px 32px 160px;
}

/* layered background glows */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 70% at 18% 60%, rgba(204, 153, 0, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 65% 65% at 26% 48%, rgba(255, 215, 0, 0.12) 0%, transparent 68%),
    radial-gradient(ellipse 45% 55% at 82% 32%, rgba(204, 153, 0, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 35% 40% at 70% 80%, rgba(204, 153, 0, 0.10) 0%, transparent 55%),
    url('/img/herobg.png') center center / cover no-repeat,
    var(--bg);
}

/* subtle grid */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 215, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
}

/* angular slash lines */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, transparent 45%, rgba(255, 215, 0,0.06) 46%, rgba(255, 215, 0,0.06) 47%, transparent 48%),
    linear-gradient(145deg, transparent 55%, rgba(204, 153, 0,0.04) 56%, rgba(204, 153, 0,0.04) 57%, transparent 58%),
    linear-gradient(145deg, transparent 62%, rgba(255, 215, 0,0.03) 63%, rgba(255, 215, 0,0.03) 63.5%, transparent 64.5%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* H1 */
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero h1 .accent {
  color: var(--primary);
  text-shadow:
    0 0 18px rgba(255, 215, 0, 0.60),
    0 0 45px rgba(255, 215, 0, 0.25);
}

.hero-desc {
  color: var(--text-muted);
  font-size: 16px;
  margin: 0 auto 36px;
  max-width: 560px;
  line-height: 1.80;
}

/* ── Hero Rating ── */
.hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.rating-stars {
  display: flex;
  gap: 1px;
}

.star {
  font-size: 19px;
  color: #FFD700;
  line-height: 1;
}

.star.partial {
  background: linear-gradient(90deg, #FFD700 70%, rgba(255,255,255,0.25) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rating-score {
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
  letter-spacing: 0.5px;
}

.rating-count {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Button wave animations ── */
@keyframes btn-shine {
  0%        { transform: skewX(-22deg) translateX(-320%); }
  72%, 100% { transform: skewX(-22deg) translateX(460%); }
}

@keyframes btn-glow-pulse {
  0%, 100% {
    box-shadow:
      0 0 28px rgba(255, 215, 0, 0.45),
      0 4px 18px rgba(0, 0, 0, 0.55);
  }
  50% {
    box-shadow:
      0 0 58px rgba(255, 215, 0, 0.70),
      0 6px 24px rgba(0, 0, 0, 0.60);
  }
}

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg,
    #FFE566 0%,
    #FFD700 45%,
    #CC9900 100%
  );
  color: #0A0A0A;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  padding: 16px 34px;
  min-width: 210px;
  border-radius: 10px;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  transition: filter 0.2s, transform 0.15s;
  animation: btn-glow-pulse 2.5s ease-in-out infinite;
}

/* shimmer sweep */
.btn-primary::after {
  content: '';
  position: absolute;
  top: -10%;
  left: 0;
  width: 38%;
  height: 120%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 100%
  );
  mix-blend-mode: overlay;
  transform: skewX(-22deg) translateX(-320%);
  animation: btn-shine 3s ease-in-out infinite;
  pointer-events: none;
}

.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  animation-play-state: paused;
}

/* ── OS icon pair inside btn-primary ── */
.btn-os-icons {
  display: flex;
  flex-direction: row;
  gap: 5px;
  margin-left: 8px;
  flex-shrink: 0;
  align-items: center;
}

.btn-os-icons svg {
  width: 22px;
  height: 22px;
  display: block;
  opacity: 0.90;
}

/* ── Hero Buttons Row ── */
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-mobile-img {
  display: none;
}

/* White secondary button */
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: #0A0A0A;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  padding: 16px 34px;
  min-width: 210px;
  border-radius: 10px;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-white:hover {
  filter: brightness(0.93);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.18);
}

/* ── Hero Visual — alternative links ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-links {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.links-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
  opacity: 0.85;
}

.links-label svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--primary);
}

.alt-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s, transform 0.18s;
}

.alt-link:hover {
  border-color: var(--primary);
  background: rgba(255, 215, 0, 0.08);
  box-shadow:
    0 0 24px rgba(255, 215, 0, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.35);
  transform: translateX(4px);
}

.alt-link-num {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: 1px;
  line-height: 1;
  min-width: 28px;
  opacity: 0.85;
}

.alt-link-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.alt-link-body strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.alt-link-body small {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.alt-link-arrow {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.18s, transform 0.18s;
}

.alt-link:hover .alt-link-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* ── APK SECTION ── */
.apk-section {
  padding: 80px 32px;
  position: relative;
  background: var(--bg);
}

.apk-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--primary) 40%,
    var(--primary2) 60%,
    transparent 100%
  );
  opacity: 1;
}

.apk-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.apk-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 215, 0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.apk-icon {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.apk-icon svg {
  width: 52px;
  height: 52px;
}

.apk-content { display: flex; flex-direction: column; }

.apk-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.80;
  margin-bottom: 24px;
  max-width: 520px;
}

.apk-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
  margin-bottom: 28px;
}

.apk-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.apk-features li svg {
  width: 15px;
  height: 15px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ── ABOUT + FEATURES ─────────────────────────────────── */

.about {
  padding: 80px 32px 70px;
  background: var(--card-bg);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--primary) 35%,
    var(--primary2) 65%,
    transparent 100%
  );
  opacity: 1;
}

.container {
  max-width: 880px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.section-title .accent { color: var(--primary); }

.title-bar {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary2), var(--primary));
  border-radius: 2px;
  margin: 0 auto 28px;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.45);
}

.about-body {
  color: var(--text-muted);
  font-size: 15px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.85;
}

/* Feature cards grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feat-card {
  background: rgba(28, 22, 5, 0.90);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 20px 30px;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.22s;
}

.feat-card:hover {
  border-color: rgba(255, 215, 0, 0.55);
  box-shadow:
    0 0 28px rgba(255, 215, 0, 0.12),
    0 8px 28px rgba(0, 0, 0, 0.45);
  transform: translateY(-5px);
}

.feat-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 2.5px solid var(--primary);
  background: rgba(255, 215, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow:
    0 0 18px rgba(255, 215, 0, 0.25),
    inset 0 0 16px rgba(255, 215, 0, 0.06);
  transition: box-shadow 0.25s;
}

.feat-card:hover .feat-icon {
  box-shadow:
    0 0 30px rgba(255, 215, 0, 0.45),
    inset 0 0 20px rgba(255, 215, 0, 0.10);
}

.feat-icon svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.feat-card h3 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.feat-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.75;
}

/* ── FINAL CTA ───────────────────────────────────────── */

.cta {
  padding: 80px 32px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 70% 90% at 50% 110%, rgba(255, 215, 0, 0.06) 0%, transparent 65%),
    var(--bg);
}

.cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--primary2) 35%,
    var(--primary) 65%,
    transparent 100%
  );
  opacity: 1;
}

.cta .section-title { margin-bottom: 10px; }

.cta p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 14px 0 32px;
}

/* Outline Button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--primary);
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  padding: 15px 38px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s, border-color 0.2s;
}

.btn-outline:hover {
  background: rgba(255, 215, 0, 0.12);
  border-color: rgba(255, 215, 0, 0.90);
  box-shadow:
    0 0 32px rgba(255, 215, 0, 0.25),
    0 4px 14px rgba(0, 0, 0, 0.45);
  transform: translateY(-3px);
}

.btn-outline svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── FOOTER ──────────────────────────────────────────── */

footer {
  padding: 28px 32px 34px;
  text-align: center;
  border-top: 1px solid var(--border);
}

footer p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 14px;
}

/* ── APK INFO CARDS ── */
.apk-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.apk-info-card {
  background: rgba(28, 22, 5, 0.90);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 28px;
}

.apk-info-card h3 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.apk-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.apk-info-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.info-label {
  color: var(--text-muted);
  flex-shrink: 0;
  min-width: 110px;
}

.info-value {
  color: var(--text);
  font-weight: 600;
  text-align: right;
}

.apk-info-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.apk-info-link:hover { color: var(--primary2); }

.footer-logo img {
  height: 40px;
  width: auto;
  opacity: 0.70;
}

/* ── RESPONSIVE ──────────────────────────────────────── */

@media (max-width: 800px) {
  .hero-bg {
    background:
      radial-gradient(ellipse 55% 70% at 18% 60%, rgba(204, 153, 0, 0.18) 0%, transparent 65%),
      radial-gradient(ellipse 65% 65% at 26% 48%, rgba(255, 215, 0, 0.12) 0%, transparent 68%),
      radial-gradient(ellipse 45% 55% at 82% 32%, rgba(204, 153, 0, 0.10) 0%, transparent 60%),
      radial-gradient(ellipse 35% 40% at 70% 80%, rgba(204, 153, 0, 0.10) 0%, transparent 55%),
      url('/img/herobgm1.png') center center / cover no-repeat,
      var(--bg);
  }

  .header {
    display: flex;
    justify-content: space-between;
  }
  .header-nav { display: none; }
  .logo { padding: 0; }
  .header-actions { margin-left: auto; gap: 8px; }
  .header-actions .btn-livechat { display: none; }
  .hamburger-btn { display: flex; margin-left: 10px; }

  .hero { padding: 40px 20px 60px; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .hero-logo-col { display: none; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; flex-direction: column; align-items: center; }
  .btn-primary,
  .btn-white  { width: 100%; max-width: 280px; min-width: unset; justify-content: center; font-size: 13px; padding: 13px 24px; }
  .hero-mobile-img { display: block; width: 100%; max-width: 320px; margin: 24px auto 0; transform: translateX(-25px); }

  .features-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; margin: 0 auto; }

  .apk-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
  }

  .apk-icon { width: 72px; height: 72px; }
  .apk-icon svg { width: 38px; height: 38px; }

  .apk-features { grid-template-columns: 1fr; }
  .apk-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .header      { padding: 12px 16px; }
  .hero        { padding: 30px 16px 50px; }
  .about       { padding: 60px 16px 56px; }
  .apk-section { padding: 60px 16px; }
  .cta         { padding: 60px 16px; }
}

/* ── FAQ PAGE ─────────────────────────────────────── */

.faq-hero {
  padding: 80px 32px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(255, 215, 0, 0.08) 0%, transparent 65%),
    var(--bg);
}

.faq-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
  background-size: 58px 58px;
}

.faq-hero-inner {
  position: relative;
  z-index: 1;
}

.faq-hero .section-title { margin-bottom: 10px; }

.faq-hero p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── FAQ LIST ── */
.faq-section {
  padding: 20px 32px 80px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.22s;
}

.faq-item.open {
  border-color: rgba(255, 215, 0, 0.50);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--primary); }

.faq-item.open .faq-question { color: var(--primary); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.22s, background 0.22s;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  transition: color 0.22s, transform 0.25s;
}

.faq-item.open .faq-icon {
  border-color: var(--primary);
  background: rgba(255, 215, 0, 0.10);
}

.faq-item.open .faq-icon svg {
  color: var(--primary);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 16px 24px 22px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.80;
  border-top: 1px solid var(--border);
}

@media (max-width: 500px) {
  .faq-hero     { padding: 60px 16px 40px; }
  .faq-section  { padding: 10px 16px 60px; }
  .faq-question { padding: 16px 18px; font-size: 14px; }
  .faq-answer-inner { padding: 14px 18px 18px; }
}

/* ── MASUK PAGE — CTA HERO ─────────────────────────── */

.masuk-cta {
  position: relative;
  padding: 90px 32px 70px;
  text-align: center;
  overflow: hidden;
}

.masuk-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 80% at 50% 50%, rgba(255, 215, 0, 0.13) 0%, transparent 65%),
    var(--bg);
}

.masuk-cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
  background-size: 58px 58px;
}

.masuk-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.masuk-cta-logo img {
  max-width: 280px;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 24px rgba(255, 215, 0, 0.45))
    drop-shadow(0 0 55px rgba(204, 153, 0, 0.25));
}

.masuk-cta-remark {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.masuk-cta-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.masuk-cta-link:hover {
  opacity: 0.75;
  text-decoration: underline;
}

/* ── PANDUAN PAGE ──────────────────────────────────── */

.panduan-hero {
  padding: 70px 32px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.panduan-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(255, 215, 0, 0.10) 0%, transparent 65%),
    var(--bg);
}

.panduan-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
  background-size: 58px 58px;
}

.panduan-hero-inner {
  position: relative;
  z-index: 1;
}

.panduan-hero p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── TAB NAV ── */
.panduan-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 32px 40px;
  flex-wrap: wrap;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1.5px solid var(--border);
  background: var(--card-bg);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
}

.tab-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.tab-btn:hover,
.tab-btn.active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 215, 0, 0.08);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.18);
}

/* ── PANDUAN SECTIONS ── */
.panduan-section {
  padding: 0 32px 80px;
  display: none;
}

.panduan-section.active {
  display: block;
}

.panduan-inner {
  max-width: 680px;
  margin: 0 auto;
}

.panduan-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.panduan-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: rgba(255, 215, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.20);
}

.panduan-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.panduan-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.1;
}

.panduan-header h2 span { color: var(--primary); }

/* ── STEPS ── */
.panduan-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.panduan-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 28px;
}

.panduan-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 42px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary2) 0%, rgba(255, 215, 0,0.08) 100%);
}

.step-num {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: 1px;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--primary2);
  background: rgba(255, 215, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.18);
  position: relative;
  z-index: 1;
}

.step-body { padding-top: 6px; }

.step-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.3px;
  color: var(--text);
}

.step-body p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.step-body strong { color: var(--text); font-weight: 600; }

/* ── TIP BOX ── */
.panduan-tip {
  margin-top: 28px;
  padding: 16px 20px;
  background: rgba(255, 215, 0, 0.07);
  border: 1px solid rgba(255, 215, 0, 0.22);
  border-left: 3px solid var(--primary);
  border-radius: 10px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.panduan-tip svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.panduan-tip p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.70;
}

.panduan-tip strong { color: var(--primary); }

@media (max-width: 500px) {
  .masuk-cta      { padding: 60px 16px 50px; }
  .masuk-cta-logo img { max-width: 200px; }
  .panduan-hero   { padding: 50px 16px 36px; }
  .panduan-tabs   { padding: 0 16px 28px; gap: 8px; }
  .tab-btn        { padding: 10px 18px; font-size: 12px; }
  .panduan-section { padding: 0 16px 60px; }
}

/* ── INSTALL SECTION (x17-apk page) ── */
.install-section {
  padding: 60px 32px 80px;
  background: var(--card-bg);
  position: relative;
}

.install-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, var(--primary) 40%, var(--primary2) 60%, transparent 100%);
  opacity: 1;
}

.install-steps {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.install-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 32px;
}

.install-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary2) 0%, rgba(255, 215, 0,0.08) 100%);
}

.install-section .step-num {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: 1px;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary2);
  background: rgba(255, 215, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.20);
  position: relative;
  z-index: 1;
}

.install-section .step-body { padding-top: 8px; }

.install-section .step-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.install-section .step-body p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.install-section .step-body strong { color: var(--text); font-weight: 600; }

@media (max-width: 500px) {
  .install-section { padding: 50px 16px 60px; }
  .install-step    { gap: 16px; }
}
