/* =============================================
   U2 Official Malaysia — Main Stylesheet
   Mobile-first | White + Orange Brand
   ============================================= */

:root {
  --bg:           #ffffff;
  --bg-soft:      #f7f8fa;
  --bg-muted:     #f0f1f3;
  --surface:      #ffffff;
  --surface-2:    #f7f8fa;

  --orange:       #f89a02;
  --orange-dark:  #d45909;
  --orange-grad:  linear-gradient(135deg, #f89a02 0%, #d45909 100%);
  --orange-glow:  rgba(248,154,2,0.14);
  --orange-border:rgba(248,154,2,0.30);

  --text:         #1a1a1a;
  --text-2:       #444;
  --text-muted:   #888;
  --text-light:   #bbb;
  --border:       #e8e9eb;
  --border-dark:  #d0d2d6;

  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --max-w:        1100px;
  --trans:        0.2s ease;

  --shadow-sm:    0 1px 4px rgba(0,0,0,0.07);
  --shadow:       0 4px 16px rgba(0,0,0,0.09);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-orange:0 4px 20px rgba(212,89,9,0.28);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 72px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-dark); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--orange); }
ul { list-style: none; }
button { font-family: inherit; }

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section    { padding: 56px 0; }
.section-sm { padding: 36px 0; }
.section-lg { padding: 80px 0; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; color: var(--text); }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-muted  { color: var(--text-muted); }

.label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-dark);
  background: var(--orange-glow);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 1;
  flex-shrink: 1;
  min-width: 0;
}

.logo-img {
  height: 30px;
  width: auto;
  max-width: 120px;
  display: block;
  object-fit: contain;
}

/* Footer logo smaller */
.slim-footer .logo-img,
.site-footer .logo-img { height: 24px; max-width: 96px; }

/* === NAV TOGGLE === */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  z-index: 300;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === NAV MENU === */
.nav-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  overflow-y: auto;
}

.nav-menu.open { display: flex; }

.nav-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}

.nav-menu a {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 0;
  transition: color var(--trans);
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--orange-dark); }

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-close  { display: none; }

  .nav-menu {
    display: flex;
    position: static;
    background: none;
    flex-direction: row;
    gap: 4px;
    inset: auto;
  }

  .nav-menu a {
    font-size: 0.78rem;
    color: var(--text-2);
    letter-spacing: 0.04em;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
  }

  .nav-menu a:hover,
  .nav-menu a.active {
    color: var(--orange-dark);
    background: var(--orange-glow);
  }
}

/* === BREADCRUMB === */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.76rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--orange-dark); }
.breadcrumb .sep { margin: 0 6px; color: var(--border-dark); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all var(--trans);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
  line-height: 1;
}

.btn-primary {
  background: var(--orange-grad);
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 28px rgba(212,89,9,0.38);
  color: #fff;
  filter: brightness(1.06);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--orange-dark);
  border: 1.5px solid var(--orange-border);
  font-weight: 700;
}

.btn-secondary:hover {
  background: var(--orange-glow);
  border-color: var(--orange);
  color: var(--orange-dark);
}

.btn-ghost {
  background: var(--bg-soft);
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  background: var(--bg-muted);
  color: var(--text);
  border-color: var(--border-dark);
}

.btn-lg { padding: 15px 36px; font-size: 0.95rem; }
.btn-sm { padding: 9px 18px; font-size: 0.8rem; }
.btn-full { width: 100%; }

/* === HERO SLIM (portal pages) === */
.hero-slim {
  padding: 48px 0 36px;
  text-align: center;
  background: linear-gradient(180deg, #fff8f0 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
}

.hero-slim h1 {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.2;
  color: var(--text);
}

.hero-slim h1 .gold {
  background: var(--orange-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-slim p {
  color: var(--text-2);
  font-size: 0.95rem;
  max-width: 440px;
  margin: 0 auto 24px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

@media (min-width: 480px) {
  .hero-ctas { flex-direction: row; justify-content: center; }
}

@media (min-width: 768px) {
  .hero-slim    { padding: 64px 0 48px; }
  .hero-slim h1 { font-size: 2.3rem; }
}

/* === HOMEPAGE HERO === */
.hero {
  padding: 56px 0 44px;
  text-align: center;
  background: linear-gradient(180deg, #fff8f0 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-glow);
  border: 1px solid var(--orange-border);
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 .gold {
  background: var(--orange-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero    { padding: 80px 0 64px; }
  .hero h1 { font-size: 2.8rem; }
}

/* === DISTRIBUTION GRID (portal entry points) === */
.dist-section { padding: 32px 0; background: var(--bg-soft); }

.dist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .dist-grid { grid-template-columns: repeat(3, 1fr); }
}

.dist-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 22px 10px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text);
  text-decoration: none;
  text-align: center;
  transition: all var(--trans);
  min-height: 96px;
  box-shadow: var(--shadow-sm);
}

.dist-btn:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  color: var(--text);
}

.dist-btn.is-primary {
  background: var(--orange-grad);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-orange);
}

.dist-btn.is-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(212,89,9,0.38);
  color: #fff;
  filter: brightness(1.05);
}

.dist-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.dist-btn-icon svg { width: 24px; height: 24px; }

.dist-btn.is-primary .dist-btn-icon svg { color: #fff; }
.dist-btn:not(.is-primary) .dist-btn-icon svg { color: var(--orange-dark); }

.dist-btn-label {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.dist-btn.is-primary .dist-btn-label { color: #fff; }

.dist-btn-sub {
  font-size: 0.68rem;
  font-weight: 400;
  line-height: 1.2;
}

.dist-btn.is-primary .dist-btn-sub  { color: rgba(255,255,255,0.75); }
.dist-btn:not(.is-primary) .dist-btn-sub { color: var(--text-muted); }

/* === TRUST STRIP === */
.trust-strip {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-2);
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--orange-dark);
  flex-shrink: 0;
}

/* === SECTION HEADER === */
.section-header { text-align: center; margin-bottom: 36px; }
.section-header h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: 8px; }
.section-header p  { color: var(--text-muted); font-size: 0.9rem; max-width: 480px; margin: 0 auto; }

@media (min-width: 768px) { .section-header h2 { font-size: 2rem; } }

/* === CARDS === */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 480px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  border-color: var(--orange-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.card-icon svg { width: 22px; height: 22px; color: var(--orange-dark); }
.card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.card p  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

/* === GAME CATEGORY GRID === */
.game-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 600px) { .game-cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .game-cat-grid { grid-template-columns: repeat(4, 1fr); } }

.game-cat {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
  transition: border-color var(--trans), transform var(--trans);
  box-shadow: var(--shadow-sm);
}

.game-cat:hover {
  border-color: var(--orange-border);
  transform: translateY(-2px);
}

.game-cat-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #fff4e6, #ffe8c8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.game-cat-icon svg { width: 26px; height: 26px; color: var(--orange-dark); }
.game-cat h3 { font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.game-cat p  { font-size: 0.74rem; color: var(--text-muted); }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--trans), box-shadow var(--trans);
}

.faq-item.open {
  border-color: var(--orange-border);
  box-shadow: 0 2px 12px var(--orange-glow);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color var(--trans);
}

.faq-q:hover { color: var(--orange-dark); }

.faq-arrow {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--orange-dark);
  transition: transform var(--trans);
  font-style: normal;
  display: flex;
  align-items: center;
}

.faq-arrow svg { width: 16px; height: 16px; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 400px; }

.faq-a p {
  padding: 0 20px 16px;
  color: var(--text-2);
  font-size: 0.86rem;
  line-height: 1.7;
}

.faq-a p a { color: var(--orange-dark); font-weight: 600; }
.faq-a p a:hover { color: var(--orange); }

/* === STEPS === */
.steps { display: flex; flex-direction: column; gap: 16px; max-width: 600px; margin: 0 auto; }

.step { display: flex; gap: 16px; align-items: flex-start; }

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange-grad);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-text h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 3px; }
.step-text p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

/* === CHECK LIST === */
.check-list { display: flex; flex-direction: column; gap: 10px; }

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text-2);
}

.check-list li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--orange-dark);
  margin-top: 2px;
}

/* === STAT STRIP === */
.stat-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 52px;
  padding: 40px 20px;
  text-align: center;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  background: var(--orange-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item span { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

/* === INFO BOX === */
.info-box {
  background: #fff8f0;
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.86rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* === NOTICE === */
.notice {
  background: #fff8f0;
  border: 1px solid var(--orange-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* === DOWNLOAD BOX === */
.download-box {
  background: linear-gradient(135deg, #fff8f0 0%, #fff3e5 100%);
  border: 1.5px solid var(--orange-border);
  border-radius: var(--radius-xl);
  padding: 40px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.download-box h2 { font-size: 1.5rem; margin-bottom: 10px; }
.download-box .desc { color: var(--text-2); margin-bottom: 28px; font-size: 0.9rem; }

.download-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 36px;
  margin-top: 22px;
}

.dl-meta-item { text-align: center; font-size: 0.76rem; color: var(--text-muted); }
.dl-meta-item strong { display: block; color: var(--text); font-size: 0.88rem; margin-bottom: 2px; }

/* === APP FEATURES === */
.app-features { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 600px) { .app-features { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .app-features { grid-template-columns: repeat(3, 1fr); } }

.app-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: border-color var(--trans), box-shadow var(--trans);
  box-shadow: var(--shadow-sm);
}

.app-feat:hover { border-color: var(--orange-border); box-shadow: var(--shadow); }

.app-feat-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff4e6, #fde9cc);
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-feat-icon svg { width: 20px; height: 20px; color: var(--orange-dark); }
.app-feat-text h3 { font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; }
.app-feat-text p  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }

/* === ACCESS GRID (homepage) === */
.access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 500px) { .access-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .access-grid { grid-template-columns: repeat(5, 1fr); } }

.access-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all var(--trans);
  box-shadow: var(--shadow-sm);
}

.access-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--text);
}

.ac-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #fff4e6, #fde9cc);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ac-icon svg { width: 22px; height: 22px; color: var(--orange-dark); }
.access-card strong { font-size: 0.82rem; font-weight: 700; line-height: 1.3; color: var(--text); }
.access-card span   { font-size: 0.7rem; color: var(--text-muted); }

/* === PROMO CARD === */
.promo-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  box-shadow: var(--shadow-sm);
}

.promo-card:hover {
  border-color: var(--orange-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.promo-banner {
  background: var(--orange-grad);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-banner svg { width: 36px; height: 36px; color: rgba(255,255,255,0.9); }
.promo-card-body  { padding: 18px 20px; }

.promo-tag {
  display: inline-block;
  background: var(--orange-glow);
  border: 1px solid var(--orange-border);
  color: var(--orange-dark);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.promo-card h3 { font-size: 0.98rem; font-weight: 800; margin-bottom: 6px; }
.promo-card p  { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, #fff8f0 0%, #fff3e5 100%);
  border: 1.5px solid var(--orange-border);
  border-radius: var(--radius-xl);
  padding: 44px 24px;
  text-align: center;
}

.cta-banner h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: 10px; }
.cta-banner p  { color: var(--text-2); margin-bottom: 24px; font-size: 0.9rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* === MINI FAQ === */
.mini-faq {
  padding: 28px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 28px;
}

.mini-faq-title {
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* === SLIM FOOTER === */
.slim-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 28px 0 20px;
  margin-top: 48px;
}

.slim-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.slim-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
}

.slim-footer-links a { font-size: 0.78rem; color: var(--text-muted); transition: color var(--trans); }
.slim-footer-links a:hover { color: var(--orange-dark); }

.slim-footer-copy { font-size: 0.7rem; color: var(--text-light); line-height: 1.6; }
.slim-footer-copy a { color: var(--text-light); }
.slim-footer-copy a:hover { color: var(--orange-dark); }

/* === SITE FOOTER (full) === */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .logo { display: flex; margin-bottom: 12px; }
.footer-brand p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; max-width: 260px; }

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange-dark);
  margin-bottom: 14px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 0.84rem; color: var(--text-muted); transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  text-align: center;
}

.footer-bottom p { font-size: 0.74rem; color: var(--text-light); line-height: 1.8; }
.footer-bottom a { color: var(--text-light); }
.footer-bottom a:hover { color: var(--orange-dark); }

/* === STICKY BOTTOM BAR === */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(255,255,255,0.97);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  display: flex;
  gap: 10px;
}

.sticky-bar .btn {
  flex: 1;
  min-width: 0;
  font-size: 0.82rem;
  padding: 11px 10px;
}

@media (min-width: 900px) {
  .sticky-bar { display: none; }
  body        { padding-bottom: 0; }
}

/* === TWO-COL === */
.two-col { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 768px) { .two-col { grid-template-columns: 1fr 1fr; gap: 48px; } }

/* === RESPONSIVE SECTION PADDING === */
@media (min-width: 768px) {
  .section    { padding: 72px 0; }
  .section-sm { padding: 52px 0; }
  .section-lg { padding: 96px 0; }
}

/* =============================================
   PORTAL PAGE — Currency Selector
   ============================================= */

.portal-page body { background: var(--bg-soft); }

/* Header quick nav (portal / simplified pages) */
.header-quicknav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.hq-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-2);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--trans);
  white-space: nowrap;
}
.hq-link svg { flex-shrink: 0; }
.hq-link:hover,
.hq-link.active { color: var(--orange-dark); background: var(--orange-glow); }

/* Portal main section */
.portal-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - 60px - 68px);
  padding: 32px 0 24px;
}
.portal-wrap {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Brand block */
.portal-brand {
  text-align: center;
  margin-bottom: 24px;
}
.portal-logo {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  margin: 0 auto 14px;
}
.portal-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.portal-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Currency Tabs */
.currency-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  margin-bottom: 16px;
}
.currency-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 18px 12px 14px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--trans);
  user-select: none;
}
.currency-tab:hover {
  border-color: var(--orange);
  background: #fffaf2;
}
.currency-tab.active {
  border-color: var(--orange);
  background: linear-gradient(160deg, rgba(248,154,2,0.07) 0%, rgba(212,89,9,0.04) 100%);
  box-shadow: 0 0 0 4px rgba(248,154,2,0.12);
}
.ct-symbol {
  font-size: 1.6rem;
  font-weight: 900;
  color: #ccc;
  line-height: 1;
  font-family: Georgia, 'Times New Roman', serif;
  transition: color var(--trans);
}
.currency-tab.active .ct-symbol { color: var(--orange-dark); }
.ct-label {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.06em;
}
.currency-tab.active .ct-label { color: var(--orange-dark); }
.ct-desc {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Portal CTA buttons */
.portal-ctas {
  display: grid;
  gap: 10px;
  width: 100%;
  margin-bottom: 20px;
}
.btn-portal {
  width: 100%;
  padding: 15px 24px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  display: block;
}
.btn-outline-primary {
  background: #fff;
  color: var(--orange-dark);
  border: 2px solid var(--orange);
  box-shadow: none;
  transition: all var(--trans);
}
.btn-outline-primary:hover {
  background: var(--orange-glow);
  border-color: var(--orange-dark);
}

/* Divider */
.portal-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.portal-divider::before,
.portal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Secondary action buttons */
.portal-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
}
.sec-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 6px 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-2);
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all var(--trans);
  line-height: 1.3;
}
.sec-btn:hover {
  background: var(--orange-glow);
  border-color: var(--orange-border);
  color: var(--orange-dark);
}
.sec-icon {
  width: 22px;
  height: 22px;
  color: var(--orange-dark);
  flex-shrink: 0;
}

/* Download page info strip */
.download-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 100%;
  margin: 16px 0 20px;
}
.dl-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 6px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.dl-info-item strong {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--orange-dark);
}
.dl-info-item span {
  font-size: 0.65rem;
  color: var(--text-muted);
}
