/* ===================================
   THE ARMSHAW COLLECTIVE — Main Stylesheet
   Colors: Navy #1B2B5E, Gold #C9A84C, Light #F8F5F0
   =================================== */

:root {
  --navy: #1B2B5E;
  --navy-dark: #0F1A3A;
  --navy-light: #253570;
  --gold: #C9A84C;
  --gold-light: #E8C96B;
  --white: #FFFFFF;
  --off-white: #F8F5F0;
  --gray-light: #F0EDE8;
  --gray: #9B9B9B;
  --text: #2C2C2C;
  --text-light: #666666;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Arial', 'Helvetica Neue', sans-serif;
  --shadow: 0 4px 20px rgba(27,43,94,0.12);
  --shadow-lg: 0 8px 40px rgba(27,43,94,0.18);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; color: var(--text-light); }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-large { padding: 18px 44px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--navy-dark);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 8px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
}
.nav-link.nav-cta {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  margin-left: 8px;
}
.nav-link.nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background-image: url('images/hero-cross-lighthouse.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,26,58,0.55);
  z-index: 0;
}
.section-photo {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: 48px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-headline {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-headline span { color: var(--gold); }
.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== MISSION BAR ===== */
.mission-bar {
  background: var(--navy);
  padding: 40px 0;
  border-top: 3px solid var(--gold);
}
.mission-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.mission-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 6px;
}
.mission-label {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mission-text {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-style: italic;
}
.mission-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
}

/* ===== SECTIONS ===== */
section { padding: 90px 0; }
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-header p { font-size: 1.05rem; color: var(--text-light); }

/* ===== WHO WE SERVE ===== */
.who-we-serve { background: var(--off-white); }
.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.serve-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.serve-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.serve-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--gold);
}
.serve-card h3 { color: var(--navy); margin-bottom: 10px; }
.serve-card p { font-size: 0.95rem; margin: 0; }

/* ===== DIFFERENTIATORS ===== */
.differentiators { background: var(--white); }
.diff-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.diff-items { display: flex; flex-direction: column; gap: 28px; margin-top: 20px; }
.diff-item {
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}
.diff-item h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 6px; }
.diff-item p { font-size: 0.95rem; margin: 0; }
.diff-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--navy);
  color: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.4; }

/* ===== PROGRAMS PREVIEW ===== */
.programs-preview { background: var(--gray-light); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.program-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.program-card:hover { transform: translateY(-4px); }
.program-card.featured {
  background: var(--navy);
  border: none;
}
.program-card.featured h3 { color: var(--gold); }
.program-card.featured p { color: rgba(255,255,255,0.8); }
.program-card.featured .program-badge { background: var(--gold); color: var(--navy-dark); }
.program-card.featured li { color: rgba(255,255,255,0.8); }
.program-card.featured .btn-outline {
  border-color: var(--gold);
  color: var(--gold);
}
.program-card.featured .btn-outline:hover {
  background: var(--gold);
  color: var(--navy-dark);
}
.program-badge {
  display: inline-block;
  background: var(--off-white);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.program-results {
  list-style: none;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.program-results li {
  font-size: 0.9rem;
  color: var(--text-light);
  padding-left: 20px;
  position: relative;
}
.program-results li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  text-align: center;
  padding: 80px 24px;
}
.cta-strip h2 { color: var(--white); margin-bottom: 16px; }
.cta-strip p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 140px 24px 80px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.gold-line {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 20px auto 0;
}

/* ===== SERVICES PAGE ===== */
.services-intro { background: var(--off-white); }
.division-section { padding: 80px 0; }
.division-section:nth-child(even) { background: var(--gray-light); }
.division-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 50px;
}
.division-badge {
  background: var(--navy);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  white-space: nowrap;
  margin-top: 8px;
}
.division-header h2 { font-size: 1.9rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}
.service-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-list {
  list-style: none;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-list li {
  font-size: 0.9rem;
  color: var(--text-light);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

/* ===== PRICING TABLE ===== */
.pricing-table-wrap { overflow-x: auto; margin-top: 40px; }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.pricing-table th {
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-heading);
}
.pricing-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-light);
  vertical-align: top;
}
.pricing-table tr:nth-child(even) td { background: var(--off-white); }
.pricing-table tr:hover td { background: var(--gray-light); }
.price-highlight { color: var(--navy); font-weight: 700; }

/* ===== PROGRAMS PAGE ===== */
.program-full {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-light);
}
.program-full:nth-child(even) { background: var(--off-white); }
.program-header { margin-bottom: 40px; }
.program-header .program-badge { font-size: 0.8rem; }
.program-header h2 { font-size: 2rem; margin: 12px 0 8px; }
.program-header .tagline {
  font-size: 1.1rem;
  color: var(--gold);
  font-style: italic;
  font-family: var(--font-heading);
  margin: 0;
}
.program-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.outcomes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}
.outcomes-list li {
  padding: 10px 16px 10px 40px;
  background: var(--white);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  border-left: 3px solid var(--gold);
}
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.tier-card {
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-light);
  text-align: center;
}
.tier-card.popular {
  border-color: var(--gold);
  background: var(--navy);
}
.tier-card.popular h3 { color: var(--gold); }
.tier-card.popular p, .tier-card.popular li { color: rgba(255,255,255,0.85); }
.tier-name { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 8px; display: block; }
.tier-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 700;
  margin: 8px 0;
}
.tier-card.popular .tier-price { color: var(--white); }
.tier-features {
  list-style: none;
  margin-top: 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tier-features li {
  font-size: 0.875rem;
  color: var(--text-light);
  padding-left: 18px;
  position: relative;
}
.tier-features li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.about-photo {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.photo-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.4);
}
.photo-placeholder-icon { font-size: 5rem; display: block; margin-bottom: 12px; }
.photo-placeholder-text { font-size: 0.9rem; }
.about-bio h2 { margin-bottom: 20px; }
.credential-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.credential-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 18px;
  background: var(--off-white);
  border-radius: var(--radius);
}
.credential-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.credential-text { font-size: 0.95rem; color: var(--text); }
.theological-section { background: var(--navy); padding: 80px 0; margin: 0; }
.theological-section h2 { color: var(--white); }
.theological-section p { color: rgba(255,255,255,0.8); }
.theological-content { max-width: 760px; margin: 0 auto; text-align: center; }
.theo-quote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  font-style: italic;
  line-height: 1.6;
  border-left: 4px solid var(--gold);
  padding: 16px 28px;
  margin: 30px 0;
  text-align: left;
  background: rgba(255,255,255,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ===== RESULTS PAGE ===== */
.roi-comparison { background: var(--off-white); padding: 80px 0; }
.comparison-table-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.comparison-table th {
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  text-align: left;
}
.comparison-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-light);
}
.comparison-table tr.highlight td {
  background: rgba(201,168,76,0.12);
  font-weight: 700;
  color: var(--navy);
}
.case-studies { padding: 80px 0; }
.case-study-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 40px;
}
.cs-header {
  background: var(--navy);
  padding: 24px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.cs-header h3 { color: var(--white); margin: 0; font-size: 1.2rem; }
.cs-roi {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 30px;
}
.cs-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
}
.cs-row {
  padding: 20px 28px;
  border-right: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.cs-row:last-child { border-right: none; }
.cs-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}
.cs-value { font-size: 0.95rem; color: var(--text); }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 80px 0; background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-detail h4 { color: var(--navy); font-size: 0.95rem; margin-bottom: 4px; }
.contact-detail p { margin: 0; font-size: 0.9rem; }
.contact-form {
  background: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}
.form-submit:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-tagline {
  color: var(--gold);
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin: 0; }
.footer-links h4 {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
  text-decoration: none;
}
.footer-links li a:hover { color: var(--gold); }
.footer-contact h4 {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-contact p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .diff-content,
  .about-grid,
  .contact-grid,
  .program-body { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .tiers-grid { grid-template-columns: 1fr; max-width: 420px; margin: 40px auto 0; }
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 20px 24px;
    gap: 4px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-link.nav-cta { margin-left: 0; }
  .hero { padding: 100px 24px 60px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .mission-items { flex-direction: column; gap: 24px; }
  .mission-divider { width: 60px; height: 1px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .cs-body { grid-template-columns: 1fr 1fr; }
  .diff-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .diff-stats { grid-template-columns: 1fr; }
  .cs-body { grid-template-columns: 1fr; }
}