/*
Theme Name: JaiClub APK Theme
Theme URI: https://jaiclubapk.xyz
Author: JaiClub APK
Description: Ultra-fast, mobile-first landing page theme for JaiClub APK & referral website.
Version: 1.0
License: GNU General Public License v2 or later
Tags: landing-page, one-page, mobile-first, apk, fast
*/

/* ===========================
   CSS CUSTOM PROPERTIES
=========================== */
:root {
  --clr-bg:        #0a0e1a;
  --clr-surface:   #111827;
  --clr-card:      #1a2235;
  --clr-border:    #1e2d45;
  --clr-gold:      #f5c842;
  --clr-gold-dark: #c99b10;
  --clr-accent:    #ff6b35;
  --clr-green:     #22c55e;
  --clr-blue:      #3b82f6;
  --clr-text:      #e2e8f0;
  --clr-muted:     #94a3b8;
  --clr-white:     #ffffff;
  --gradient-gold: linear-gradient(135deg, #f5c842 0%, #ff9a00 100%);
  --gradient-hero: linear-gradient(160deg, #0a0e1a 0%, #0f1c35 50%, #0a1628 100%);
  --shadow-glow:   0 0 20px rgba(245, 200, 66, 0.4), 0 0 40px rgba(245, 200, 66, 0.15);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.4);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --font-heading:  'Sora', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --font-mono:     'JetBrains Mono', monospace;
  --transition:    0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:         860px;
  --max-w-wide:    1100px;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--clr-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-accent); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  font-weight: 700;
  color: var(--clr-white);
}

h1 { font-size: clamp(1.75rem, 5vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; color: var(--clr-text); }
p:last-child { margin-bottom: 0; }

strong { color: var(--clr-gold); font-weight: 700; }
em { color: var(--clr-accent); font-style: normal; font-weight: 600; }
code { font-family: var(--font-mono); background: var(--clr-card); padding: 2px 8px; border-radius: 4px; font-size: 0.9em; color: var(--clr-gold); }

/* ===========================
   LAYOUT UTILITIES
=========================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.1rem;
}
.container--wide { max-width: var(--max-w-wide); }
.section { padding-block: 4rem; }
.section--sm { padding-block: 2.5rem; }

/* ===========================
   GOOGLE FONTS IMPORT
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&family=JetBrains+Mono:wght@400;700&display=swap');

/* ===========================
   SKIP LINK (A11Y)
=========================== */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--clr-gold); color: #000; padding: 0.5rem 1rem;
  border-radius: var(--radius-sm); z-index: 9999; font-weight: 700;
}
.skip-link:focus { top: 1rem; }

/* ===========================
   TOP ANNOUNCEMENT BAR
=========================== */
.announcement-bar {
  background: var(--gradient-gold);
  color: #000;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}
.announcement-bar a { color: #000; text-decoration: underline; font-weight: 700; }

/* ===========================
   HEADER / NAV
=========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(10, 14, 26, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--clr-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
  max-width: var(--max-w-wide);
  margin-inline: auto;
  padding-inline: 1.1rem;
}
.site-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.site-logo span { color: var(--clr-accent); -webkit-text-fill-color: var(--clr-accent); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-gold);
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  transition: box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { box-shadow: var(--shadow-glow); transform: translateY(-1px); }

/* ===========================
   HERO SECTION
=========================== */
.hero {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding-block: 3.5rem 4rem;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(245,200,66,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(255,107,53,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245,200,66,0.12);
  border: 1px solid rgba(245,200,66,0.3);
  color: var(--clr-gold);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  background: linear-gradient(135deg, #ffffff 20%, #f5c842 60%, #ff9a00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--clr-muted);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* Info Table */
.info-table {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  text-align: left;
}
.info-table table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td {
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--clr-border);
}
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: none; }
.info-table th {
  background: rgba(245,200,66,0.07);
  color: var(--clr-gold);
  font-family: var(--font-heading);
  font-weight: 600;
  width: 38%;
}
.info-table td { color: var(--clr-text); font-weight: 500; }

/* CTA Buttons */
.btn-group { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gradient-gold);
  color: #000; font-weight: 800;
  padding: 0.9rem 1.8rem; border-radius: var(--radius-xl);
  font-size: 1rem; font-family: var(--font-heading);
  transition: box-shadow var(--transition), transform var(--transition);
  animation: glow-pulse 2.5s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 0 16px rgba(245,200,66,0.5); }
  50%      { box-shadow: 0 0 32px rgba(245,200,66,0.85), 0 0 60px rgba(245,200,66,0.3); }
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); color: #000; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--clr-gold);
  border: 1.5px solid var(--clr-gold);
  padding: 0.85rem 1.6rem; border-radius: var(--radius-xl);
  font-size: 0.95rem; font-family: var(--font-heading); font-weight: 700;
  transition: background var(--transition), color var(--transition);
}
.btn-secondary:hover { background: rgba(245,200,66,0.12); }

/* ===========================
   INVITATION CODE WIDGET (INLINE)
=========================== */
.code-widget {
  background: linear-gradient(135deg, rgba(245,200,66,0.1) 0%, rgba(255,107,53,0.06) 100%);
  border: 1.5px solid rgba(245,200,66,0.35);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.code-widget__label {
  font-size: 0.78rem;
  color: var(--clr-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
}
.code-widget__value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-gold);
  letter-spacing: 0.08em;
}
.btn-copy {
  background: var(--gradient-gold);
  color: #000; font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-family: var(--font-heading);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-copy:hover { transform: scale(1.04); box-shadow: var(--shadow-glow); }
.btn-copy.copied { background: linear-gradient(135deg, var(--clr-green), #16a34a); }

/* ===========================
   SECTION HEADINGS
=========================== */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  color: var(--clr-gold); text-transform: uppercase; letter-spacing: 0.1em;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}
.section-header h2 { margin-bottom: 0.6rem; }
.section-header p { color: var(--clr-muted); max-width: 480px; margin-inline: auto; }

/* ===========================
   FEATURE CARDS
=========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
}
.feature-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover { border-color: rgba(245,200,66,0.35); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: rgba(245,200,66,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.88rem; color: var(--clr-muted); margin: 0; }

/* ===========================
   STEPS / HOW IT WORKS
=========================== */
.steps-list { display: flex; flex-direction: column; gap: 1.2rem; }
.step-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.5rem;
}
.step-number {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--gradient-gold);
  color: #000; font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 0.95rem;
}
.step-content h4 { margin-bottom: 0.3rem; font-size: 1rem; }
.step-content p { font-size: 0.88rem; color: var(--clr-muted); margin: 0; }

/* ===========================
   REFERRAL / EARNING SECTION
=========================== */
.earn-banner {
  background: linear-gradient(135deg, #0f2a1a 0%, #0a1e30 100%);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
}
.earn-banner .earn-amount {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #22c55e, #86efac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.commission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.commission-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1rem 0.75rem;
  text-align: center;
}
.commission-item .tier { font-size: 0.72rem; color: var(--clr-muted); text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-heading); }
.commission-item .pct { font-size: 1.5rem; font-weight: 800; font-family: var(--font-heading); color: var(--clr-green); margin: 0.25rem 0; }
.commission-item .desc { font-size: 0.78rem; color: var(--clr-muted); }

/* ===========================
   FAQ ACCORDION
=========================== */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(245,200,66,0.35); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  text-align: left;
  color: var(--clr-white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  background: none;
}
.faq-question .faq-icon {
  flex-shrink: 0; width: 22px; height: 22px;
  background: rgba(245,200,66,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; transition: transform var(--transition), background var(--transition);
  color: var(--clr-gold);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(245,200,66,0.2); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
  padding: 0 1.3rem;
  font-size: 0.9rem;
  color: var(--clr-muted);
}
.faq-item.open .faq-answer { max-height: 600px; padding: 0 1.3rem 1.2rem; }

/* ===========================
   SAFETY / TRUST BADGES
=========================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  text-align: center;
}
.trust-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.2rem 0.75rem;
}
.trust-item .trust-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.trust-item p { font-size: 0.8rem; color: var(--clr-muted); margin: 0; line-height: 1.4; }
.trust-item strong { display: block; color: var(--clr-text); font-size: 0.88rem; margin-bottom: 0.2rem; }

/* ===========================
   CONTENT PROSE
=========================== */
.prose { max-width: 720px; margin-inline: auto; }
.prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.prose h3 { margin-top: 1.8rem; margin-bottom: 0.75rem; color: var(--clr-gold); }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.4rem; color: var(--clr-text); font-size: 0.95rem; }
.prose li::marker { color: var(--clr-gold); }
.prose blockquote {
  border-left: 3px solid var(--clr-gold);
  padding-left: 1.2rem;
  margin: 1.5rem 0;
  color: var(--clr-muted);
  font-style: italic;
}
.prose .highlight-box {
  background: rgba(245,200,66,0.07);
  border: 1px solid rgba(245,200,66,0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  margin: 1.5rem 0;
}

/* ===========================
   FLOATING BANNER (MOBILE)
=========================== */
.floating-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #0d1825 0%, #111827 100%);
  border-top: 2px solid rgba(245,200,66,0.4);
  padding: 0.85rem 1rem;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.5);
}
.floating-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: var(--max-w-wide);
  margin-inline: auto;
}
.floating-banner__code {
  flex: 1; min-width: 0;
}
.floating-banner__code .label {
  font-size: 0.68rem; color: var(--clr-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
  font-family: var(--font-heading); font-weight: 600;
  display: block; margin-bottom: 1px;
}
.floating-banner__code .value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-gold);
  letter-spacing: 0.06em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.floating-banner__actions {
  display: flex; gap: 0.5rem; align-items: center; flex-shrink: 0;
}
.floating-banner__copy {
  background: rgba(245,200,66,0.15);
  border: 1px solid rgba(245,200,66,0.4);
  color: var(--clr-gold);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem; font-weight: 700; font-family: var(--font-heading);
  transition: background var(--transition);
}
.floating-banner__copy:hover,
.floating-banner__copy.copied { background: rgba(34,197,94,0.2); border-color: var(--clr-green); color: var(--clr-green); }
.floating-banner__download {
  background: var(--gradient-gold);
  color: #000; font-weight: 800;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.82rem; font-family: var(--font-heading);
  animation: glow-pulse 2.5s ease-in-out infinite;
  display: inline-flex; align-items: center; gap: 0.3rem;
  white-space: nowrap;
}

/* ===========================
   STICKY SIDEBAR (DESKTOP)
=========================== */
.sidebar-sticky-widget {
  display: none;
  position: sticky;
  top: 90px;
  background: var(--clr-card);
  border: 1px solid rgba(245,200,66,0.3);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.sidebar-sticky-widget .widget-title {
  font-family: var(--font-heading);
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--clr-muted);
  margin-bottom: 0.75rem;
}
.sidebar-sticky-widget .invite-code {
  font-family: var(--font-mono);
  font-size: 1.4rem; font-weight: 700;
  color: var(--clr-gold);
  letter-spacing: 0.08em;
  background: rgba(245,200,66,0.08);
  border: 1px solid rgba(245,200,66,0.2);
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  margin-bottom: 1rem;
  display: block;
}
.sidebar-sticky-widget .btn-copy { width: 100%; text-align: center; margin-bottom: 0.75rem; display: block; }
.sidebar-sticky-widget .btn-primary { width: 100%; text-align: center; display: block; font-size: 0.88rem; padding: 0.8rem 1rem; justify-content: center; }

/* ===========================
   LAYOUT WITH SIDEBAR
=========================== */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding-block: 2.5rem;
  text-align: center;
}
.footer-links {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1.2rem;
}
.footer-links a { font-size: 0.85rem; color: var(--clr-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--clr-gold); }
.footer-copy { font-size: 0.8rem; color: var(--clr-muted); }
.footer-copy strong { color: var(--clr-gold); }
.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(148,163,184,0.6);
  max-width: 540px;
  margin-inline: auto;
  margin-top: 0.75rem;
  line-height: 1.6;
}

/* ===========================
   DIVIDER
=========================== */
.divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
  margin-block: 0;
}

/* ===========================
   SCROLL TO TOP
=========================== */
.scroll-top {
  position: fixed; bottom: 4.5rem; right: 1rem;
  width: 40px; height: 40px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-gold); font-size: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 800;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }

/* ===========================
   MOBILE BODY PADDING (for floating banner)
=========================== */
@media (max-width: 767px) {
  .floating-banner { display: block; }
  body { padding-bottom: 80px; }
  .scroll-top { bottom: 5.5rem; }
}

/* ===========================
   DESKTOP / TABLET LAYOUT
=========================== */
@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .commission-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .content-with-sidebar {
    grid-template-columns: 1fr 280px;
  }
  .sidebar-sticky-widget { display: block; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1100px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===========================
   UTILITY CLASSES
=========================== */
.text-center { text-align: center; }
.text-gold   { color: var(--clr-gold); }
.text-green  { color: var(--clr-green); }
.text-muted  { color: var(--clr-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }
