/* ═══════════════════════════════════════════
   AISB CONSULTING — SHARED STYLESHEET
   Brand: Navy #1a2744 | Orange #f97316
════════════════════════════════════════════ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: #1a2744;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1.1; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { color: #4a5568; }

.accent { color: #f97316; }
.white  { color: #fff; }

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 72px 0; }
.section-sm { padding: 48px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #f97316;
  color: #fff;
  border-color: #f97316;
}
.btn-primary:hover { background: #ea6c0a; border-color: #ea6c0a; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(249,115,22,0.35); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-outline-dark {
  background: transparent;
  color: #1a2744;
  border-color: #1a2744;
}
.btn-outline-dark:hover { background: #1a2744; color: #fff; }

.btn-lg { padding: 17px 36px; font-size: 16px; }

/* ── ACCENT BAR ── */
.accent-bar { height: 4px; background: linear-gradient(to right, #f97316, #fb923c); }

/* ═══════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #1a2744;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo { display: flex; flex-direction: column; }
.nav-logo .logo-text { font-size: 1.3rem; font-weight: 900; color: #fff; letter-spacing: 0.5px; }
.nav-logo .logo-text span { color: #f97316; }
.nav-logo .logo-sub { font-size: 0.65rem; color: #94a3b8; letter-spacing: 0.3px; margin-top: 1px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links .nav-cta {
  margin-left: 8px;
  background: #f97316;
  color: #fff;
  padding: 9px 18px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14px;
}
.nav-links .nav-cta:hover { background: #ea6c0a; }

/* Mobile hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #1a2744;
    flex-direction: column;
    padding: 16px 24px 20px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; }
  .nav-links .nav-cta { text-align: center; margin-left: 0; margin-top: 8px; }
}

/* ═══════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, #1a2744 0%, #243352 60%, #1e3a5f 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content h1 { color: #fff; margin-bottom: 18px; }
.hero-content p { color: #cbd5e1; font-size: 1.05rem; margin-bottom: 28px; max-width: 480px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-demo-note { margin-top: 14px; font-size: 13px; color: #64748b; }
.hero-demo-note strong { color: #94a3b8; }

.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(10px);
}
.hero-card .card-title { color: #94a3b8; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.hero-stat-row { display: flex; gap: 16px; margin-bottom: 16px; }
.hero-stat { flex: 1; text-align: center; background: rgba(255,255,255,0.05); border-radius: 10px; padding: 14px 8px; }
.hero-stat .num { font-size: 1.8rem; font-weight: 900; color: #f97316; display: block; }
.hero-stat .lbl { font-size: 10px; color: #94a3b8; margin-top: 2px; }
.hero-steps { display: flex; flex-direction: column; gap: 8px; }
.hero-step { display: flex; align-items: center; gap: 10px; }
.hero-step .dot { width: 28px; height: 28px; background: #f97316; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; color: #fff; flex-shrink: 0; }
.hero-step span { font-size: 13px; color: #cbd5e1; }

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
}

/* ═══════════════════════════════════════════
   STATS BAR
════════════════════════════════════════════ */
.stats-bar { background: #1a2744; padding: 32px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.stat-item { text-align: center; }
.stat-item .big { font-size: 2.2rem; font-weight: 900; color: #f97316; display: block; }
.stat-item .label { font-size: 12px; color: #94a3b8; margin-top: 4px; line-height: 1.4; }

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════
   PROBLEM SECTION
════════════════════════════════════════════ */
.problem { background: #fff8f3; }
.problem-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.problem-inner .eyebrow { font-size: 12px; font-weight: 700; color: #f97316; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.problem-inner h2 { margin-bottom: 16px; }
.problem-inner p { font-size: 1.05rem; color: #4a5568; }
.problem-inner .bold-stat { display: block; margin-top: 16px; font-size: 1rem; font-weight: 700; color: #1a2744; }

/* ═══════════════════════════════════════════
   FEATURES / WHAT YOU GET
════════════════════════════════════════════ */
.features { background: #fff; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow { font-size: 12px; font-weight: 700; color: #f97316; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: #4a5568; max-width: 560px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.feature-icon { font-size: 28px; margin-bottom: 12px; }
.feature-card h3 { margin-bottom: 6px; font-size: 1rem; }
.feature-card p { font-size: 14px; }

@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .features-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════ */
.how-it-works { background: #f8fafc; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #e2e8f0;
  z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px;
  background: #f97316;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 900;
  margin: 0 auto 14px;
  box-shadow: 0 4px 14px rgba(249,115,22,0.3);
}
.step-card h3 { font-size: 1rem; margin-bottom: 6px; }
.step-card p { font-size: 13px; }

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
}
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   VERTICALS
════════════════════════════════════════════ */
.verticals { background: #fff; }
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vertical-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.vertical-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.vertical-card .v-icon { font-size: 32px; margin-bottom: 10px; }
.vertical-card h3 { font-size: 1rem; margin-bottom: 6px; }
.vertical-card p { font-size: 13px; }
.vertical-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}
.badge-live { background: #dcfce7; color: #16a34a; }
.badge-soon { background: #fef9c3; color: #a16207; }

@media (max-width: 768px) { .verticals-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .verticals-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   PRICING
════════════════════════════════════════════ */
.pricing { background: #f8fafc; }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.p-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s;
}
.p-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.p-card.popular {
  border: 2px solid #f97316;
  box-shadow: 0 8px 24px rgba(249,115,22,0.12);
}
.pop-badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: #f97316; color: #fff;
  font-size: 10px; font-weight: 800;
  padding: 3px 14px; border-radius: 20px;
  letter-spacing: 0.5px; white-space: nowrap;
}
.p-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.p-price { font-size: 2.8rem; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.p-price sup { font-size: 1.1rem; vertical-align: top; margin-top: 8px; display: inline-block; }
.p-period { font-size: 13px; color: #718096; margin-bottom: 16px; }
.p-divider { border: none; border-top: 1px solid #e2e8f0; margin: 16px 0; }
.p-features { text-align: left; }
.p-feat { display: flex; align-items: flex-start; gap: 8px; padding: 5px 0; font-size: 14px; color: #374151; }
.p-feat .chk { color: #f97316; font-weight: 700; flex-shrink: 0; }
.p-feat .plus-note { font-size: 12px; color: #f97316; font-style: italic; font-weight: 600; display: block; margin-bottom: 4px; }
.pricing-note { text-align: center; margin-top: 24px; font-size: 13px; color: #718096; }

@media (max-width: 768px) { .pricing-cards { grid-template-columns: 1fr; max-width: 400px; } }

/* ═══════════════════════════════════════════
   TESTIMONIAL
════════════════════════════════════════════ */
.testimonial-section { background: #1a2744; padding: 56px 0; }
.testimonial-inner { max-width: 700px; margin: 0 auto; padding: 0 24px; text-align: center; }
.testimonial-inner blockquote { font-size: 1.2rem; font-weight: 600; color: #fff; line-height: 1.6; font-style: italic; }
.testimonial-inner cite { display: block; margin-top: 16px; font-size: 14px; color: #94a3b8; font-style: normal; }
.testimonial-stars { color: #f97316; font-size: 20px; margin-bottom: 16px; }

/* ═══════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #f97316, #fb923c);
  padding: 56px 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 24px; font-size: 1.05rem; }
.cta-banner .btn-white {
  background: #fff;
  color: #f97316;
  border-color: #fff;
  font-weight: 800;
}
.cta-banner .btn-white:hover { background: #f8fafc; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.15); }

/* ═══════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #1a2744 0%, #243352 100%);
  padding: 56px 0;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 12px; }
.page-hero p { color: #cbd5e1; font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ═══════════════════════════════════════════
   SERVICES PAGE
════════════════════════════════════════════ */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid #e2e8f0;
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-tag {
  display: inline-block;
  background: #fff3e8;
  color: #f97316;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.service-block h2 { font-size: 1.7rem; margin-bottom: 14px; }
.service-block p { margin-bottom: 16px; }
.service-block ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-block li { display: flex; align-items: flex-start; gap: 8px; font-size: 15px; color: #374151; }
.service-block li .chk { color: #f97316; font-weight: 700; flex-shrink: 0; }
.service-visual {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.service-visual .big-icon { font-size: 64px; margin-bottom: 16px; }
.service-visual .price-tag { font-size: 2rem; font-weight: 900; color: #1a2744; }
.service-visual .price-sub { font-size: 13px; color: #718096; }

@media (max-width: 768px) { .service-block, .service-block.reverse { grid-template-columns: 1fr; direction: ltr; } }

/* ═══════════════════════════════════════════
   DEMOS PAGE
════════════════════════════════════════════ */
.demos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.demo-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.demo-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.1); transform: translateY(-3px); }
.demo-card-header { background: #1a2744; padding: 24px; text-align: center; }
.demo-card-header .icon { font-size: 40px; margin-bottom: 8px; }
.demo-card-header h3 { color: #fff; font-size: 1.15rem; }
.demo-card-header .subtitle { color: #94a3b8; font-size: 13px; margin-top: 4px; }
.demo-card-body { padding: 24px; }
.demo-card-body p { font-size: 14px; margin-bottom: 16px; }
.demo-features { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.demo-feat { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #374151; }
.demo-feat .chk { color: #f97316; font-weight: 700; }
.demo-number { font-size: 13px; font-weight: 700; color: #64748b; text-align: center; margin-top: 8px; }
.demo-number span { color: #f97316; }
.demo-status { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; margin-bottom: 14px; }

@media (max-width: 768px) { .demos-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.about-photo-col { text-align: center; }
.about-photo-placeholder {
  background: #f8fafc;
  border: 2px dashed #e2e8f0;
  border-radius: 16px;
  padding: 48px 24px;
  margin-bottom: 20px;
}
.about-photo-placeholder .icon { font-size: 64px; margin-bottom: 10px; }
.about-photo-placeholder p { font-size: 13px; color: #94a3b8; font-style: italic; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.about-tag {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}
.about-content h2 { margin-bottom: 16px; }
.about-content p { margin-bottom: 14px; }
.about-credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.cred-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cred-item .cred-icon { font-size: 20px; flex-shrink: 0; }
.cred-item strong { display: block; font-size: 13px; font-weight: 700; color: #1a2744; }
.cred-item span { font-size: 12px; color: #718096; }

@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } .about-credentials { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info p { margin-bottom: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-item .c-icon { width: 44px; height: 44px; background: #fff3e8; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 14px; font-weight: 700; color: #1a2744; margin-bottom: 2px; }
.contact-item span { font-size: 14px; color: #4a5568; }
.contact-demo-box { background: #1a2744; border-radius: 12px; padding: 20px 24px; margin-top: 24px; }
.contact-demo-box p { color: #94a3b8; font-size: 13px; margin-bottom: 6px; }
.contact-demo-box .demo-num { font-size: 1.4rem; font-weight: 900; color: #f97316; }

.contact-form { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 14px; padding: 32px; }
.contact-form h3 { margin-bottom: 20px; font-size: 1.15rem; }
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  color: #1a2744;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 14px; background: #f97316; color: #fff; border: none; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.2s, transform 0.2s; font-family: inherit; }
.form-submit:hover { background: #ea6c0a; transform: translateY(-1px); }

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer { background: #0f172a; padding: 48px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  margin-bottom: 36px;
}
.footer-brand .logo-text { font-size: 1.2rem; font-weight: 900; color: #fff; }
.footer-brand .logo-text span { color: #f97316; }
.footer-brand p { color: #64748b; font-size: 13px; margin-top: 10px; line-height: 1.6; }
.footer-col h4 { color: #cbd5e1; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 14px; }
.footer-col a { display: block; color: #64748b; font-size: 13px; padding: 3px 0; transition: color 0.15s; }
.footer-col a:hover { color: #f97316; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom span { font-size: 12px; color: #475569; }
.footer-bottom a { font-size: 12px; color: #475569; }
.footer-bottom a:hover { color: #f97316; }

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

/* ═══════════════════════════════════════════
   UTILITIES
════════════════════════════════════════════ */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
