/* =====================================================
   me88 Singapore — Main Stylesheet
   Color Scheme: Dark #161616 | Orange #ff4e00 | Gold #ffb800
   ===================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #161616;
  color: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: #ffb800; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { line-height: 1.3; font-weight: 700; }
h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: #d6d6d6; }

/* ---------- Utility ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section-alt { padding: 60px 0; background: #1e1e1e; }
.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  background: linear-gradient(39.71deg, #ff4e00 7.3%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle { text-align: center; color: #8a8a8a; margin-top: -30px; margin-bottom: 40px; font-size: 1rem; }
.gradient-text {
  background: linear-gradient(39.71deg, #ff4e00 7.3%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.badge-hot {
  background: linear-gradient(39.71deg, #ff4e00 7.3%, #ffb800 100%);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 6px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all .25s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary {
  background: linear-gradient(39.71deg, #ff4e00 7.3%, #ffb800 100%);
  color: #ffffff;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 78, 0, 0.35);
  color: #ffffff;
}
.btn-outline {
  background: transparent;
  border: 2px solid #ff4e00;
  color: #ff4e00;
}
.btn-outline:hover {
  background: #ff4e00;
  color: #ffffff;
}
.btn-gold {
  background: linear-gradient(135deg, #ffb800, #ff8c00);
  color: #161616;
  font-weight: 800;
}
.btn-gold:hover { opacity: 0.9; transform: translateY(-2px); color: #161616; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #2c2c2c;
  border-bottom: 1px solid rgba(255,78,0,0.3);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
.logo-wrap img { height: 42px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px;
  border-radius: 5px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #d6d6d6;
  white-space: nowrap;
  transition: all .2s;
}
.main-nav a:hover, .main-nav a.active {
  color: #ffb800;
  background: rgba(255,184,0,0.08);
}
.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all .3s;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #2c2c2c;
  border-top: 1px solid rgba(255,78,0,0.2);
  padding: 10px 0;
}
.mobile-nav a {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.95rem;
  color: #d6d6d6;
}
.mobile-nav a:hover { color: #ffb800; background: rgba(255,184,0,0.05); }
.mobile-nav.open { display: flex; }

/* ---------- Hero / Slider ---------- */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: #111;
}
.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide {
  min-width: 100%;
  position: relative;
}
.slide img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(22,22,22,0.85) 0%, rgba(22,22,22,0.3) 60%, transparent 100%);
  display: flex;
  align-items: center;
}
.slide-content { padding: 0 60px; max-width: 600px; }
.slide-content h2 { font-size: 2.4rem; margin-bottom: 10px; color: #fff; }
.slide-content p { font-size: 1.1rem; color: #d6d6d6; margin-bottom: 24px; }
.slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all .3s;
  border: none;
}
.slider-dot.active { background: #ff4e00; transform: scale(1.3); }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,78,0,0.4);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  z-index: 5;
}
.slider-btn:hover { background: #ff4e00; }
.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }

/* ---------- Game Categories Grid ---------- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,78,0,0.2);
  transition: all .3s;
  cursor: pointer;
}
.cat-card:hover {
  transform: translateY(-6px);
  border-color: #ff4e00;
  box-shadow: 0 12px 30px rgba(255,78,0,0.2);
}
.cat-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .4s;
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(22,22,22,0.95) 0%, transparent 100%);
  padding: 20px 16px 16px;
}
.cat-card-overlay h3 { font-size: 1.2rem; color: #fff; margin-bottom: 4px; }
.cat-card-overlay p { font-size: 0.8rem; color: #bebebe; margin: 0; }
.cat-card-overlay .btn { margin-top: 10px; font-size: 0.78rem; padding: 7px 16px; }

/* ---------- Welcome Bonus Banner ---------- */
.bonus-banner {
  background: linear-gradient(135deg, #1e0a00 0%, #2c1000 50%, #1e0a00 100%);
  border: 1px solid rgba(255,78,0,0.3);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.bonus-text h2 { font-size: 1.9rem; color: #fff; margin-bottom: 6px; }
.bonus-text .amount {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(39.71deg, #ff4e00 7.3%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.bonus-text p { color: #8a8a8a; font-size: 0.9rem; margin: 6px 0 20px; }
.bonus-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.bonus-badge {
  background: rgba(255,78,0,0.1);
  border: 1px solid rgba(255,78,0,0.3);
  border-radius: 8px;
  padding: 14px 20px;
  text-align: center;
  min-width: 120px;
}
.bonus-badge .b-value { font-size: 1.5rem; font-weight: 800; color: #ffb800; display: block; }
.bonus-badge .b-label { font-size: 0.75rem; color: #8a8a8a; }

/* ---------- Providers ---------- */
.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.provider-logo {
  background: #2c2c2c;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 14px 22px;
  transition: all .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 60px;
}
.provider-logo:hover {
  border-color: rgba(255,184,0,0.4);
  background: #333;
  transform: translateY(-3px);
}
.provider-logo img { max-height: 28px; width: auto; filter: brightness(0.8) grayscale(30%); transition: filter .25s; }
.provider-logo:hover img { filter: brightness(1) grayscale(0%); }
.provider-logo span { color: #8a8a8a; font-size: 0.85rem; font-weight: 600; }

/* ---------- Stats / Trust Bar ---------- */
.stats-bar {
  background: linear-gradient(39.71deg, #ff4e00 7.3%, #ffb800 100%);
  padding: 28px 0;
}
.stats-grid {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item .num { font-size: 2rem; font-weight: 900; color: #fff; display: block; }
.stat-item .lbl { font-size: 0.8rem; color: rgba(255,255,255,0.8); }

/* ---------- Why Choose ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  transition: all .3s;
}
.feature-card:hover {
  border-color: rgba(255,78,0,0.3);
  transform: translateY(-4px);
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,78,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
}
.feature-card h3 { font-size: 1rem; margin-bottom: 8px; color: #fff; }
.feature-card p { font-size: 0.85rem; color: #8a8a8a; margin: 0; }

/* ---------- Payment Methods ---------- */
.payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.payment-item {
  background: #2c2c2c;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: #bebebe;
  font-weight: 600;
  transition: all .2s;
}
.payment-item:hover { border-color: #ffb800; color: #ffb800; }

/* ---------- Promotions Grid ---------- */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.promo-card {
  background: #1e1e1e;
  border: 1px solid rgba(255,78,0,0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: all .3s;
}
.promo-card:hover { transform: translateY(-5px); border-color: #ff4e00; box-shadow: 0 10px 30px rgba(255,78,0,0.15); }
.promo-card-img { width: 100%; height: 180px; object-fit: cover; }
.promo-card-body { padding: 20px; }
.promo-card-body h3 { font-size: 1.05rem; color: #fff; margin-bottom: 8px; }
.promo-card-body .promo-amount { font-size: 1.6rem; font-weight: 900; color: #ffb800; display: block; margin-bottom: 8px; }
.promo-card-body p { font-size: 0.82rem; color: #8a8a8a; margin-bottom: 14px; }
.promo-tag {
  background: rgba(255,78,0,0.15);
  color: #ff4e00;
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: rgba(255,78,0,0.4); }
.faq-question {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  user-select: none;
}
.faq-question:hover { color: #ffb800; }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,78,0,0.15);
  border: 1px solid rgba(255,78,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #ff4e00;
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: #ff4e00; color: #fff; }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: #8a8a8a;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ---------- Content Sections (Long-form) ---------- */
.content-section { margin-bottom: 40px; }
.content-section h2 { color: #fff; margin-bottom: 16px; font-size: 1.5rem; }
.content-section h3 { color: #ffb800; margin-bottom: 12px; font-size: 1.15rem; }
.content-section p { color: #bebebe; margin-bottom: 14px; }
.content-section ul { margin: 12px 0 16px 20px; list-style: disc; }
.content-section ul li { color: #bebebe; margin-bottom: 6px; padding-left: 4px; }
.content-section ol { margin: 12px 0 16px 20px; }
.content-section ol li { color: #bebebe; margin-bottom: 6px; }
.info-box {
  background: rgba(255,78,0,0.06);
  border-left: 4px solid #ff4e00;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
}
.info-box p { margin: 0; color: #d6d6d6; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, #1e0a00 0%, #161616 60%);
  padding: 60px 0 50px;
  border-bottom: 1px solid rgba(255,78,0,0.2);
}
.page-hero h1 { font-size: 2.4rem; margin-bottom: 14px; }
.page-hero p { font-size: 1.05rem; color: #8a8a8a; max-width: 700px; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: #8a8a8a;
}
.breadcrumb a { color: #8a8a8a; }
.breadcrumb a:hover { color: #ffb800; }
.breadcrumb span { color: #484848; }

/* ---------- Two-column layout ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ---------- Game Cards ---------- */
.game-card {
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
  transition: all .3s;
}
.game-card:hover { transform: translateY(-5px); border-color: rgba(255,78,0,0.3); }
.game-card img { width: 100%; height: 180px; object-fit: cover; }
.game-card-body { padding: 16px; }
.game-card-body h4 { color: #fff; margin-bottom: 6px; font-size: 0.95rem; }
.game-card-body p { color: #8a8a8a; font-size: 0.8rem; margin: 0; }

/* ---------- VIP Tiers ---------- */
.vip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vip-card {
  background: linear-gradient(135deg, #1e1e1e, #252525);
  border: 1px solid;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all .3s;
}
.vip-card:hover { transform: translateY(-4px); }
.vip-card.jade { border-color: #5af075; }
.vip-card.rosegold { border-color: #e8a088; }
.vip-card.ruby { border-color: #e84444; }
.vip-card.sapphire { border-color: #4488e8; }
.vip-card.emerald { border-color: #44c87e; }
.vip-card.royal { border-color: #ffb800; background: linear-gradient(135deg, #1e1a00, #2c2500); }
.vip-icon { font-size: 2.5rem; margin-bottom: 12px; }
.vip-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.vip-card ul { text-align: left; font-size: 0.82rem; color: #8a8a8a; }
.vip-card ul li { padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.vip-card ul li::before { content: '✓ '; color: #ffb800; font-weight: 700; }

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  text-align: center;
  padding: 24px 16px;
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  position: relative;
}
.step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(39.71deg, #ff4e00 7.3%, #ffb800 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 14px;
}
.step-card h4 { font-size: 0.95rem; color: #fff; margin-bottom: 8px; }
.step-card p { font-size: 0.82rem; color: #8a8a8a; margin: 0; }

/* ---------- Trust Badges ---------- */
.trust-bar {
  background: #1e1e1e;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8a8a8a;
  font-size: 0.82rem;
}
.trust-item .ti-icon { font-size: 1.3rem; color: #ffb800; }

/* ---------- Footer ---------- */
.site-footer {
  background: #111111;
  border-top: 1px solid rgba(255,78,0,0.2);
  padding-top: 50px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 38px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.83rem; color: #8a8a8a; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffb800;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #8a8a8a; font-size: 0.85rem; transition: color .2s; }
.footer-col ul li a:hover { color: #ffb800; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.78rem; color: #484848; margin: 0; }
.footer-payment { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.footer-payment .pm {
  background: #2c2c2c;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  color: #8a8a8a;
}
.footer-trust {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 16px 0;
  flex-wrap: wrap;
}
.footer-trust .ft {
  background: rgba(255,184,0,0.08);
  border: 1px solid rgba(255,184,0,0.2);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.72rem;
  color: #ffb800;
  font-weight: 600;
}
.age-badge {
  background: #ff4e00;
  color: #fff;
  font-weight: 900;
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
}

/* ---------- 404 Page ---------- */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.error-code {
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(39.71deg, #ff4e00 7.3%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #161616; }
::-webkit-scrollbar-thumb { background: #3c3c3c; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #ff4e00; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .vip-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .section { padding: 40px 0; }
  .section-alt { padding: 40px 0; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta .btn { display: none; }
  .header-cta .btn:last-child { display: inline-block; }
  .categories-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .vip-grid { grid-template-columns: 1fr; }
  .bonus-banner { flex-direction: column; text-align: center; padding: 28px 20px; }
  .slide-content { padding: 0 20px; }
  .slide-content h2 { font-size: 1.5rem; }
  .slide-content p { font-size: 0.9rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { flex-direction: column; gap: 16px; }
  .three-col { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .bonus-badges { justify-content: center; }
  .trust-items { gap: 16px; }
}
