:root {
  --page-bg: #f5f6f8;
  --surface: #ffffff;
  --surface-alt: #ecf1f9;
  --border: #dce2eb;
  --border-strong: #b5c2d3;
  --text-primary: #0c1d33;
  --text-secondary: #4a5568;
  --text-muted: #6b7280;
  --accent: #123a74;
  --accent-light: #1f4f9f;
  --accent-warm: #ff5a3c;
  --shadow-soft: 0 20px 40px -25px rgba(12, 29, 51, 0.4);
  --shadow-card: 0 24px 50px -30px rgba(15, 61, 115, 0.45);
  --radius-md: 16px;
  --radius-lg: 28px;
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 64px;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  background: rgba(245, 246, 248, 0.92);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 60%, var(--accent-warm) 100%);
  box-shadow: 0 10px 20px -10px rgba(18, 58, 116, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.nav a {
  position: relative;
  padding: 10px 0;
  transition: color 0.2s var(--transition);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--accent-warm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--transition);
}

.nav a:hover {
  color: var(--accent);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  /* slightly wider so "Book a call" doesn't wrap */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  min-width: 140px;
  border-radius: 999px;
  border: 1.5px solid rgba(18, 58, 116, 0.35);
  color: var(--accent);
  font-weight: 600;
  transition: border-color 0.3s var(--transition), transform 0.3s var(--transition), box-shadow 0.3s var(--transition);
  box-shadow: 0 8px 18px -15px rgba(18, 58, 116, 0.6);
}

.nav-cta:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -15px rgba(18, 58, 116, 0.7);
}

/* show underline only under the text for the CTA (not the whole padded button) */
.nav-cta::after {
  display: none;
}

.nav-cta {
  text-decoration: none;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--accent);
  /* underline just the text */
  text-decoration: underline;
  text-decoration-color: var(--accent-warm);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  padding: 96px 0 72px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin: 12px 0 20px;
  letter-spacing: -0.025em;
}

.eyebrow {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
}

.lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 26px;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s var(--transition), box-shadow 0.25s var(--transition), background 0.25s var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: #ffffff;
  box-shadow: 0 18px 30px -20px rgba(18, 58, 116, 0.65);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px -20px rgba(18, 58, 116, 0.5);
}

.btn-secondary {
  background: rgba(18, 58, 116, 0.07);
  color: var(--accent);
  border: 1.5px solid rgba(18, 58, 116, 0.18);
}

.btn-secondary:hover {
  background: rgba(18, 58, 116, 0.12);
  transform: translateY(-2px);
  border-color: rgba(18, 58, 116, 0.3);
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.proof-points li {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(18, 58, 116, 0.12);
  color: var(--accent);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.dashboard {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(18, 58, 116, 0.1), rgba(18, 58, 116, 0.05));
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(18, 58, 116, 0.1);
  backdrop-filter: blur(20px);
}

.mockup-header {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 90, 60, 0.8);
  animation: pulse 2.5s infinite;
}

.pulse:nth-child(2) {
  background: rgba(255, 165, 0, 0.8);
  animation-delay: 0.4s;
}

.pulse:nth-child(3) {
  background: rgba(46, 204, 113, 0.8);
  animation-delay: 0.8s;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

.mockup-body {
  display: grid;
  gap: 18px;
}

.chart {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid rgba(18, 58, 116, 0.08);
  height: 90px;
  position: relative;
  overflow: hidden;
}

.chart::before,
.chart::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-size: cover;
}

.chart--line::before {
  background-image: repeating-linear-gradient(90deg, rgba(18, 58, 116, 0.08) 0, rgba(18, 58, 116, 0.08) 1px, transparent 1px, transparent 20px);
}

.chart--line::after {
  background: linear-gradient(135deg, rgba(18, 58, 116, 0.8), rgba(255, 90, 60, 0.8));
  clip-path: polygon(0 60%, 15% 40%, 30% 55%, 50% 20%, 70% 45%, 85% 25%, 100% 35%, 100% 100%, 0 100%);
}

.chart--heatmap::after {
  background: linear-gradient(90deg, rgba(18, 58, 116, 0.25), rgba(255, 90, 60, 0.35));
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}

.chart--bar::after {
  background: linear-gradient(90deg, rgba(18, 58, 116, 0.8), rgba(255, 90, 60, 0.8));
  clip-path: polygon(10% 100%, 10% 50%, 25% 100%, 25% 20%, 40% 100%, 40% 40%, 55% 100%, 55% 30%, 70% 100%, 70% 70%, 85% 100%, 85% 45%, 100% 100%);
}

.data-callout {
  position: absolute;
  right: 6%;
  bottom: 12%;
  padding: 16px 20px;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(12, 29, 51, 0.08);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.data-callout .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin: 0;
}

.data-callout .value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-warm);
  margin: 4px 0;
}

.data-callout .detail {
  font-size: 0.85rem;
  margin: 0;
  color: var(--text-secondary);
}

.section {
  padding: 80px 0;
}

.js-enabled .section,
.js-enabled .hero,
.js-enabled .process-steps li,
.js-enabled .team-card,
.js-enabled .result-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}

.js-enabled .section.in-view,
.js-enabled .hero.in-view,
.js-enabled .process-steps li.in-view,
.js-enabled .team-card.in-view,
.js-enabled .result-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.section--alt {
  background: linear-gradient(145deg, #f2f5fa, #e9eef6);
  border-radius: var(--radius-lg);
  padding: 90px 56px;
  margin: 40px 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.section-header {
  max-width: 720px;
  margin-bottom: 48px;
}

.section h2 {
  font-size: clamp(2rem, 3.8vw, 2.5rem);
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.section h3 {
  margin-top: 0;
}

.section-header p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.section-visual {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(18, 58, 116, 0.1);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.abstract-visual {
  background: radial-gradient(circle at 20% 20%, rgba(18, 58, 116, 0.12), transparent 60%), linear-gradient(135deg, rgba(18, 58, 116, 0.1), rgba(18, 58, 116, 0.05));
  min-height: 360px;
  display: grid;
  place-items: center;
}

.abstract-layer {
  position: absolute;
  inset: 0;
}

.abstract-layer--grid {
  background-image:
    linear-gradient(90deg, rgba(18, 58, 116, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18, 58, 116, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.35;
}

.abstract-layer--pulse {
  background: radial-gradient(circle at 30% 35%, rgba(255, 90, 60, 0.35), transparent 55%), radial-gradient(circle at 70% 65%, rgba(18, 58, 116, 0.25), transparent 60%);
  animation: abstractPulse 8s ease-in-out infinite;
}

@keyframes abstractPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.abstract-layer--card {
  position: relative;
  width: 70%;
  max-width: 340px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 70px -40px rgba(12, 29, 51, 0.7);
  border: 1px solid rgba(18, 58, 116, 0.15);
  animation: float 6s ease-in-out infinite;
}

.abstract-metric {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}

.metric-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.metric-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-warm);
}

.abstract-chart {
  border-radius: 14px;
  border: 1px solid rgba(18, 58, 116, 0.15);
  height: 80px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  background: rgba(18, 58, 116, 0.06);
}

.abstract-chart--bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 58, 116, 0.7), rgba(255, 90, 60, 0.7));
  clip-path: polygon(12% 100%, 12% 50%, 28% 100%, 28% 35%, 44% 100%, 44% 60%, 60% 100%, 60% 30%, 76% 100%, 76% 45%, 90% 100%, 90% 20%, 100% 100%, 0 100%);
  opacity: 0.8;
}

.abstract-chart--line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 58, 116, 0.4), rgba(255, 90, 60, 0.4));
  clip-path: polygon(0 70%, 15% 55%, 30% 60%, 45% 38%, 60% 52%, 75% 30%, 90% 45%, 100% 35%, 100% 100%, 0 100%);
}

.abstract-node,
.abstract-node::after {
  position: absolute;
  border-radius: 50%;
}

.abstract-node {
  width: 90px;
  height: 90px;
  bottom: 12%;
  left: 8%;
  background: rgba(18, 58, 116, 0.2);
  border: 1px solid rgba(18, 58, 116, 0.15);
  box-shadow: var(--shadow-soft);
}

.abstract-node::after {
  content: "";
  inset: -18px;
  border: 1px dashed rgba(18, 58, 116, 0.25);
}

.abstract-node--accent {
  width: 70px;
  height: 70px;
  top: 18%;
  right: 12%;
  background: rgba(255, 90, 60, 0.65);
  border: 1px solid rgba(255, 90, 60, 0.3);
  animation: abstractPulse 6s ease-in-out infinite;
}

.audience h3 {
  margin: 32px 0 16px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  color: var(--accent);
}

.audience ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  color: var(--text-secondary);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.card {
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(18, 58, 116, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 58, 116, 0.12), rgba(255, 90, 60, 0.08));
  opacity: 0;
  transition: opacity 0.4s var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.card:hover::after {
  opacity: 1;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(18, 58, 116, 0.08);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}

.card svg {
  width: 32px;
  height: 32px;
}

.svg-bar,
.svg-circle,
.svg-line,
.svg-core,
.svg-core--inner {
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: var(--accent);
}

.svg-core {
  fill: rgba(18, 58, 116, 0.08);
}

.svg-core--inner {
  stroke: var(--accent-warm);
}

.card-summary {
  color: var(--text-secondary);
}

.card-meta {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: grid;
  gap: 8px;
}

.card--highlight {
  background: var(--surface);
  border: 1px solid rgba(255, 90, 60, 0.3);
  box-shadow: 0 24px 45px -25px rgba(255, 90, 60, 0.45);
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.pill {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(18, 58, 116, 0.15);
  background: rgba(18, 58, 116, 0.04);
  color: var(--text-secondary);
  font-weight: 500;
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.process-steps li {
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(18, 58, 116, 0.12);
  position: relative;
  transition: transform 0.35s var(--transition);
}

.process-steps li:hover {
  transform: translateY(-6px);
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(18, 58, 116, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
  color: var(--text-secondary);
}

.section-aside {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(18, 58, 116, 0.12);
  box-shadow: var(--shadow-soft);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.team-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  border: 1px solid rgba(18, 58, 116, 0.1);
  padding: 26px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  transition: transform 0.35s var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(18, 58, 116, 0.15);
}

.team-role {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}

.result-card {
  background: rgba(18, 58, 116, 0.08);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid rgba(18, 58, 116, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--transition);
}

.result-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 90, 60, 0.35), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--transition);
}

.result-card:hover {
  transform: translateY(-6px);
}

.result-card:hover::before {
  opacity: 1;
}

.result-card h3 {
  font-size: 2.4rem;
  margin: 0 0 12px;
  color: var(--accent);
}

.result-card p {
  margin: 0;
  color: var(--text-secondary);
}

.faq-grid {
  display: grid;
  gap: 16px;
}

details {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  border: 1px solid rgba(18, 58, 116, 0.12);
  padding: 18px 24px;
  transition: box-shadow 0.3s var(--transition);
}

details:hover {
  box-shadow: var(--shadow-soft);
}

summary {
  font-weight: 600;
  cursor: pointer;
  outline: none;
}

details[open] summary {
  color: var(--accent);
}

.cta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
  align-items: start;
  background: linear-gradient(135deg, rgba(18, 58, 116, 0.95), rgba(18, 58, 116, 0.65));
  color: #ffffff;
  padding: 90px 64px;
  border-radius: var(--radius-lg);
  box-shadow: 0 35px 60px -40px rgba(0, 30, 60, 0.65);
  margin: 64px 0;
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.cta .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.cta-note {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.cta-highlight {
  position: relative;
  display: inline-block;
  font-weight: 600;
  background: linear-gradient(135deg, #fff5d7, #ffd1a3, #ff7a5c);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-decoration: none;
  padding: 2px 4px;
}

.cta-highlight::after {
  content: "";
  position: absolute;
  inset: -6px 0 -4px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 122, 92, 0.45), transparent 65%);
  filter: blur(6px);
  opacity: 0.9;
  z-index: -1;
}

.cta-highlight:hover {
  background: linear-gradient(135deg, #fff8df, #ffcba6, #ffa27a);
}


/* subtle warm glow for the contact email inside the "Book a call" CTA */
.cta-note a {
  color: var(--accent-warm);
  text-decoration: none;
  /* gentle glow, not exaggerated */
  text-shadow: 0 0 8px rgba(255, 90, 60, 0.10);
  transition: color 0.18s var(--transition), text-shadow 0.18s var(--transition);
}

.cta-note a:hover,
.cta-note a:focus {
  text-shadow: 0 0 12px rgba(255, 90, 60, 0.16);
  color: var(--accent-warm);
}

.contact-form {
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.contact-form fieldset {
  border: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.contact-form legend {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-group label {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.input-group input,
.input-group textarea {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 12px 14px;
  background: rgba(12, 29, 51, 0.35);
  color: #ffffff;
  font: inherit;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form .btn-primary {
  justify-self: start;
  background: #ffffff;
  color: var(--accent);
  box-shadow: none;
}

.site-footer {
  display: grid;
  gap: 32px;
  padding: 72px 0 0;
  color: var(--text-secondary);
}

.footer-brand {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.footer-brand .brand-name {
  font-weight: 600;
  color: var(--text-primary);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 28px;
}

.footer-links h4 {
  margin: 0 0 12px;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: var(--text-secondary);
  transition: color 0.2s var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.ndsu-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-copy {
  border-top: 1px solid var(--border);
  padding: 28px 0 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 1080px) {
  .hero {
    gap: 40px;
  }

  .section--alt {
    padding: 72px 32px;
  }
}

@media (max-width: 960px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero,
  .section-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 72px 0 48px;
  }

  .hero-visual {
    order: -1;
  }

  .section {
    padding: 64px 0;
  }

  .cta {
    padding: 64px 40px;
  }
}

@media (max-width: 720px) {
  .page {
    padding: 0 20px 48px;
  }

  .nav {
    gap: 12px;
  }

  .proof-points {
    grid-template-columns: 1fr;
  }

  .section--alt {
    margin: 32px 0;
  }

  .cta {
    padding: 48px 28px;
    margin: 48px 0;
  }
}

@media (max-width: 560px) {
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .team-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .team-photo {
    margin: 0 auto;
  }

  .contact-form {
    padding: 28px;
  }

  .contact-form .btn-primary {
    width: 100%;
  }
}
  .team-grid {
    grid-template-columns: 1fr;
  }
