@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
  --charcoal: #212121;
  --charcoal-mid: #2C2C2C;
  --charcoal-light: #3A3A3A;
  --gold: #C9973A;
  --gold-light: #E8C547;
  --gold-pale: #FDF6E3;
  --teal: #1A5C6B;
  --teal-light: #2A7A8C;
  --teal-pale: #F0F7F9;
  --cream: #F7F4EF;
  --cream-dark: #EEE9E1;
  --white: #FFFFFF;
  --text-dark: #1C1C1C;
  --text-mid: #555555;
  --text-light: #888888;
  --border: #DDDDDD;
  --border-dark: #CCCCCC;
  --font-mono: 'IBM Plex Mono', monospace;
  --font-serif: 'Playfair Display', Georgia, serif;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-mono);
  background: var(--cream);
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ── UTILITY ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.25;
}
.section-sub {
  font-size: 13px;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.bg-cream { background: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-charcoal { background: var(--charcoal); }
.bg-teal { background: var(--teal); }
.bg-white { background: var(--white); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--charcoal); }
.btn-gold:hover { background: var(--gold-light); }
.btn-dark { background: var(--charcoal); color: var(--cream); }
.btn-dark:hover { background: var(--charcoal-light); }
.btn-outline { border: 1.5px solid var(--border-dark); color: var(--text-mid); background: transparent; }
.btn-outline:hover { border-color: var(--charcoal); color: var(--charcoal); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-light); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1ebe5d; }

/* ── NAV ── */
.nav {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--teal); font-weight: 400; }
.nav-logo .dot { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 11px;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-cta { margin-left: 8px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--charcoal); transition: all 0.3s; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 99;
  padding: 32px 24px;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu a {
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}
.mobile-menu.open { display: flex; }
.teal-stripe { height: 3px; background: var(--teal); }
.gold-stripe { height: 3px; background: var(--gold); }

/* ── HERO ── */
.hero {
  background: var(--cream);
  padding: 80px 0 64px;
  border-bottom: 3px solid var(--teal);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -80px;
  width: 400px; height: 400px;
  background: var(--teal-pale);
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
}
.hero-h1 {
  font-family: var(--font-mono);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 12px;
}
.hero-h1 em { color: var(--teal); font-style: normal; }
.priority-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius);
  margin: 20px 0 24px;
}
.hero-sub {
  font-size: 14px;
  color: var(--text-mid);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trust-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-mid);
  font-weight: 500;
}
.trust-item svg { color: var(--teal); flex-shrink: 0; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.service-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.service-card.featured {
  border-color: var(--teal);
  border-width: 2px;
  background: var(--teal-pale);
}
.service-icon {
  width: 36px; height: 36px;
  background: var(--teal-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--teal);
}
.service-card.featured .service-icon { background: var(--teal); color: var(--white); }
.service-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.service-desc { font-size: 11px; color: var(--text-light); line-height: 1.5; }

/* ── PRIORITY BAND ── */
.priority-band {
  background: var(--charcoal);
  padding: 64px 0;
}
.priority-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.priority-eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.priority-title {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.priority-title em { color: var(--gold); font-style: normal; }
.priority-body { font-size: 13px; color: #999; line-height: 1.8; max-width: 480px; }
.stats-grid { display: flex; gap: 20px; }
.stat-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  min-width: 120px;
}
.stat-num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-label { font-size: 11px; color: #777; margin-top: 4px; }

/* ── TECH BAND ── */
.tech-band { background: var(--teal); padding: 64px 0; }
.tech-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.tech-eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.tech-title {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}
.tech-body { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 24px; }
.tech-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.tech-pill {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  font-weight: 500;
}
.tech-right {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.tech-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.tech-feature:last-child { margin-bottom: 0; }
.tech-feature-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
}
.tech-feature-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.tech-feature-desc { font-size: 11px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ── SECTORS ── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.sector-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s;
  text-decoration: none;
}
.sector-card:hover { border-color: var(--teal); transform: translateX(4px); }
.sector-icon { color: var(--teal); flex-shrink: 0; }
.sector-name { font-size: 13px; font-weight: 600; color: var(--charcoal); }

/* ── BADGES ── */
.badges-section { padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.badges-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 28px;
}
.badges-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.75;
  transition: opacity 0.2s;
  text-decoration: none;
}
.badge-item:hover { opacity: 1; }
.badge-logo {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-label { font-size: 10px; color: var(--text-light); text-align: center; }
.badge-icaew {
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}
.badge-software {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  border: 2px solid;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 64px;
  color: var(--teal-pale);
  position: absolute;
  top: 12px; left: 20px;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; }
.testimonial-text { font-size: 13px; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name { font-size: 13px; font-weight: 700; color: var(--charcoal); }
.testimonial-role { font-size: 11px; color: var(--text-light); }

/* ── CONTACT FORM ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field.full { grid-column: 1 / -1; }
.form-label { font-size: 11px; font-weight: 600; color: var(--text-mid); letter-spacing: 0.04em; }
.form-input, .form-select, .form-textarea {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 10px 14px;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,92,107,0.08);
}
.form-textarea { height: 100px; resize: vertical; }
.form-select { cursor: pointer; }
.form-submit {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  background: var(--charcoal);
  color: var(--cream);
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.form-submit:hover { background: var(--teal); }
.form-note { font-size: 11px; color: var(--text-light); margin-top: 8px; }

/* ── CONTACT INFO ── */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 40px; height: 40px;
  background: var(--teal-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.contact-detail-label { font-size: 11px; color: var(--text-light); margin-bottom: 2px; }
.contact-detail-value { font-size: 14px; font-weight: 600; color: var(--charcoal); }
.contact-detail-value a { color: var(--teal); }
.map-embed {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.blog-thumb {
  height: 140px;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-thumb-icon { color: var(--gold); opacity: 0.8; }
.blog-thumb-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
}
.blog-body { padding: 20px; }
.blog-tag {
  font-size: 10px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 8px;
}
.blog-title { font-size: 14px; font-weight: 700; color: var(--charcoal); line-height: 1.4; margin-bottom: 8px; }
.blog-excerpt { font-size: 12px; color: var(--text-mid); line-height: 1.7; margin-bottom: 14px; }
.blog-meta { font-size: 11px; color: var(--text-light); display: flex; gap: 12px; }

/* ── WHATSAPP MID-PAGE BAND ── */
.whatsapp-band {
  background: #075E54;
  padding: 40px 0;
}
.whatsapp-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.whatsapp-band-text h2 {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.whatsapp-band-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.btn-whatsapp-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-whatsapp-lg:hover { background: #1ebe5d; }

/* ── FOOTER ── */
.footer { background: var(--charcoal); padding: 56px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-logo span { color: var(--white); font-weight: 400; }
.footer-tagline { font-size: 12px; color: #666; line-height: 1.7; margin-bottom: 20px; }
.footer-contact { font-size: 12px; color: #666; line-height: 1.9; }
.footer-contact a { color: var(--teal-light); }
.footer-heading {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #555;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 12px; color: #666; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal-light); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--teal); color: var(--white); }
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 11px; color: #444; }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 11px; color: #444; transition: color 0.2s; }
.footer-legal a:hover { color: var(--teal-light); }
.google-review-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius);
  transition: all 0.2s;
  text-decoration: none;
  margin-top: 12px;
}
.google-review-link:hover { background: var(--cream-dark); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--charcoal);
  padding: 56px 0 48px;
  border-bottom: 3px solid var(--teal);
}
.page-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero-eyebrow a { color: var(--gold); opacity: 0.7; }
.page-hero-eyebrow a:hover { opacity: 1; }
.page-hero-title {
  font-family: var(--font-mono);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.page-hero-title em { color: var(--teal-light); font-style: normal; }
.page-hero-sub { font-size: 14px; color: #999; max-width: 540px; line-height: 1.8; }

/* ── QUICK QUESTION CTA ── */
.quick-question {
  background: var(--teal-pale);
  border: 1.5px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.quick-question-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.quick-question-text p { font-size: 13px; color: var(--text-mid); }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  background: var(--cream-dark);
}
.breadcrumb-inner { display: flex; gap: 6px; align-items: center; font-size: 11px; color: var(--text-light); }
.breadcrumb-inner a { color: var(--teal); }
.breadcrumb-inner span { color: var(--text-light); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 48px 0 40px; }
  .hero::before { display: none; }
  .priority-band-inner { grid-template-columns: 1fr; }
  .stats-grid { flex-direction: row; }
  .tech-band-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: 1; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section { padding: 48px 0; }
  .section-title { font-size: 20px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 26px; }
  .priority-title { font-size: 22px; }
  .stats-grid { flex-wrap: wrap; }
}
