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

:root {
  --bg-primary: #0a0a0a;
  --bg-primary-rgb: 10, 10, 10;
  --bg-secondary: #0d0d0d;
  --bg-tertiary: #1a1a1a;
  --bg-card: #111111;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #707070;
  --border: #222222;
  --border-light: #3a3a3a;
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

[data-theme="light"] {
  --bg-primary: #fafafa;
  --bg-primary-rgb: 250, 250, 250;
  --bg-secondary: #f5f5f5;
  --bg-tertiary: #f0f0f0;
  --bg-card: #ffffff;
  --text-primary: #0a0a0a;
  --text-secondary: #666666;
  --text-muted: #999999;
  --border: #e5e5e5;
  --border-light: #d4d4d4;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
}

body {
  font-family: var(--sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

.side-nav {
  position: fixed;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.side-nav-item {
  position: relative;
  display: block;
}

.side-nav-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: -6px;
  right: -6px;
  bottom: -6px;
}

.side-nav-square {
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid var(--text-muted);
  transition: all 0.15s;
}

.side-nav-item:hover .side-nav-square,
.side-nav-item.active .side-nav-square {
  border-color: var(--text-primary);
  background: var(--text-primary);
}

.side-nav-item::after {
  content: attr(data-label);
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  background: var(--bg-primary);
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--border-light);
}

.side-nav-item:hover::after {
  opacity: 1;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem 1rem 5rem;
  background: transparent;
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

.header.header-scrolled {
  background: rgba(var(--bg-primary-rgb), 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

[data-theme="light"] .logo-img {
  filter: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.15s;
}

.nav a:hover {
  color: var(--text-primary);
}

.theme-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s;
}

.theme-toggle:hover {
  opacity: 0.7;
}

.theme-toggle-icon {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.15s;
  box-sizing: border-box;
}

.theme-toggle:hover .theme-toggle-icon {
  border-color: var(--text-primary);
}

.theme-toggle-inner {
  width: 10px;
  height: 10px;
  background: var(--text-secondary);
  transition: all 0.15s;
  display: block;
  flex-shrink: 0;
}

.theme-toggle:hover .theme-toggle-inner {
  background: var(--text-primary);
}

[data-theme="light"] .theme-toggle-inner {
  background: var(--text-primary);
}

[data-theme="light"] .theme-toggle-icon {
  border-color: var(--text-primary);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#network-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 4rem 4rem 5rem;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.hero-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  max-width: 900px;
}

.hero h1 span {
  display: block;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.hero-tagline {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.15s, color 0.15s;
  margin-top: 0.5rem;
}

.hero-cta:hover {
  background: var(--text-secondary);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: var(--text-primary);
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid var(--text-primary);
  transition: background 0.15s, color 0.15s;
  margin-top: 0.5rem;
  margin-left: 1rem;
}

.hero-cta-secondary:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.section {
  position: relative;
  padding: 8rem 4rem 8rem 5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-alt {
  background: var(--bg-secondary);
  max-width: 100%;
  padding-left: calc((100vw - 1400px) / 2 + 5rem);
  padding-right: calc((100vw - 1400px) / 2 + 4rem);
}

.section-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 3rem;
  max-width: 800px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: border-color 0.15s;
}

.stat-card:hover {
  border-color: var(--border-light);
}

.stat-value {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--mono);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.stat-source {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.scenario-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.15s;
}

.scenario-card:hover {
  border-color: var(--border-light);
}

.scenario-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.scenario-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: border-color 0.15s;
}

.solution-card:hover {
  border-color: var(--border-light);
}

.solution-number {
  width: 28px;
  height: 28px;
  border: 1px solid var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.solution-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.solution-tagline {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.solution-card > p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.solution-card ul {
  list-style: none;
}

.solution-card li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.solution-card li:last-child {
  border-bottom: none;
}

.roi-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.roi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: border-color 0.15s;
}

.roi-card:hover {
  border-color: var(--border-light);
}

.roi-card.featured {
  border-color: var(--text-muted);
}

.roi-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.roi-type {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.roi-card > p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.roi-cost {
  font-family: var(--mono);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin: 1.5rem 0 0.5rem;
}

.roi-proof {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  padding: 2.5rem;
}

.roi-proof h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.roi-proof p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.roi-proof strong {
  color: var(--text-primary);
}

.roi-conclusion {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 0.875rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process-phase {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: border-color 0.15s;
}

.process-phase:hover {
  border-color: var(--border-light);
}

.process-number {
  width: 28px;
  height: 28px;
  border: 1px solid var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.process-phase h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.process-phase p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Report Section */
.report-section {
  padding: 6rem calc((100vw - 1400px) / 2 + 4rem);
}

.report-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.report-badge {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  padding: 0.3rem 0.75rem;
}

.report-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.report-book {
  display: flex;
  align-items: center;
  justify-content: center;
}

.report-book-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

.report-title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.report-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.report-contents {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.report-contents li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
}

.report-contents li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.report-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 2.5rem;
}

.report-form-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.report-input-row {
  display: flex;
  gap: 0;
  margin-bottom: 1rem;
}

.report-input-row input {
  flex: 1;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-right: none;
  padding: 0.875rem 1rem;
  color: var(--text-primary);
  font-family: var(--sans);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.15s, background-color 0.15s;
}

.report-input-row input::placeholder {
  color: var(--text-muted);
}

.report-input-row input:focus {
  border-color: var(--text-secondary);
  background-color: var(--bg-card);
}

.report-submit {
  background: var(--text-primary);
  color: var(--bg-primary);
  border: none;
  padding: 0.875rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.report-submit:hover {
  background: var(--text-secondary);
}

.report-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.report-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--mono);
  line-height: 1.5;
}

.report-success {
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  background: var(--bg-tertiary);
}

.report-success-title {
  font-family: var(--mono);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.report-success-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.report-error {
  padding: 1rem;
  border: 1px solid var(--border-light);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .report-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .report-book {
    display: none;
  }
  .report-label-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .report-section {
    padding: 5rem 2rem;
  }
}

@media (max-width: 640px) {
  .report-input-row {
    flex-direction: column;
  }
  .report-input-row input {
    border-right: 1px solid var(--border-light);
    border-bottom: none;
  }
}

.cta-section {
  text-align: center;
  padding: 10rem 4rem 10rem 5rem;
  background: var(--bg-secondary);
}

.cta-section h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.cta-section > p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}

.cta-section > p:last-of-type {
  margin-bottom: 3rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: var(--text-primary);
  padding: 1.25rem 2.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid var(--text-primary);
  transition: all 0.15s;
}

.cta-button:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.footer {
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border);
  padding: 4rem 5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto 4rem;
}

.footer-brand .footer-logo {
  height: 28px;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.footer-description {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: color 0.15s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom-bar {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-bottom-bar p {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-family: var(--mono);
}

@media (max-width: 1200px) {
  .side-nav {
    display: none;
  }
  
  .header {
    padding-left: 4rem;
  }
  
  .hero, .section {
    padding-left: 4rem;
  }
  
  .section-alt {
    padding-left: 4rem;
  }
  
  .footer {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
  
  .roi-comparison {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .header {
    padding: 1rem 2rem;
  }
  
  .hero, .section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .section-alt {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .nav {
    gap: 1.5rem;
  }
  
  .nav a {
    font-size: 0.75rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .scenarios-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Legal Disclaimer */
.hero-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-family: var(--mono);
}

/* Case Studies */
.case-study-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.case-study-main h3 {
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
  color: var(--text-primary);
}

.case-study-main h3:first-child {
  margin-top: 0;
}

.case-study-main p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.case-study-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
}

.meta-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.meta-value {
  font-family: var(--mono);
  font-size: 0.875rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 800px;
}

.scenario-title {
  font-size: 1.25rem;
  margin: 1rem 0 0.75rem;
  color: var(--text-primary);
}

.scenario-text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.solution-number {
  width: 28px;
  height: 28px;
  border: 1px solid var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.solution-tagline {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.solution-features {
  list-style: none;
  margin-top: 1rem;
}

.solution-features li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.solution-features li:last-child {
  border-bottom: none;
}

/* Sources Page */
.sources-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.source-category {
  border: 1px solid var(--border);
  padding: 2rem;
  background: var(--bg-card);
}

.source-category h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.source-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.source-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.source-number {
  width: 28px;
  height: 28px;
  border: 1px solid var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  flex-shrink: 0;
  color: var(--text-primary);
}

.source-content h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.source-content p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

.source-content strong {
  color: var(--text-primary);
}

.source-link {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
  transition: color 0.15s;
  margin-top: 0.5rem;
  display: inline-block;
}

.source-link:hover {
  color: var(--text-primary);
}

/* Methodology */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.method-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.15s;
}

.method-item:hover {
  border-color: var(--border-light);
}

.method-number {
  width: 28px;
  height: 28px;
  border: 1px solid var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.method-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.method-item p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Compact Layout Styles - Reduced Vertical Scrolling */

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-box {
  width: 80px;
  height: 80px;
  border: 1px solid var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  color: var(--text-primary);
}

.stat-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Stakes Row */
.stakes-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.stakes-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: border-color 0.15s;
}

.stakes-card:hover {
  border-color: var(--border-light);
}

.stakes-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.stakes-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Services Row */
.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.15s;
}

.service-card:hover {
  border-color: var(--border-light);
}

.service-num {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.service-card > p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
}

.service-card li:last-child {
  border-bottom: none;
}

/* ROI Row */
.roi-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.roi-side {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
}

.roi-side.roi-featured {
  border-color: var(--text-muted);
}

.roi-side h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.roi-sub {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.roi-stat {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0;
}

.roi-stat span {
  font-size: 1rem;
  color: var(--text-muted);
}

.roi-divider {
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--text-muted);
}

.roi-proof-compact {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
}

.roi-proof-compact p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.roi-proof-compact strong {
  color: var(--text-primary);
}

/* Proof Row */
.proof-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.15s;
}

.proof-card:hover {
  border-color: var(--border-light);
}

.proof-year {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.proof-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.proof-type {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.proof-card > p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.proof-link {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
  transition: color 0.15s;
}

.proof-link:hover {
  color: var(--text-primary);
}

/* Process Row */
.process-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
}

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.15s;
}

.process-step:hover {
  border-color: var(--border-light);
}

.step-num {
  width: 28px;
  height: 28px;
  border: 1px solid var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  margin: 0 auto 1rem;
  color: var(--text-primary);
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.process-arrow {
  font-family: var(--mono);
  font-size: 1.5rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stakes-row {
    grid-template-columns: 1fr;
  }
  
  .services-row {
    grid-template-columns: 1fr;
  }
  
  .roi-row {
    grid-template-columns: 1fr;
  }
  
  .roi-divider {
    display: none;
  }
  
  .proof-row {
    grid-template-columns: 1fr;
  }
  
  .process-row {
    grid-template-columns: 1fr;
  }
  
  .process-arrow {
    display: none;
  }
  
  .case-study-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.15s;
}

.contact-card:hover {
  border-color: var(--border-light);
}

.contact-card.primary {
  border-color: var(--text-muted);
}

.contact-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

.contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.contact-link {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.75rem;
  transition: color 0.15s;
}

.contact-link:hover {
  color: var(--text-secondary);
}

.contact-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-info {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  margin-bottom: 3rem;
}

.contact-info h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.contact-info ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.contact-info li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding-left: 1rem;
  position: relative;
}

.contact-info li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.contact-form-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
}

.contact-form-section h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-family: var(--sans);
  font-size: 0.9rem;
  transition: border-color 0.15s, background-color 0.15s;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--text-secondary);
  background-color: var(--bg-card);
  outline: none;
}

.form-field.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.form-field.checkbox input {
  width: 16px;
  height: 16px;
}

.form-field.checkbox label {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.form-submit {
  background: var(--text-primary);
  color: var(--bg-primary);
  border: none;
  padding: 1rem 2rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--text-secondary);
}

.form-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  font-style: italic;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info ul {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}
  
  .nav a {
    font-size: 0.75rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .scenarios-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   NAV HIGHLIGHT
   ============================================ */

.nav-highlight {
  color: var(--text-primary) !important;
  border: 1px solid var(--border-light);
  padding: 0.3rem 0.75rem;
  font-family: var(--mono);
  font-size: 0.7rem !important;
  letter-spacing: 0.1em;
  transition: border-color 0.15s, color 0.15s !important;
}

.nav-highlight:hover {
  border-color: var(--text-primary);
  color: var(--text-primary) !important;
}

/* ============================================
   SERVICE CARD FEATURED + 4-COLUMN GRID
   ============================================ */

.services-row-4 {
  grid-template-columns: repeat(4, 1fr);
}

.service-card-featured {
  border-color: var(--border-light);
  position: relative;
}

.service-card-featured::before {
  content: 'NEW';
  position: absolute;
  top: -1px;
  right: -1px;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--bg-primary);
  background: var(--text-primary);
  padding: 0.2rem 0.5rem;
}

.service-card-cta {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.1rem;
  transition: border-color 0.15s;
}

.service-card-cta:hover {
  border-color: var(--text-primary);
}

@media (max-width: 1200px) {
  .services-row-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-row-4 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SENTIMENT REPORT PAGE
   ============================================ */

.sentiment-hero-content {
  max-width: 1400px;
}

.sentiment-deliverables {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.deliverable-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.15s;
}

.deliverable-card:hover {
  border-color: var(--border-light);
}

.deliverable-num {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}

.deliverable-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.deliverable-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.deliverable-example {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.score-chip {
  font-family: var(--mono);
  font-size: 0.72rem;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--border-light);
}

.score-neutral { color: var(--text-secondary); }
.score-positive { color: var(--text-primary); }

.theme-example {
  flex-direction: column;
  gap: 0.4rem;
}

.theme-chip {
  font-family: var(--mono);
  font-size: 0.68rem;
  padding: 0.25rem 0.6rem;
  letter-spacing: 0.05em;
}

.theme-supports {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.theme-undermines {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.sample-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.sample-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
}

.sample-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.sample-quote {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-left: 2px solid var(--border-light);
  padding-left: 1rem;
  font-style: italic;
  margin: 0;
}

.sample-themes {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sample-theme {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
}

.sample-theme:last-child {
  border-bottom: none;
}

.sample-theme-name {
  color: var(--text-secondary);
}

.sample-theme-share {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.sample-theme-tag {
  font-family: var(--mono);
  font-size: 0.62rem;
  padding: 0.15rem 0.4rem;
  letter-spacing: 0.05em;
}

.tag-supports {
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.tag-undermines {
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.sample-rec {
  margin-bottom: 1.5rem;
}

.sample-rec:last-child {
  margin-bottom: 0;
}

.rec-timing {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.5rem;
}

.sample-rec p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.sample-rec strong {
  color: var(--text-primary);
}

.sentiment-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.sentiment-form-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.sentiment-form-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.sentiment-form-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.sentiment-form-bullets li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
}

.sentiment-form-bullets li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.sentiment-form-note {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.sentiment-request-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sentiment-submit {
  width: 100%;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .sentiment-deliverables {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .sentiment-form-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .sentiment-deliverables {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SENTIMENT MONTHLY CTA
   ============================================ */

.sentiment-monthly-cta {
  border-top: 1px solid var(--border);
  padding: 5rem calc((100vw - 1400px) / 2 + 4rem);
  background: var(--bg-primary);
}

.sentiment-monthly-inner {
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.sentiment-monthly-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.sentiment-monthly-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.sentiment-monthly-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
}

.sentiment-monthly-inner .cta-button {
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .sentiment-monthly-cta {
    padding: 4rem 2rem;
  }

  .sentiment-monthly-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */

.header-mobile-actions {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 110;
}

.mobile-menu-toggle .hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.25s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 150;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border);
  z-index: 200;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.mobile-drawer-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.15s;
}

.mobile-drawer-close:hover {
  border-color: var(--border-light);
}

.mobile-drawer-close .close-icon {
  position: relative;
  width: 14px;
  height: 14px;
}

.mobile-drawer-close .close-icon::before,
.mobile-drawer-close .close-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 1px;
  background: var(--text-primary);
}

.mobile-drawer-close .close-icon::before {
  transform: rotate(45deg);
}

.mobile-drawer-close .close-icon::after {
  transform: rotate(-45deg);
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 0;
}

.mobile-drawer-link {
  display: block;
  padding: 1rem 0;
  font-size: 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}

.mobile-drawer-link:first-child {
  border-top: 1px solid var(--border);
}

.mobile-drawer-link:hover {
  color: var(--text-primary);
}

.mobile-drawer-highlight {
  color: var(--text-primary);
  font-weight: 500;
}

body.mobile-drawer-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .header-mobile-actions {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav a {
    display: none;
  }

  .nav .theme-toggle {
    display: none;
  }
}

/* ============================================
   MOBILE CONTENT WIDTH FIX
   ============================================ */

@media (max-width: 640px) {
  .header {
    padding: 1rem 1.25rem;
  }

  .hero-content {
    padding: 6rem 1.25rem 3rem;
  }

  .section {
    padding: 5rem 1.25rem;
  }

  .section-alt {
    padding: 5rem 1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .footer {
    padding: 3rem 1.25rem 1.5rem;
  }

  .cta-section {
    padding: 6rem 1.25rem;
  }

  .hero-cta,
  .hero-cta-secondary {
    display: block;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-cta-secondary {
    margin-top: 0.75rem;
  }

  .stat-box {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }

  .services-row.services-row-4 {
    grid-template-columns: 1fr;
  }

  .process-step {
    padding: 1.25rem;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 44px;
  }

  .form-submit {
    min-height: 48px;
    width: 100%;
    text-align: center;
  }
}
