/* ============================================
   National Industrial Advisors - Style System
   ============================================ */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', 'Source Sans Pro', -apple-system, sans-serif;
  color: #1a1a1a;
  background: #f5f4ee;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ============================================
   Typography
   ============================================ */

.font-serif {
  font-family: 'DM Serif Display', Georgia, serif;
}

.font-sans {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
}

/* ============================================
   Color Tokens
   ============================================ */

:root {
  --green: #6B7F3A;
  --green-dark: #4B5320;
  --dark: #1a1a1a;
  --darker: #111;
  --light-bg: #f5f4ee;
  --card-bg: #fff;
  --card-border: #e5e0d4;
  --text-light: #f0f0e8;
  --text-muted-light: rgba(240, 240, 232, 0.45);
  --text-ghost-light: rgba(240, 240, 232, 0.25);
  --text-faint-light: rgba(240, 240, 232, 0.15);
  --text-muted-dark: rgba(26, 26, 26, 0.5);
  --text-subtle-dark: rgba(26, 26, 26, 0.4);
  --green-border: rgba(75, 83, 32, 0.3);
  --green-border-light: rgba(75, 83, 32, 0.2);
  --green-border-faint: rgba(75, 83, 32, 0.1);
  --green-dashed: rgba(107, 127, 58, 0.4);
  --green-dashed-light: rgba(107, 127, 58, 0.3);
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  background: var(--dark);
  padding: 14px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--green-border);
  flex-wrap: wrap;
  gap: 10px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  overflow: hidden;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.nav-subtitle {
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(240, 240, 232, 0.3);
  margin-top: 1px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-broker-logo {
  height: 26px;
  padding: 4px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
}

.nav-broker-logo img {
  height: 18px;
  width: auto;
  opacity: 0.5;
}

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

.nav-links a {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(240, 240, 232, 0.5);
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-links a.active {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--green);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-light);
  margin: 5px 0;
  transition: 0.3s;
}

/* ============================================
   Hero Sections
   ============================================ */

.hero {
  background: linear-gradient(168deg, #1a1a1a 0%, #111 60%, #1a1f14 100%);
  padding: 80px 40px 68px;
  text-align: center;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--green);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 8px;
}

.hero-headline-accent {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--green);
  line-height: 1.15;
  margin-bottom: 20px;
  font-style: italic;
}

.hero-sub {
  font-size: 15px;
  color: var(--text-muted-light);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
}

.hero-sub-mb {
  margin-bottom: 40px;
}

/* Inner page heroes are slightly smaller */
.hero-inner {
  padding: 64px 40px 56px;
}

.hero-inner .hero-headline,
.hero-inner .hero-headline-accent {
  font-size: 36px;
  line-height: 1.2;
}

/* ============================================
   Green Divider
   ============================================ */

.green-divider {
  border-top: 2px solid var(--green-dark);
}

/* ============================================
   CTA Buttons
   ============================================ */

.btn-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--dark);
  background: var(--green);
  padding: 14px 28px;
  border-radius: 3px;
  cursor: pointer;
  text-transform: uppercase;
  border: none;
  transition: opacity 0.2s;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--green);
  border: 1px solid var(--green-dashed);
  padding: 14px 28px;
  border-radius: 3px;
  cursor: pointer;
  text-transform: uppercase;
  background: transparent;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  text-align: center;
}

.btn-outline:hover {
  background: rgba(107, 127, 58, 0.1);
}

/* ============================================
   Tags Row (bottom of homepage hero)
   ============================================ */

.tags-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: var(--text-ghost-light);
}

.tags-row .sep {
  color: var(--green-dashed);
}

/* ============================================
   Stats Bar
   ============================================ */

.stats-bar {
  background: var(--dark);
  border-top: 2px solid var(--green-dark);
  padding: 24px 40px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}

.stat {
  text-align: center;
  min-width: 120px;
}

.stat-value {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--text-light);
}

.stat-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: rgba(240, 240, 232, 0.35);
  margin-top: 2px;
  text-transform: uppercase;
}

/* ============================================
   Content Sections
   ============================================ */

.section-light {
  background: var(--light-bg);
  padding: 56px 40px;
}

.section-dark {
  background: var(--dark);
  padding: 40px;
}

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

.section-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--green);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 6px;
}

.section-heading .accent {
  color: var(--green-dark);
  font-style: italic;
}

.section-sub {
  font-size: 13px;
  color: var(--text-muted-dark);
  max-width: 440px;
  line-height: 1.65;
}

.section-sub-center {
  text-align: center;
  margin: 0 auto 36px;
}

/* ============================================
   Cards Grid (How We Work)
   ============================================ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 28px 20px;
  text-align: center;
}

.card-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}

.card-text {
  font-size: 12px;
  color: var(--text-muted-dark);
  line-height: 1.6;
  margin-bottom: 14px;
}

.card-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--green);
  text-transform: uppercase;
}

.card-link:hover {
  color: var(--green-dark);
}

/* ============================================
   Newsletter
   ============================================ */

.newsletter {
  background: var(--light-bg);
  padding: 0 40px 56px;
}

.newsletter-card {
  max-width: 500px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 32px;
  text-align: center;
}

.newsletter-card .section-eyebrow {
  margin-bottom: 8px;
}

.newsletter-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 6px;
}

.newsletter-sub {
  font-size: 12px;
  color: var(--text-subtle-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 380px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px 14px;
  font-size: 13px;
  font-family: inherit;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  background: var(--card-bg);
  color: var(--dark);
  outline: none;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(26, 26, 26, 0.3);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--green);
}

.newsletter-form button {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--dark);
  background: var(--green);
  padding: 10px 20px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================
   Contact Section (Homepage footer area)
   ============================================ */

.contact-section {
  background: var(--dark);
  padding: 40px;
  border-top: 1px solid var(--green-border-light);
}

.contact-section .section-eyebrow {
  text-align: center;
  margin-bottom: 6px;
}

.contact-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 6px;
}

.contact-sub {
  font-size: 12px;
  color: rgba(240, 240, 232, 0.35);
  text-align: center;
  margin-bottom: 28px;
}

.contact-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.contact-card {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--green-border-light);
  border-radius: 6px;
  padding: 20px;
}

.contact-card-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
}

.contact-card-title {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact-card-info {
  font-size: 12px;
  color: rgba(240, 240, 232, 0.4);
  line-height: 1.8;
}

.contact-card-info a {
  color: rgba(240, 240, 232, 0.4);
  transition: color 0.2s;
}

.contact-card-info a:hover {
  color: var(--green);
}

.contact-card-license {
  font-size: 10px;
  color: rgba(240, 240, 232, 0.2);
  margin-top: 10px;
  line-height: 1.6;
}

/* ============================================
   Footer
   ============================================ */

.footer-info {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--green-border-faint);
}

.footer-info p {
  font-size: 11px;
  color: var(--text-ghost-light);
}

.footer-info p + p {
  font-size: 10px;
  color: rgba(240, 240, 232, 0.18);
  margin-top: 3px;
}

.footer-bar {
  background: var(--darker);
  padding: 14px 40px;
  text-align: center;
}

.footer-bar p {
  font-size: 10px;
  color: var(--text-faint-light);
}

/* ============================================
   Two-Column Layout (Contact + Inquiry pages)
   ============================================ */

.two-col {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.col-left {
  flex: 1;
  min-width: 280px;
}

.col-right {
  flex: 0 0 320px;
  min-width: 280px;
}

.col-right-sticky {
  position: sticky;
  top: 90px;
}

/* ============================================
   Process Steps
   ============================================ */

.process-step {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: var(--dark);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.step-text {
  font-size: 13px;
  color: rgba(26, 26, 26, 0.55);
  line-height: 1.65;
}

/* ============================================
   Forms
   ============================================ */

.form-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 28px;
}

.form-card-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 4px;
}

.form-card-sub {
  font-size: 12px;
  color: var(--text-subtle-dark);
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  font-size: 11px;
  color: var(--text-muted-dark);
  margin-bottom: 4px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  font-size: 13px;
  font-family: inherit;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  background: var(--card-bg);
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(26, 26, 26, 0.25);
}

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

.form-submit {
  width: 100%;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--dark);
  background: var(--green);
  padding: 14px 28px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  margin-top: 6px;
  transition: opacity 0.2s;
}

.form-submit:hover {
  opacity: 0.9;
}

/* Form success message */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success .check {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--dark);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-success p {
  font-size: 13px;
  color: var(--text-muted-dark);
}

/* ============================================
   Option Cards (Seller page)
   ============================================ */

.option-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 16px;
}

.option-card-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 4px;
}

.option-card-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 500;
}

.option-card-text {
  font-size: 13px;
  color: rgba(26, 26, 26, 0.55);
  line-height: 1.65;
}

/* ============================================
   Prose Content
   ============================================ */

.prose {
  font-size: 14px;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.85;
}

.prose p {
  margin-bottom: 16px;
}

.prose p:last-child {
  margin-bottom: 0;
}

/* ============================================
   Bio Cards
   ============================================ */

.bio-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 28px;
  margin-bottom: 16px;
}

.bio-card:last-child {
  margin-bottom: 0;
}

.bio-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}

.bio-name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
}

.bio-title {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
}

.bio-email {
  font-size: 12px;
  color: var(--text-subtle-dark);
  margin-bottom: 14px;
}

.bio-email a {
  color: var(--text-subtle-dark);
  transition: color 0.2s;
}

.bio-email a:hover {
  color: var(--green);
}

.bio-text {
  font-size: 13px;
  color: rgba(26, 26, 26, 0.65);
  line-height: 1.75;
}

.bio-license {
  font-size: 10px;
  color: rgba(26, 26, 26, 0.3);
  margin-top: 12px;
}

/* ============================================
   Contact Page Specific
   ============================================ */

.phone-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 16px;
  text-align: center;
}

.phone-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-subtle-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.phone-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  color: var(--dark);
}

.phone-number a {
  color: var(--dark);
  transition: color 0.2s;
}

.phone-number a:hover {
  color: var(--green);
}

.mini-contact-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 12px;
}

.mini-contact-card:last-of-type {
  margin-bottom: 0;
}

.office-section {
  margin-top: 24px;
}

.office-block {
  margin-bottom: 14px;
}

.office-block:last-child {
  margin-bottom: 0;
}

.office-state {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
  font-size: 13px;
}

.office-address {
  font-size: 12px;
  color: rgba(26, 26, 26, 0.55);
  line-height: 1.7;
}

/* ============================================
   Bottom Contact Strip (Inquiry pages)
   ============================================ */

.bottom-contact {
  background: var(--dark);
  padding: 32px 40px;
  border-top: 1px solid var(--green-border-light);
}

.bottom-contact-inner {
  max-width: 740px;
  margin: 0 auto;
}

.bottom-contact-text {
  font-size: 12px;
  color: rgba(240, 240, 232, 0.35);
  text-align: center;
  margin-bottom: 16px;
}

.bottom-contact-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.bottom-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--green-border-light);
  border-radius: 6px;
  padding: 16px 20px;
  min-width: 200px;
}

.bottom-card-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
}

.bottom-card-title {
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--green);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.bottom-card-email {
  font-size: 11px;
  color: rgba(240, 240, 232, 0.4);
}

.bottom-card-email a {
  color: rgba(240, 240, 232, 0.4);
  transition: color 0.2s;
}

.bottom-card-email a:hover {
  color: var(--green);
}

.bottom-broker {
  text-align: center;
}

.bottom-broker p {
  font-size: 11px;
  color: var(--text-ghost-light);
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
  background: var(--dark);
  padding: 48px 40px;
  text-align: center;
  border-top: 1px solid var(--green-border-light);
}

.cta-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--green);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.cta-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 6px;
}

.cta-heading .accent {
  color: var(--green);
  font-style: italic;
}

.cta-sub {
  font-size: 12px;
  color: rgba(240, 240, 232, 0.35);
  margin-bottom: 24px;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
  .nav {
    padding: 12px 20px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-right {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--green-border);
    margin-top: 4px;
  }

  .nav-right.open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 12px;
  }

  .hero {
    padding: 56px 24px 48px;
  }

  .hero-headline,
  .hero-headline-accent {
    font-size: 30px;
  }

  .hero-inner .hero-headline,
  .hero-inner .hero-headline-accent {
    font-size: 28px;
  }

  .btn-row {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .tags-row {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .tags-row .sep {
    display: none;
  }

  .stats-bar {
    padding: 20px 24px;
    gap: 20px;
  }

  .section-light,
  .section-dark {
    padding: 40px 24px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .newsletter {
    padding: 0 24px 40px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .contact-section {
    padding: 32px 24px;
  }

  .contact-cards {
    flex-direction: column;
  }

  .contact-card {
    max-width: 100%;
  }

  .two-col {
    flex-direction: column;
  }

  .col-right {
    flex: 1 1 100%;
    width: 100%;
  }

  .col-right-sticky {
    position: static;
  }

  .bottom-contact {
    padding: 24px;
  }

  .bottom-contact-cards {
    flex-direction: column;
    align-items: center;
  }

  .bottom-card {
    width: 100%;
    max-width: 300px;
  }

  .footer-bar {
    padding: 14px 24px;
  }

  .section-heading {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hero-headline,
  .hero-headline-accent {
    font-size: 26px;
  }

  .hero-inner .hero-headline,
  .hero-inner .hero-headline-accent {
    font-size: 24px;
  }

  .stat-value {
    font-size: 20px;
  }
}
