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

:root {
  --color-bg: #05203c;
  --color-surface: #0b2a4a;
  --color-surface-alt: #071e37;
  --color-dark: #031526;
  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.65);
  --color-accent: #0770e3;
  --color-accent-hover: #0a84ff;
  --color-accent-light: rgba(7, 112, 227, 0.15);
  --color-accent-subtle: rgba(7, 112, 227, 0.08);
  --color-border: rgba(255, 255, 255, 0.1);
  --color-navy: #ffffff;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Inter", system-ui, -apple-system, sans-serif;
  --max-width: 1120px;
  --nav-height: 72px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 500px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- NAV ---- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(5, 32, 60, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-navy);
  text-decoration: none;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-plus {
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 1rem;
}

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

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: -0.01em;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ---- HERO ---- */

.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 3rem) 2rem 4rem;
  position: relative;
  overflow: hidden;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 5rem;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-greeting {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 0.75rem;
  letter-spacing: -0.035em;
  color: var(--color-navy);
}

.hero-role {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text-muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-border);
  flex-shrink: 0;
}

.hero-photo {
  flex-shrink: 0;
  position: relative;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-accent-light), rgba(7, 112, 227, 0.1));
  z-index: 0;
  opacity: 0;
}

.hero-photo img {
  position: relative;
  z-index: 1;
  width: 340px;
  height: 340px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

/* ---- BUTTONS ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: -0.01em;
  border: none;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(7, 112, 227, 0.35);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.btn-large {
  padding: 1.05rem 2.75rem;
  font-size: 1rem;
}

.btn-accent {
  background: var(--color-accent);
  color: #fff;
}

.btn-accent:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(7, 112, 227, 0.35);
}

/* ---- SECTIONS ---- */

.section {
  padding: 7rem 2rem;
}

.section-alt {
  background: var(--color-surface-alt);
}

.section-dark {
  background: var(--color-dark);
  color: #fff;
  padding: 5rem 2rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

/* ---- ABOUT ---- */

.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: start;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.about-text strong {
  color: #ffffff;
  font-weight: 600;
}

.about-skills h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  font-weight: 600;
}

.skill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-list li {
  background: rgba(7, 112, 227, 0.12);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
}

/* ---- STATS ---- */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  text-align: center;
}

.stat {
  padding: 1.5rem;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
  letter-spacing: -0.03em;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* ---- TIMELINE ---- */

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

.timeline-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
}

.timeline-item:first-child {
  padding-top: 0;
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-date {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;
  padding-top: 0.25rem;
}

.timeline-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.timeline-company {
  font-size: 0.9rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-content p:last-of-type {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.timeline-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.timeline-metrics span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(7, 112, 227, 0.12);
  color: rgba(255, 255, 255, 0.8);
}

.timeline-earlier {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.5rem;
}

.timeline-earlier p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---- PROJECTS ---- */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.project-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.12);
}

a.project-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-decoration: none;
  color: inherit;
  display: grid;
}

.project-card-featured .project-image {
  height: 100%;
  min-height: 280px;
}

.project-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.03);
}

.project-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(7, 112, 227, 0.9);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

.project-info {
  padding: 1.75rem;
}

.project-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  letter-spacing: -0.01em;
}

.project-type {
  font-size: 0.82rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.project-info > p:last-of-type {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.project-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.project-tags span {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(7, 112, 227, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.portfolio-link {
  text-align: center;
  margin-top: 3rem;
}

/* ---- FIT GRID ---- */

.fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.25rem;
}

.fit-card {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.12);
}

.fit-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.fit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.fit-you {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.fit-me {
  font-size: 0.88rem;
  color: var(--color-text);
  line-height: 1.65;
}

.fit-me strong {
  color: var(--color-accent);
  font-weight: 600;
}

/* ---- APPROACH ---- */

.beliefs-intro {
  max-width: 760px;
  margin-bottom: 3rem;
}

.beliefs-intro p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4.5rem;
}

.approach-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.approach-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.approach-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

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

/* ---- CLOSING ---- */

.closing-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.closing-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.closing-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}

/* ---- TESTIMONIAL ---- */

.testimonial {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.15;
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.testimonial p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ---- CONTACT ---- */

.contact-content {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.contact-content > p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.contact-links {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.contact-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s, border-color 0.2s;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-links a:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

/* ---- FOOTER ---- */

.footer {
  padding: 2.5rem 2rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* ---- ANIMATIONS ---- */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-dark);
    flex-direction: column;
    padding: 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    flex-direction: column-reverse;
    text-align: center;
    gap: 2.5rem;
    padding-top: calc(var(--nav-height) + 2rem);
  }

  .hero-photo img {
    width: 240px;
    height: 240px;
    border-radius: var(--radius-md);
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-meta {
    justify-content: center;
  }

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

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

  .project-card-featured {
    grid-template-columns: 1fr;
  }

  .project-card-featured .project-image {
    min-height: 200px;
  }

  .contact-details {
    flex-direction: column;
    gap: 0.25rem;
  }

  .contact-details .separator {
    display: none;
  }

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

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section {
    padding: 5rem 1.5rem;
  }

  .cs-hero {
    padding: calc(var(--nav-height) + 2rem) 1.5rem 3rem;
  }

  .cs-hero-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cs-content-grid {
    grid-template-columns: 1fr;
  }

  .cs-impact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cs-quote-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- CASE STUDY PAGES ---- */

.cs-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 1.25rem 0;
  transition: color 0.2s;
}

.cs-back:hover {
  color: #ffffff;
}

.cs-hero {
  padding: calc(var(--nav-height) + 3rem) 2rem 4.5rem;
}

.cs-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cs-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 0.5rem;
  letter-spacing: -0.035em;
}

.cs-hero-text .cs-subtitle {
  font-size: 1.1rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.cs-hero-text .cs-intro {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.cs-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cs-meta span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(7, 112, 227, 0.12);
  color: rgba(255, 255, 255, 0.8);
}

.cs-hero-image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cs-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}

.cs-section {
  padding: 4.5rem 2rem;
}

.cs-section-alt {
  background: var(--color-surface-alt);
}

.cs-section-dark {
  background: var(--color-dark);
  color: #fff;
}

.cs-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cs-section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cs-section-dark .cs-section-label {
  color: var(--color-accent);
}

.cs-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.cs-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.cs-content-grid p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.cs-content-grid strong {
  color: #ffffff;
}

.cs-content-full {
  max-width: 760px;
}

.cs-content-full p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.cs-content-full strong {
  color: #ffffff;
}

.cs-list {
  list-style: none;
  margin: 1rem 0;
}

.cs-list li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  padding: 0.5rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.cs-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.cs-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.cs-impact-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
  letter-spacing: -0.03em;
}

.cs-impact-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.cs-quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.cs-quote {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.cs-quote p {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.cs-quote cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.cs-image-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: flex-end;
  margin: 3rem 0;
}

.cs-image-row img {
  max-height: 420px;
  width: auto;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.cs-image-single {
  margin: 3rem 0;
  text-align: center;
}

.cs-image-single img {
  max-width: 100%;
  max-height: 480px;
  width: auto;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.cs-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.cs-image-grid img {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.cs-nav-footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cs-nav-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cs-nav-footer a {
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.cs-nav-footer a:hover {
  color: var(--color-accent);
}
