/* ============================================================
   GrowthPhases® Acquisitions Group — Website Stylesheet
   Navy & Gold | Helvetica | Mobile-First Responsive
   ============================================================ */

:root {
  --navy:        #0a1628;
  --navy-mid:    #122040;
  --navy-light:  #1c2f50;
  --gold:        #c9a84c;
  --gold-hover:  #b8943e;
  --gold-light:  #f5e9c8;
  --white:       #ffffff;
  --off-white:   #f5f7fa;
  --light-gray:  #e8ecf2;
  --text-dark:   #0f1e35;
  --text-body:   #3d4a5c;
  --text-muted:  #6b7a90;
  --border:      #dde3ed;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { transition: color 0.2s, opacity 0.2s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(10,22,40,0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo area — white background so blue logo never conflicts */
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

/* Text fallback if no logo image uploaded yet */
.nav-logo-text .brand {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  line-height: 1.1;
}

.nav-logo-text .brand .accent { color: var(--gold); }

.nav-logo-text .sub {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.2px;
}

.nav-links .nav-cta:hover { background: var(--gold-hover); }

/* Mobile hamburger placeholder */
.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-mobile-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  background: var(--navy);
  padding: 100px 32px 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 660px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page hero (internal pages — shorter) */
.hero-page {
  padding: 72px 32px 68px;
}

.hero-page h1 { font-size: 40px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 34px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer; font-family: inherit;
}

.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 34px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.35);
  display: inline-block;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: inline-block;
  transition: opacity 0.2s, transform 0.15s;
  border: none; cursor: pointer; font-family: inherit;
}

.btn-navy:hover { opacity: 0.85; transform: translateY(-1px); }

/* ============================================================
   LAYOUT SECTIONS
   ============================================================ */
.section          { padding: 88px 32px; }
.section-sm       { padding: 56px 32px; }
.section-white    { background: var(--white); }
.section-gray     { background: var(--off-white); }
.section-navy     { background: var(--navy); }
.section-navy-mid { background: var(--navy-mid); }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header { margin-bottom: 56px; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.section-navy h2  { color: var(--white); }
.section-navy .section-eyebrow { color: var(--gold); }

.section-intro {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 660px;
  line-height: 1.75;
}

.section-navy .section-intro { color: rgba(255,255,255,0.65); }

.gold-divider {
  width: 52px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0 32px;
  border-radius: 2px;
}

/* ============================================================
   STAT BAR
   ============================================================ */
.stat-bar {
  background: var(--navy-light);
  padding: 52px 32px;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.stat-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 16px;
  position: relative;
}

.stat-bar-inner::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(201,168,76,0.2);
}

.stat-item .number {
  font-size: 44px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.stat-item .label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  line-height: 1.4;
}

/* ============================================================
   CARDS
   ============================================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
  transition: box-shadow 0.25s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 10px 40px rgba(10,22,40,0.10);
  transform: translateY(-3px);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 22px;
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Dark card variant */
.card-dark {
  background: var(--navy-light);
  border-color: rgba(255,255,255,0.06);
}

.card-dark h3 { color: var(--white); }
.card-dark p  { color: rgba(255,255,255,0.6); }
.card-dark .card-icon { background: rgba(201,168,76,0.15); }

/* ============================================================
   SECTOR GRID
   ============================================================ */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sector-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 22px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.sector-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.sector-card:hover::after { transform: scaleX(1); }

.sector-card:hover {
  box-shadow: 0 8px 28px rgba(10,22,40,0.09);
  transform: translateY(-2px);
}

.sector-icon {
  font-size: 30px;
  margin-bottom: 14px;
  display: block;
}

.sector-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.sector-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   CRITERIA TABLE
   ============================================================ */
.criteria-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,22,40,0.06);
}

.criteria-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.criteria-table th:first-child { color: var(--gold); }

.criteria-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  vertical-align: middle;
}

.criteria-table tr:last-child td { border-bottom: none; }
.criteria-table tr:nth-child(even) td { background: var(--off-white); }
.criteria-table td strong { color: var(--navy); font-weight: 700; }

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-gold   { background: var(--gold-light); color: #7a5c10; }
.badge-navy   { background: rgba(10,22,40,0.08); color: var(--navy); }
.badge-green  { background: #e6f4ea; color: #2d6a4f; }

/* ============================================================
   PILLAR LIST
   ============================================================ */
.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.pillar-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.pillar-num {
  min-width: 38px;
  height: 38px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.pillar-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.3;
}

.pillar-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   ABOUT / BIO
   ============================================================ */
.bio-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}

.bio-photo {
  position: sticky;
  top: 88px;
}

.bio-photo img {
  width: 100%;
  border-radius: 8px 8px 0 0;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.bio-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--navy-light);
  border-radius: 8px 8px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.bio-photo-placeholder .initials {
  font-size: 72px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.bio-caption {
  background: var(--navy);
  padding: 18px 22px;
  border-radius: 0 0 8px 8px;
}

.bio-caption .bio-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.bio-caption .bio-title {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-top: 5px;
}

.bio-content h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.15;
  letter-spacing: -0.3px;
}

.bio-tagline {
  font-size: 17px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 28px;
}

.bio-content p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.credential-item {
  background: var(--off-white);
  padding: 18px 20px;
  border-radius: 6px;
  border-left: 3px solid var(--gold);
}

.credential-item .cred-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 5px;
}

.credential-item .cred-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================================
   INSIGHTS / ARTICLES
   ============================================================ */
.insight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  box-shadow: 0 10px 40px rgba(10,22,40,0.10);
  transform: translateY(-3px);
}

.insight-card-header {
  background: var(--navy-light);
  padding: 28px 28px 22px;
}

.insight-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.insight-card-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
}

.insight-card-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.insight-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.read-more {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.read-more:hover { color: var(--gold-hover); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-sidebar .sidebar-card {
  background: var(--off-white);
  border-radius: 8px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.contact-sidebar .sidebar-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.contact-info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.contact-info-item .ci-icon {
  font-size: 16px;
  margin-top: 2px;
  min-width: 20px;
}

.contact-info-item .ci-text {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.5;
}

.contact-info-item .ci-text strong {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}

/* ============================================================
   PARTNERSHIP BANNER
   ============================================================ */
.partner-banner {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  border-radius: 0 6px 6px 0;
  margin-top: 40px;
}

.partner-banner p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
}

.partner-banner strong { color: var(--navy); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--gold);
  padding: 72px 32px;
  text-align: center;
}

.cta-band h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.cta-band p {
  font-size: 16px;
  color: rgba(10,22,40,0.65);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  padding: 64px 32px 28px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 52px;
}

.footer-brand .brand-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.1;
}

.footer-brand .brand-name .accent { color: var(--gold); }

.footer-brand .brand-sub {
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 5px 0 18px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
  max-width: 280px;
}

.footer-brand .footer-reg {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  margin-top: 16px;
  font-style: italic;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  text-decoration: none;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p, .footer-bottom a {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--gold); }

.footer-bottom-links { display: flex; gap: 20px; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }
.text-center .gold-divider { margin-left: auto; margin-right: auto; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}

.check-list li::before {
  content: '✓';
  min-width: 20px;
  height: 20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-3       { grid-template-columns: repeat(2, 1fr); }
  .sector-grid  { grid-template-columns: repeat(2, 1fr); }
  .stat-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top   { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid .contact-sidebar { order: -1; }
  .two-col      { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links        { display: none; }
  .nav-mobile-btn   { display: flex; }
  .hero h1          { font-size: 34px; }
  .hero-page h1     { font-size: 28px; }
  .section h2       { font-size: 28px; }
  .cta-band h2      { font-size: 26px; }
  .grid-3, .grid-2  { grid-template-columns: 1fr; }
  .bio-section      { grid-template-columns: 1fr; }
  .bio-photo        { position: static; max-width: 280px; }
  .credentials-grid { grid-template-columns: 1fr; }
  .footer-top       { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p   { max-width: 100%; }
  .section          { padding: 64px 20px; }
  .hero             { padding: 72px 20px 68px; }
}

@media (max-width: 480px) {
  .sector-grid      { grid-template-columns: 1fr; }
  .stat-bar-inner   { grid-template-columns: repeat(2, 1fr); }
  .form-row         { grid-template-columns: 1fr; }
  .hero-actions     { flex-direction: column; align-items: center; }
}
