/* ========================================
   WAVERLY STREET PARTNERS — Design System
   Direction C: Light Stone + Premium Restraint
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Stone palette */
  --stone:        #f5f1eb;
  --stone-dark:   #ece7df;
  --white:        #ffffff;
  --cream:        #faf8f5;

  /* Slate family */
  --slate-900:    #1c2331;
  --slate-800:    #2b3444;
  --slate-700:    #3d4a5c;
  --slate-600:    #5a6577;
  --slate-500:    #7a8494;
  --slate-400:    #9aa3b0;
  --slate-300:    #bec4cd;

  /* Accents */
  --bronze:       #8b7355;
  --bronze-light: #a6906e;
  --bronze-pale:  #d4c4a8;
  --forest:       #2d5a4e;
  --forest-light: #3a7365;
  --terracotta:   #b07050;

  /* Borders */
  --border:       #d8d4cb;
  --border-light: #e8e4db;

  /* Typography */
  --serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:   'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:   'JetBrains Mono', 'SF Mono', 'Consolas', monospace;

  /* Spacing scale */
  --s-xs:   8px;
  --s-sm:   16px;
  --s-md:   24px;
  --s-lg:   32px;
  --s-xl:   48px;
  --s-2xl:  64px;
  --s-3xl:  88px;

  /* Layout */
  --max-w:      1180px;
  --max-w-text: 720px;
  --gutter:     24px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  color: var(--slate-800);
  background: var(--stone);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

::selection {
  background: var(--bronze-pale);
  color: var(--slate-900);
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding: var(--s-3xl) 0;
}

.section--stone { background: var(--stone); }
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--dark  {
  background: var(--slate-900);
  color: var(--stone);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  background: rgba(245, 241, 235, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
  height: 64px;
  border-bottom-color: var(--border-light);
  background: rgba(245, 241, 235, 0.95);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav__logo img {
  height: 56px;
  width: auto;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled .nav__logo img { height: 40px; }

.nav__logo-text {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--slate-800);
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav__logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--slate-600);
  text-align: center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__link {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--slate-700);
  position: relative;
  transition: color 0.3s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--bronze);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__link:hover { color: var(--slate-900); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--slate-800);
  padding: 9px 22px;
  border: 1.5px solid var(--slate-800);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__cta:hover {
  background: var(--slate-800);
  color: var(--stone);
}

/* Mobile menu */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--slate-800);
  transition: all 0.3s ease;
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--stone);
  padding: var(--s-lg) var(--gutter);
  z-index: 999;
}

.nav__mobile.open { display: block; }

.nav__mobile a {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--slate-800);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

/* ===== TYPOGRAPHY ===== */
.t-mission {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--slate-900);
  letter-spacing: -0.5px;
}

.t-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--slate-900);
  letter-spacing: -0.3px;
}

.t-subhead {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bronze);
}

.t-body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--slate-700);
}

.t-body-sm {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--slate-600);
}

.t-stat {
  font-family: var(--mono);
  font-weight: 500;
  color: var(--forest);
}

.t-pull {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--slate-800);
  max-width: 680px;
}

/* ===== HERO ===== */
.hero {
  padding-top: calc(80px + var(--s-2xl));
  padding-bottom: var(--s-2xl);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero__content {
  max-width: 780px;
}

.hero__mission {
  margin-bottom: var(--s-lg);
}

.hero__body {
  max-width: 660px;
  margin-bottom: var(--s-xl);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--slate-800);
  padding: 14px 32px;
  border: 1.5px solid var(--slate-800);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hero__cta:hover {
  background: var(--slate-800);
  color: var(--stone);
}

.hero__cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.hero__cta:hover svg { transform: translateX(4px); }

/* ===== DIVIDER ===== */
.divider {
  width: 48px;
  height: 2px;
  background: var(--bronze);
  margin-bottom: var(--s-lg);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  margin-bottom: var(--s-lg);
}

.section-header .t-subhead {
  margin-bottom: var(--s-sm);
}

/* ===== WHO WE WORK WITH ===== */
.clients__text {
  max-width: var(--max-w-text);
  font-size: 18px;
  line-height: 1.75;
  color: var(--slate-700);
}

/* ===== HOW WE WORK (4-step process) ===== */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process__line {
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--bronze-pale);
}

.process__step {
  padding: 0 20px;
  position: relative;
  text-align: center;
}

.process__number {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  background: var(--bronze);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s-md);
  position: relative;
  z-index: 2;
}

.process__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 12px;
}

.process__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--slate-600);
}

/* ===== TRACK RECORD ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-lg);
}

.stat {
  padding: var(--s-lg) 0;
  border-top: 2px solid var(--forest);
}

.stat__number {
  font-family: var(--mono);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 12px;
  line-height: 1.1;
}

.stat__label {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.stat__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--slate-600);
}

/* ===== PULL QUOTE ===== */
.pull-section {
  padding: var(--s-xl) 0;
  text-align: center;
}

.pull-section .t-pull {
  margin: 0 auto;
}

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-lg);
}

.team-card {
  padding: var(--s-lg);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  border-color: var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.team-card--lead {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-lg);
  align-items: start;
}

.team-card__avatar {
  width: 176px;
  height: 176px;
  border-radius: 50%;
  background: var(--slate-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 600;
  color: var(--stone);
  flex-shrink: 0;
  overflow: hidden;
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 4px;
}

.team-card__name a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.team-card__name a:hover {
  border-color: var(--bronze);
}

.team-card__title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--bronze);
  margin-bottom: 16px;
}

.team-card__bio {
  font-size: 15px;
  line-height: 1.65;
  color: var(--slate-600);
}

.team-card__credentials {
  margin-top: 12px;
  font-size: 13px;
  color: var(--slate-500);
  font-style: italic;
}

/* ===== LOGO MARQUEE ===== */
.logo-marquee {
  padding: var(--s-xl) 0;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.logo-marquee__inner {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
          mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.logo-marquee__track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: logo-marquee 50s linear infinite;
}

.logo-marquee__track img {
  height: 38px;
  width: auto;
  flex-shrink: 0;
  filter: grayscale(100%) opacity(0.55);
  mix-blend-mode: multiply;
  transition: filter 0.3s ease;
}

.logo-marquee__track img:hover {
  filter: grayscale(0%) opacity(1);
}

.logo-marquee__track img[src$='main-line-health.svg'] {
  transform: translateY(-7px);
}

.logo-marquee__track img[src$='geisinger.svg'] {
  height: 56px;
}

@keyframes logo-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== PRACTICES GRID ===== */
.practices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
}

.practice-card {
  display: block;
  padding: var(--s-lg);
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.practice-card:hover {
  border-color: var(--bronze-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.practice-card__num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--bronze);
  letter-spacing: 1.5px;
  margin-bottom: var(--s-sm);
}

.practice-card__title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--slate-900);
  line-height: 1.25;
  margin-bottom: 14px;
}

.practice-card__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--slate-600);
  margin-bottom: var(--s-md);
}

.practice-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
  transition: gap 0.3s ease;
}

.practice-card:hover .practice-card__link { gap: 10px; }

.practice-card__link svg { width: 14px; height: 14px; }

/* ===== ACO STACK ===== */
.aco-stack {
  margin-top: var(--s-xl);
  padding-top: var(--s-xl);
  border-top: 1px solid var(--border);
}

.aco-stack__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg) var(--s-md);
}

.aco-stack__item {
  padding-left: var(--s-md);
  border-left: 2px solid var(--bronze-pale);
}

.aco-stack__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--slate-900);
  line-height: 1.3;
  margin-bottom: 10px;
}

.aco-stack__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--slate-600);
}

/* ===== AI AS A SERVICE ===== */
.ai-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-md);
  margin-top: var(--s-lg);
}

.ai-service-card {
  padding: var(--s-lg);
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 4px;
}

.ai-service-card__num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.ai-service-card__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--slate-900);
  line-height: 1.3;
  margin-bottom: 12px;
}

.ai-service-card__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--slate-600);
}

/* ===== GROWTH CONSULTING ===== */
.growth-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-lg) var(--s-xl);
  margin-top: var(--s-lg);
}

.growth-item {
  padding-top: var(--s-md);
  border-top: 2px solid var(--bronze);
}

.growth-item__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--slate-900);
  line-height: 1.3;
  margin-bottom: 12px;
}

.growth-item__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--slate-600);
}

/* ===== CONTACT ===== */
.contact {
  text-align: center;
  padding: var(--s-2xl) 0;
}

.contact__email {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  color: var(--slate-800);
  border-bottom: 1.5px solid var(--bronze-pale);
  padding-bottom: 4px;
  transition: border-color 0.3s ease;
}

.contact__subtitle {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  color: var(--slate-800);
  border-bottom: 1.5px solid var(--bronze-pale);
  padding-bottom: 4px;
  display: inline-block;
  margin-bottom: var(--s-xl);
}

/* Contact form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-sm);
}

@media (max-width: 600px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

.contact-form__field {
  margin-bottom: var(--s-sm);
}

.contact-form__label {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.contact-form__optional {
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  color: var(--slate-400);
}

.contact-form__input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--slate-800);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.contact-form__input::placeholder {
  color: var(--slate-400);
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--bronze-light);
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--s-sm);
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  background: var(--slate-800);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.contact-form__submit svg {
  width: 16px;
  height: 16px;
}

.contact-form__submit:hover {
  background: var(--slate-700);
}

.contact-form__success {
  max-width: 600px;
  margin: var(--s-md) auto 0;
  padding: var(--s-md);
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  padding: var(--s-lg) 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 12px;
  color: var(--slate-500);
}

.footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer__links a {
  font-size: 12px;
  color: var(--slate-500);
  transition: color 0.3s ease;
}

.footer__links a:hover { color: var(--slate-800); }

/* ===== BLOG / PAPERS PAGES ===== */
.page-header {
  padding-top: calc(80px + var(--s-xl));
  padding-bottom: var(--s-lg);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
}

.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: var(--s-lg);
  transition: border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 16px;
}

.card__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--slate-900);
  line-height: 1.3;
  margin-bottom: 12px;
}

.card__excerpt {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--slate-600);
  margin-bottom: 20px;
}

.card__date {
  font-size: 12px;
  color: var(--slate-400);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
  transition: gap 0.3s ease;
}

.card__link:hover { gap: 10px; }

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .process { grid-template-columns: repeat(2, 1fr); gap: var(--s-lg); }
  .process__line { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .team-card--lead { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .practices-grid { grid-template-columns: 1fr; }
  .aco-stack__grid { grid-template-columns: repeat(2, 1fr); }
  .ai-service-grid { grid-template-columns: 1fr; }
  .growth-grid { grid-template-columns: 1fr; gap: var(--s-lg); }
}

@media (max-width: 768px) {
  :root {
    --s-3xl: 60px;
    --s-2xl: 48px;
  }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero { min-height: auto; padding-top: calc(80px + var(--s-xl)); }

  .process { grid-template-columns: 1fr; gap: var(--s-lg); }
  .process__step { text-align: left; display: flex; gap: 20px; align-items: flex-start; padding: 0; }
  .process__number { margin: 0; flex-shrink: 0; }

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

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

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

  .aco-stack__grid { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; gap: 16px; text-align: center; }
}