/* ═══════════════════════════════════════════════════════════════
   Qradio  —  qradio.co.uk
   Part of Finchdata Ltd  |  Signal Intelligence Design System
   Dark technical aesthetic · Mobile-first · PHP 5.6+ compatible
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&family=Nunito+Sans:wght@300;400;600&family=Share+Tech+Mono&display=swap');

/* ─── Reset & Custom Properties ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colour palette */
  --bg:         #080e1a;
  --surface:    #0e1726;
  --surface2:   #162035;
  --surface3:   #1e2d47;
  --cyan:       #00c8f0;
  --cyan-dim:   rgba(0,200,240,.18);
  --cyan-glow:  0 0 28px rgba(0,200,240,.35);
  --amber:      #e0881a;
  --amber-dim:  rgba(224,136,26,.15);
  --green:      #22d3a0;
  --text:       #d4dde8;
  --text-bright:#f0f4f8;
  --muted:      #6b8099;
  --border:     rgba(0,200,240,.12);
  --border2:    rgba(255,255,255,.07);

  /* Typography */
  --font-head:  'Exo 2', sans-serif;
  --font-body:  'Nunito Sans', sans-serif;
  --font-mono:  'Share Tech Mono', monospace;

  /* Spacing */
  --nav-h:      70px;
  --max-w:      1140px;
  --px:         clamp(18px, 5vw, 52px);
  --radius:     8px;
  --radius-lg:  16px;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; transition: color .2s; }
a:hover { color: var(--amber); }

/* ─── Utility ───────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }
.section    { padding: 80px 0; }

.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-bright);
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.75;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all .25s;
}
.btn-primary {
  background: var(--cyan);
  color: var(--bg);
}
.btn-primary:hover {
  background: #fff;
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--cyan-glow);
}
.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1.5px solid var(--cyan);
}
.btn-outline:hover {
  background: var(--cyan-dim);
  color: var(--text-bright);
  transform: translateY(-2px);
}

/* ─── Waveform Background SVG Texture ──────────────────────── */
.wave-bg {
  position: relative;
  overflow: hidden;
}
.wave-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(0,200,240,.04) 80px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(0,200,240,.03) 80px
    );
  pointer-events: none;
  z-index: 0;
}
.wave-bg > * { position: relative; z-index: 1; }

/* ─── Top Bar ────────────────────────────────────────────────── */
.topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 7px 0;
  font-size: .82rem;
  font-family: var(--font-mono);
  letter-spacing: .04em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--muted); }
.topbar a:hover { color: var(--cyan); }
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-signal {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
}
.topbar-signal::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,211,160,.5); }
  50%      { opacity: .7; box-shadow: 0 0 0 5px rgba(34,211,160,0); }
}

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,14,26,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-bright);
  letter-spacing: .02em;
}
.nav-logo-name span { color: var(--cyan); }
.nav-logo-sub {
  font-family: var(--font-mono);
  font-size: .62rem;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 6px;
  transition: all .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--cyan); background: var(--cyan-dim); }
.nav-links .nav-cta a {
  color: var(--bg);
  background: var(--cyan);
  padding: 8px 18px;
}
.nav-links .nav-cta a:hover {
  background: var(--text-bright);
  color: var(--bg);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
    z-index: 99;
  }
  .nav-links.open {
    transform: translateY(0);
    pointer-events: all;
  }
  .nav-links a { padding: 14px 16px; font-size: 1rem; }
  .topbar { display: none; }
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan-dim);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 6px 16px 6px 12px;
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--cyan);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--text-bright);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--cyan); }
.hero h1 .accent2 { color: var(--amber); }
.hero-lead {
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border2);
}
.hero-stat-val {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-lbl {
  font-size: .8rem;
  color: var(--muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
}
/* Oscilloscope card */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.osc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.05);
}
.osc-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 24px; right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.osc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.osc-label {
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.osc-dots { display: flex; gap: 6px; }
.osc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.osc-dot:nth-child(1) { background: #ff5f56; }
.osc-dot:nth-child(2) { background: #febc2e; }
.osc-dot:nth-child(3) { background: #28c840; }
.osc-screen {
  background: #010d0f;
  border-radius: 8px;
  border: 1px solid rgba(0,200,240,.2);
  padding: 16px 8px;
  height: 120px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.osc-freq-list {
  list-style: none;
  font-family: var(--font-mono);
  font-size: .75rem;
  line-height: 2;
}
.osc-freq-list li { display: flex; gap: 10px; }
.osc-freq-list .freq { color: var(--cyan); }
.osc-freq-list .band { color: var(--green); }
.osc-freq-list .type { color: var(--amber); }
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.info-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.info-card-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.info-card-title {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 4px;
}
.info-card-text {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 90px 0 60px; }
  .hero h1 { font-size: 2.2rem; }
}

/* ─── Section: Services/Cards ────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}
.card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4), var(--cyan-glow);
}
.card-icon {
  width: 52px; height: 52px;
  background: var(--cyan-dim);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.card-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 10px;
}
.card-text {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
}
.card-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border2);
}
.card-link {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 6px;
}
.card-link:hover { color: var(--amber); gap: 10px; }

/* ─── Feature Section ────────────────────────────────────────── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }
@media (max-width: 820px) {
  .feature-split { grid-template-columns: 1fr; gap: 36px; }
  .feature-split.reverse { direction: ltr; }
}
.feature-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .96rem;
  color: var(--muted);
}
.feature-list li::before {
  content: '◆';
  color: var(--cyan);
  font-size: .7rem;
  flex-shrink: 0;
  margin-top: 5px;
}
.tech-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--green);
  line-height: 2;
  position: relative;
  overflow: hidden;
}
.tech-panel::before {
  content: 'FREQUENCY ALLOCATION';
  position: absolute;
  top: 12px; right: 16px;
  font-size: .65rem;
  color: var(--muted);
  letter-spacing: .1em;
}
.tech-panel .comment { color: var(--muted); }
.tech-panel .freq-val { color: var(--cyan); }
.tech-panel .proto { color: var(--amber); }

/* ─── News Cards ─────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .3s;
}
.news-card:hover {
  border-color: rgba(0,200,240,.35);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.news-card-head {
  background: var(--surface2);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.news-cat {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-dim);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.news-date {
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--muted);
}
.news-card-body { padding: 22px; flex: 1; }
.news-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.35;
  margin-bottom: 12px;
}
.news-excerpt {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
}
.news-card-foot {
  padding: 16px 22px;
  border-top: 1px solid var(--border2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-source {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--muted);
}
.news-link {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--cyan);
}
.news-link:hover { color: var(--amber); }
/* Loading animation */
.news-loading {
  text-align: center;
  padding: 60px 20px;
  font-family: var(--font-mono);
  color: var(--muted);
}
.news-spinner {
  width: 48px; height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Partners / Credits Section ─────────────────────────────── */
.partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.partner-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  transition: all .2s;
}
.partner-chip:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}
.partner-chip .chip-icon { font-size: 1.1rem; }

/* ─── Contact Panel ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--cyan-dim);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-label {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-value {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-bright);
}
.contact-value a { color: var(--text-bright); }
.contact-value a:hover { color: var(--cyan); }

/* Form */
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .96rem;
  transition: border-color .2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,200,240,.1);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field select option { background: var(--surface2); }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border2);
  margin-bottom: 28px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-bright);
}
.footer-logo-name span { color: var(--cyan); }
.footer-desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-heading {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: .88rem;
  color: var(--muted);
  transition: color .2s;
}
.footer-links a:hover { color: var(--text-bright); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--muted);
}
.footer-finchdata {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--muted);
}
.footer-finchdata a { color: var(--amber); }
.footer-finchdata a:hover { color: var(--cyan); }

/* ─── Page Header ─────────────────────────────────────────────── */
.page-header {
  padding: 100px 0 60px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

/* ─── Spectrum viz ────────────────────────────────────────────── */
.spectrum-bar-wrap {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 60px;
}
.spectrum-bar {
  flex: 1;
  background: var(--cyan);
  border-radius: 2px 2px 0 0;
  opacity: .7;
  animation: specBar 1.4s ease-in-out infinite alternate;
}
.spectrum-bar:nth-child(odd) { animation-delay: .2s; }
.spectrum-bar:nth-child(3n) { animation-delay: .5s; }
@keyframes specBar {
  from { transform: scaleY(.25); }
  to   { transform: scaleY(1); }
}

/* ─── Responsive tweaks ───────────────────────────────────────── */
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero-stats { gap: 20px; }
  .hero-stat-val { font-size: 1.5rem; }
  .partners-row { gap: 10px; }
}
