/* ═══════════════════════════════════════════════
   AIRMT RailGo — Main Stylesheet (v2)
   Font: Rajdhani (display) + Inter (body)
   Colors: Navy #1B3358, Gold #FFD700
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy:     #1B3358;
  --navy-dk:  #0D1E35;
  --navy-lt:  #2A4A7A;
  --gold:     #FFD700;
  --gold-dk:  #C8A800;
  --white:    #FFFFFF;
  --off:      #F5F7FA;
  --muted:    #AABCD4;
  --text:     #1A2B3C;
  --text2:    #5A6B7C;
  --border:   #E2E8F0;
  --success:  #1B7040;
  --whatsapp: #25D366;
  --radius:   10px;
  --radius-lg:16px;
  --shadow:   0 2px 16px rgba(27,51,88,0.08);
  --shadow-lg:0 8px 30px rgba(27,51,88,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}
h1,h2,h3,h4,h5 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--navy-lt); }
img { max-width: 100%; }

/* ── NAVBAR ─────────────────────────────────── */
.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 60px;
  gap: 32px;
}
.nav-logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  color: var(--muted);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-actions { display: flex; gap: 8px; align-items: center; }
.btn-nav-login {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.btn-nav-login:hover { background: rgba(255,255,255,0.1); }
.btn-nav-cta {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.btn-nav-cta:hover { background: var(--gold-dk); }
.hamburger { display: none; flex-direction: column; gap: 4px; cursor: pointer; padding: 4px; margin-left: auto; }
.hamburger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* ── HERO ──────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dk) 100%);
  padding: 72px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner { max-width: 740px; margin: 0 auto; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(255,215,0,0.12);
  color: var(--gold);
  border: 1px solid rgba(255,215,0,0.25);
  font-size: 12px;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero h1 span { color: var(--gold); }
.hero p {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 28px;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 13px 28px;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: var(--gold-dk); transform: translateY(-1px); color: var(--navy); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 13px 28px;
  border-radius: 28px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); color: var(--white); }

.hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Rajdhani', sans-serif; font-size: 28px; font-weight: 700; color: var(--gold); }
.stat-lbl { font-size: 11px; color: var(--muted); margin-top: 2px; letter-spacing: 0.3px; }

/* ── SECTION ────────────────────────────────── */
.section { padding: 64px 24px; }
.section-alt { background: var(--off); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: clamp(26px, 4vw, 38px); margin-bottom: 10px; }
.section-header p { color: var(--text2); font-size: 14px; max-width: 520px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: #E6F1FB;
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── FEATURE CARDS ─────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.25s;
  position: relative;
}
.feat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--navy); }
.feat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
  background: #E6F1FB;
}
.feat-card h3 { font-size: 18px; margin-bottom: 8px; }
.feat-card p { font-size: 13px; color: var(--text2); line-height: 1.6; }
.feat-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
}
.feat-link:hover { color: var(--navy-lt); }

/* ── LIVE TRANSFER FEED ─────────────────────── */
.feed-section { background: var(--off); padding: 64px 24px; }
.feed-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; max-width: 1100px; margin: 0 auto; }
.feed-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all 0.2s;
  position: relative;
}
.feed-card:hover { box-shadow: var(--shadow); border-color: var(--navy); }
.feed-route {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}
.feed-route .arrow { color: var(--gold); font-size: 20px; }
.feed-meta { font-size: 12px; color: var(--text2); margin-bottom: 14px; }
.feed-meta span { display: inline-block; margin-right: 14px; }
.feed-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 12px; }
.feed-matches { font-size: 12px; color: var(--success); font-weight: 600; }
.feed-action { font-size: 12px; color: var(--navy); font-weight: 500; }

/* ── PRICING ────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  transition: all 0.25s;
  position: relative;
}
.price-card.featured {
  border: 2px solid var(--navy);
  transform: scale(1.02);
}
.price-card:hover { box-shadow: var(--shadow-lg); }
.price-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 12px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.price-module { font-size: 12px; color: var(--text2); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.price-name { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.price-amount { font-family: 'Rajdhani', sans-serif; font-size: 38px; font-weight: 700; color: var(--navy); line-height: 1; }
.price-amount span { font-size: 13px; font-weight: 400; color: var(--text2); font-family: 'Inter', sans-serif; }
.price-duration { font-size: 12px; color: var(--text2); margin-top: 4px; margin-bottom: 16px; }
.price-features { list-style: none; margin-bottom: 20px; }
.price-features li { font-size: 13px; color: var(--text2); padding: 5px 0; display: flex; align-items: center; gap: 8px; }
.price-features li::before { content: '✓'; color: var(--success); font-weight: 700; font-size: 12px; }
.btn-price {
  width: 100%;
  padding: 11px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.btn-price:hover, .price-card.featured .btn-price {
  background: var(--navy);
  color: var(--white);
}
.price-card.featured .btn-price { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.price-card.featured .btn-price:hover { background: var(--gold-dk); border-color: var(--gold-dk); }

/* ── FORMS ──────────────────────────────────── */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.form-card h2 { font-size: 26px; margin-bottom: 6px; }
.form-card .subtitle { font-size: 13px; color: var(--text2); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,51,88,0.08); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-form {
  width: 100%;
  padding: 13px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  margin-top: 8px;
}
.btn-form:hover { background: var(--navy-lt); }
.form-link { text-align: center; font-size: 13px; color: var(--text2); margin-top: 16px; }
.form-link a { color: var(--navy); font-weight: 500; }
.form-divider { display: flex; align-items: center; gap: 12px; margin: 16px 0; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.form-divider span { font-size: 12px; color: var(--text2); }

/* ── PAGE HERO (inner pages) ─────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dk) 100%);
  padding: 56px 24px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,215,0,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero h1 { color: var(--white); font-size: clamp(28px,4vw,42px); margin-bottom: 10px; position: relative; z-index: 1; }
.page-hero p { color: var(--muted); font-size: 14px; max-width: 540px; margin: 0 auto; position: relative; z-index: 1; }

/* ── FAQ ────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq-q { font-size: 15px; font-weight: 500; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-q::after { content: '+'; font-size: 22px; color: var(--navy); transition: 0.2s; flex-shrink: 0; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { font-size: 14px; color: var(--text2); line-height: 1.7; padding-top: 10px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── CARDS GRID ─────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.2s;
}
.card:hover { box-shadow: var(--shadow); border-color: var(--navy); }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ── TESTIMONIALS ──────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -8px; left: 16px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
}
.testimonial-text { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 16px; padding-top: 12px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Rajdhani', sans-serif;
}
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.testimonial-role { font-size: 12px; color: var(--text2); }

/* ── BROWSE TRANSFER REQUESTS ─────────────── */
.browse-filters {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  align-items: end;
}
.transfer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.transfer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: all 0.2s;
}
.transfer-card:hover { box-shadow: var(--shadow); border-color: var(--navy); }
.transfer-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border);
}
.transfer-name { font-size: 14px; font-weight: 600; color: var(--navy); font-family: 'Rajdhani', sans-serif; font-size: 17px; }
.transfer-pill {
  background: rgba(255,215,0,0.15);
  color: var(--gold-dk);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
}
.transfer-route { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.transfer-loc { flex: 1; }
.transfer-loc-label { font-size: 11px; color: var(--text2); text-transform: uppercase; letter-spacing: 0.5px; }
.transfer-loc-value { font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); }
.transfer-arrow { color: var(--gold); font-size: 20px; padding: 0 12px; }
.transfer-detail { font-size: 13px; color: var(--text2); margin-bottom: 14px; }
.transfer-actions { display: flex; gap: 8px; }
.btn-contact {
  flex: 1;
  padding: 9px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.btn-contact:hover { background: var(--navy-lt); }
.btn-whatsapp-card {
  flex: 1;
  padding: 9px;
  background: var(--whatsapp);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  text-align: center;
}
.btn-whatsapp-card:hover { background: #1FB855; color: var(--white); }

/* ── MUTUAL TRANSFER FORM ─────────────────── */
.mt-form { max-width: 680px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── ALERT BOXES ─────────────────────────── */
.alert { padding: 14px 18px; border-radius: var(--radius); font-size: 13px; margin-bottom: 20px; }
.alert-info { background: #E6F1FB; color: #0C447C; border-left: 3px solid #185FA5; }
.alert-success { background: #EAF3DE; color: #27500A; border-left: 3px solid #3B6D11; }
.alert-warning { background: #FAEEDA; color: #633806; border-left: 3px solid #854F0B; }

/* ── FLOATING WHATSAPP BUTTON ──────────── */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}
.floating-whatsapp svg { width: 28px; height: 28px; fill: white; }
.floating-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--whatsapp);
  opacity: 0.4;
  z-index: -1;
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0;   }
}

/* ── FOOTER ─────────────────────────────── */
.footer { background: var(--navy-dk); padding: 48px 24px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand p { color: var(--muted); font-size: 13px; line-height: 1.7; margin-top: 10px; max-width: 240px; }
.footer-col h4 { color: var(--white); font-size: 13px; font-weight: 600; margin-bottom: 14px; letter-spacing: 0.3px; }
.footer-col a { display: block; color: var(--muted); font-size: 13px; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-copy { color: var(--muted); font-size: 12px; }
.footer-disclaimer { color: rgba(170,188,212,0.6); font-size: 11px; }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 12px 16px;
    gap: 2px;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 12px; }
  .nav-actions { display: none; }
  .nav-actions.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    padding: 0 16px 16px;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-actions.open button { width: 100%; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .stat-item { padding: 12px 16px; }
  .price-card.featured { transform: none; }
  .floating-whatsapp { bottom: 16px; right: 16px; width: 52px; height: 52px; }
  .floating-whatsapp svg { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 16px 40px; }
  .section { padding: 40px 16px; }
  .feed-section { padding: 40px 16px; }
}

/* ── UTILITY ────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text2); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.badge {
  display: inline-block;
  background: #E6F1FB;
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 12px;
}
.badge-gold { background: rgba(255,215,0,0.15); color: var(--gold-dk); }
.badge-green { background: #EAF3DE; color: var(--success); }
.free-tag {
  display: inline-block;
  background: #EAF3DE;
  color: var(--success);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 12px;
  margin-left: 8px;
}

/* ── FADE-IN ANIMATIONS ─────────────────── */
.fade-in { opacity: 0; transform: translateY(12px); animation: fadeUp 0.6s ease forwards; }
.fade-in.delay-1 { animation-delay: 0.1s; }
.fade-in.delay-2 { animation-delay: 0.2s; }
.fade-in.delay-3 { animation-delay: 0.3s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
