/* =========================================================
   MAJESTY — Component styles
   ========================================================= */

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.9rem 1.75rem;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-400);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(201, 162, 78, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--navy-900);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
[data-theme="dark"] .site-header {
  background: rgba(11, 31, 58, 0.92);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding: var(--sp-4) var(--sp-6);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--text);
}
.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.brand-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name span {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  list-style: none;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color 0.15s, color 0.15s;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }
.theme-toggle::before {
  content: "";
  width: 18px;
  height: 18px;
  background:
    radial-gradient(circle at 65% 40%, transparent 40%, currentColor 42%);
  mask-image: radial-gradient(circle at 65% 40%, transparent 40%, black 42%);
  -webkit-mask-image: radial-gradient(circle at 65% 40%, transparent 40%, black 42%);
  background: currentColor;
  border-radius: 50%;
  clip-path: circle(50% at 65% 40%);
}
[data-theme="dark"] .theme-toggle::before {
  clip-path: circle(50% at 50% 50%);
  background: currentColor;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  color: var(--text);
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  color: var(--cream);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: var(--sp-24) var(--sp-8) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
}
.mobile-menu a.btn-gold {
  align-self: flex-start;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
}
.mobile-close {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  color: var(--cream);
  width: 44px;
  height: 44px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: var(--sp-24) 0 var(--sp-20);
  background: var(--navy-900);
  color: var(--cream);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201, 162, 78, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(30, 57, 104, 0.6) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 820px;
}
.hero .eyebrow {
  color: var(--gold-500);
}
.hero h1 {
  font-size: var(--hero-size);
  font-weight: 600;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: var(--sp-6);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-500);
}
.hero-sub {
  font-size: var(--text-lg);
  color: rgba(245, 241, 232, 0.85);
  max-width: 680px;
  margin-bottom: var(--sp-8);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
}
.hero-badges {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.5rem 1rem;
  background: rgba(201, 162, 78, 0.1);
  border: 1px solid rgba(201, 162, 78, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold-400);
}
.hero-badge svg {
  width: 14px;
  height: 14px;
}

/* ---------- Trust Strip ---------- */

.trust-strip {
  background: var(--navy-800);
  color: var(--cream);
  padding: var(--sp-6) 0;
  border-top: 1px solid rgba(201, 162, 78, 0.15);
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8);
  justify-content: center;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(245, 241, 232, 0.85);
  font-weight: 500;
}
.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold-500);
}

/* ---------- Sections general ---------- */

section {
  padding: var(--sp-24) 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: var(--sp-16);
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--sp-4);
}
.section-head p {
  color: var(--text-muted);
  font-size: var(--text-lg);
}

/* ---------- Companies ---------- */

.companies {
  background: var(--surface);
}
.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-8);
}
.company-card {
  position: relative;
  padding: var(--sp-8);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.company-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.status-pill {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
}
.status-active {
  background: rgba(74, 122, 34, 0.15);
  color: #4A7A22;
}
.status-soon {
  background: rgba(176, 138, 56, 0.15);
  color: var(--gold-600);
}
.company-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: var(--sp-6);
}
.company-tag {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-2);
}
.company-card h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--sp-3);
}
.company-card > p {
  color: var(--text-muted);
  margin-bottom: var(--sp-6);
  font-size: var(--text-sm);
}
.company-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.company-card li {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  font-size: var(--text-sm);
  color: var(--text);
}
.company-card li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ---------- About ---------- */

.about {
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}
.about-text h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--sp-6);
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
  font-size: var(--text-lg);
}
.about-text strong {
  color: var(--text);
  font-weight: 700;
}
.about-card {
  padding: var(--sp-8);
  background: var(--navy-900);
  color: var(--cream);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold-500);
  position: sticky;
  top: 100px;
}
.about-card h3 {
  font-size: var(--text-2xl);
  color: var(--cream);
  margin-bottom: var(--sp-6);
}
.stat-row {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5, 1.25rem);
}
.stat {
  padding: var(--sp-4) 0;
  border-bottom: 1px solid rgba(201, 162, 78, 0.2);
}
.stat:last-child { border-bottom: none; }
.stat .num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gold-500);
  margin-bottom: var(--sp-1);
}
.stat .label {
  font-size: var(--text-xs);
  color: rgba(245, 241, 232, 0.75);
  line-height: 1.4;
}

/* ---------- Capabilities ---------- */

.caps {
  background: var(--surface);
}
.caps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-6);
}
.cap {
  padding: var(--sp-8);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s;
}
.cap:hover { border-color: var(--accent); }
.cap-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: rgba(201, 162, 78, 0.1);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-6);
}
.cap-icon svg { width: 28px; height: 28px; }
.cap h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-3);
}
.cap p {
  color: var(--text-muted);
  font-size: var(--text-sm);
}

/* ---------- Process ---------- */

.process {
  background: var(--bg);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-6);
  position: relative;
}
.step {
  position: relative;
  padding: var(--sp-8) var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: left;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-500);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--sp-4);
}
.step-connect {
  display: none;
}
@media (min-width: 800px) {
  .step-connect {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    color: var(--accent);
    display: inline-flex;
    background: var(--bg);
    padding: 4px;
    z-index: 2;
  }
  .step:last-child .step-connect { display: none; }
}
.step h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-3);
}
.step p {
  color: var(--text-muted);
  font-size: var(--text-sm);
}

/* ---------- Coverage ---------- */

.coverage {
  background: var(--surface);
}
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.coverage-text h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--sp-6);
}
.coverage-text > p {
  color: var(--text-muted);
  font-size: var(--text-lg);
  margin-bottom: var(--sp-6);
}
.coverage-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.coverage-list li {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  color: var(--text);
}
.coverage-list svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}
.coverage-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.coverage-map-wrap img {
  width: 100%;
  display: block;
}

/* ---------- Impact stats ---------- */

.impact {
  background: var(--navy-900);
  color: var(--cream);
  padding: var(--sp-16) 0;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-8);
  text-align: center;
}
.impact-stat .n {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.impact-stat .t {
  font-size: var(--text-sm);
  color: rgba(245, 241, 232, 0.8);
  letter-spacing: 0.04em;
}

/* ---------- Credentials ---------- */

.credentials {
  background: var(--navy-900);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.credentials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(201, 162, 78, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 80%, rgba(201, 162, 78, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.credentials .container { position: relative; }
.credentials .section-head h2 { color: var(--cream); }
.credentials .section-head p { color: rgba(245, 241, 232, 0.75); }
.credentials .eyebrow { color: var(--gold-500); }

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-6);
}

.credential {
  padding: var(--sp-8);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 78, 0.2);
  border-radius: var(--radius-lg);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
  position: relative;
}
.credential:hover {
  transform: translateY(-4px);
  border-color: var(--gold-500);
  background: rgba(201, 162, 78, 0.06);
}

.credential-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(201, 162, 78, 0.12);
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-6);
}
.credential-icon svg { width: 24px; height: 24px; }

.credential-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--sp-2);
}

.credential-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: var(--sp-2);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.005em;
  word-break: break-word;
}

.credential-note {
  font-size: var(--text-sm);
  color: rgba(245, 241, 232, 0.6);
  line-height: 1.4;
  margin: 0;
}

/* ---------- FAQ ---------- */

.faq {
  background: var(--bg);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-6);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--surface-alt); }
.faq-q svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 var(--sp-6);
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: var(--sp-6);
}
.faq-a p {
  color: var(--text-muted);
}

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--cream);
  text-align: center;
  padding: var(--sp-24) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201, 162, 78, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band .container {
  position: relative;
}
.cta-band .eyebrow {
  color: var(--gold-500);
}
.cta-band h2 {
  font-size: var(--text-4xl);
  color: var(--cream);
  margin-bottom: var(--sp-4);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band > .container > p {
  color: rgba(245, 241, 232, 0.85);
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto var(--sp-8);
}
.cta-actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Contact ---------- */

.contact {
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-16);
  align-items: start;
}
.contact h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--sp-4);
}
.contact-lead {
  color: var(--text-muted);
  font-size: var(--text-lg);
  margin-bottom: var(--sp-8);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.contact-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(201, 162, 78, 0.1);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 22px; height: 22px; }
.ci-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.ci-val {
  font-size: var(--text-lg);
  color: var(--text);
  font-weight: 500;
  transition: color 0.15s;
}
a.ci-val:hover { color: var(--accent); }

.form-card {
  padding: var(--sp-8);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.field {
  margin-bottom: var(--sp-4);
}
.field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--sp-2);
  color: var(--text);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: var(--text-base);
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 162, 78, 0.15);
}
.field textarea {
  resize: vertical;
  min-height: 100px;
}
.form-note {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--sp-4);
  text-align: center;
}
.form-card .btn {
  width: 100%;
  margin-top: var(--sp-2);
}
.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-8);
}
.form-success svg {
  width: 56px;
  height: 56px;
  color: var(--accent);
  margin: 0 auto var(--sp-4);
}
.form-success h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--sp-2);
}
.form-card.submitted form { display: none; }
.form-card.submitted .form-success { display: block; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-900);
  color: rgba(245, 241, 232, 0.75);
  padding: var(--sp-16) 0 var(--sp-8);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid rgba(201, 162, 78, 0.2);
}
.footer-brand {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  max-width: 460px;
}
.footer-brand img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.fb-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-2);
}
.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.7);
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--sp-4);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer-col a {
  font-size: var(--text-sm);
  color: rgba(245, 241, 232, 0.75);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--gold-500); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-size: var(--text-xs);
  color: rgba(245, 241, 232, 0.5);
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .about-grid,
  .coverage-grid,
  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .about-card { position: static; }
  section { padding: var(--sp-16) 0; }
  .hero { padding: var(--sp-16) 0 var(--sp-12); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .brand-name { display: none; }
  .brand img { width: 40px; height: 40px; }
  .hero-actions,
  .cta-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .section-head h2,
  .about-text h2,
  .coverage-text h2,
  .contact h2,
  .cta-band h2 { font-size: var(--text-3xl); }
  .impact-stat .n { font-size: var(--text-4xl); }
  .footer-bottom { flex-direction: column; }
}
